.new-success-container {
    display: flex;
    flex-direction: column;
    gap: 72px;
    margin-bottom: 24px;
}

.success-text-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

.success-text-small {
    font-family: Inter;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
}

.new-success-logo {
    max-width: 586px;
    width: 100%;
    height: auto;
}

.success-message-wrapper {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

.video-element-container {
    display: flex;
    padding: 32px;
    flex-direction: column;
    gap: 24px;
    background-color: #f9f9f9;
    border-radius: 16px;
}

.video-element-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.video-element-wrapper {
    display: flex;
    position: relative;
    border-radius: 16px;
    height: 366px;
}

.video-element {
    width: 100%;
    height: 100%;
    opacity: 1;
    border-radius: 16px;
    object-fit: contain;
    background-color: #000000;
}

.video-element-controls {
    width: calc(100% - 64px);
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 10px;
    left: 32px;
    bottom: 24px;
}

.video-progress-container {
    display: flex;
    gap: 28px;
    align-items: center;
}

.video-progress-bar {
    position: relative;
    flex-grow: 1;
    height: 7px;
    background-color: var(--Neutral-50, rgba(244, 245, 247, 0.4));
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.video-progress-filled {
    position: absolute;
    left: 0;
    top: 0;
    width: 30%;
    height: 100%;
    border-radius: 10px;
    z-index: 20;
    background-color: var(--Primary-500, #d42b65);
}

.video-progress-loaded {
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 100%;
    border-radius: 10px;
    z-index: 15;
    background-color: var(--Neutral-50, rgba(244, 245, 247, 0.6));
}

.video-left-btns,
.video-right-btns {
    display: flex;
    gap: 20px;
    align-items: center;
}

.video-left-btns img,
.video-right-btns img {
    cursor: pointer;
}

.main-play-pause-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    opacity: 0.8;
    display: none; /* hidden by default, shown by JS when appropriate */
    pointer-events: auto;
    cursor: pointer;
    z-index: 30;
    transition: opacity 150ms ease;
}

.setting-menu {
    position: absolute;
    bottom: 70px;
    right: 32px;
    max-width: 300px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    z-index: 30;
    padding: 8px 4px;
    display: none; /* hidden by default, toggled by JS */
    flex-direction: column;
}

.setting-menu.open {
    display: flex;
}

.setting-menu:has(.playback-view) {
    max-width: 180px;
}

.playback-list {
    display: none; /* hidden until the playback row is clicked */
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}

.playback-list.open {
    display: flex;
}

/* Playback view (full list with back header) */
.playback-view {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 6px;
}

.playback-view-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
}

.back-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.playback-view-title {
    color: #ffffff;
    font-weight: 600;
}

.back-icon {
    width: 14px;
    height: 14px;
    transform: rotate(180deg);
    display: inline-block;
}

.playback-speed-item {
    background: transparent;
    border: none;
    color: #ffffff;
    text-align: left;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
}

.playback-speed-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.playback-speed-item.active {
    font-weight: 700;
}

.playback-container {
    display: flex;
    gap: 12px;
    align-items: center;
}

.playback-selected-option {
    display: flex;
    gap: 4px;
    align-items: center;
}

.playback-container img {
    width: 24px;
    height: 24px;
}

.playback-selected-option img {
    width: 12px;
    height: 12px;
}

.setting-menu-options {
    display: flex;
    justify-content: space-between;
    padding: 4px 8px;
    cursor: pointer;
    border-radius: 8px;
}

.setting-menu-options:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.what-happens-next-container {
    display: flex;
    padding: 0px 0px;
}

.what-happens-next-wrapper {
    display: flex;
    flex-direction: column;
    gap: 42px;
    align-items: center;
    text-align: center;
    width: 100%;
}

.what-happens-next-card {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--Neutral-200, #e7e8ea);
    display: flex;
    padding: 52px 25px 28px 25px;
    justify-content: space-between;
    gap: 24px;
}

.what-happens-next-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    max-width: 271px;
    position: relative;
}

.what-happens-next-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.what-happens-next-card
    .what-happens-next-item:not(:last-child)
    .step-icon::after {
    content: "";
    width: 102px;
    height: 22px;
    position: absolute;
    top: 50%;
    background: url("./images/icons/step-arrow.svg") no-repeat center;
    transform: translate(-50%, -50%);
    left: calc(100% + (var(--space-between) / 2));
}

.what-happens-next-card .step-icon {
    position: relative;
}

.gift-card-section-container {
    display: flex;
    gap: 32px;
    justify-content: space-between;
    width: 100%;
}

.gift-card-section {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 32px;
    border-radius: 16px;
    background: var(--Primary-400, #ee4e86);
}

.gift-card-rentsy-logo-section {
    display: flex;
    gap: 20px;
    align-items: center;
}

.gift-card-rentsy-logo-section img {
    width: 154px;
    height: 140px;
}

.gift-card-value-section {
    display: flex;
    gap: 24px;
    justify-content: space-between;
    width: 100%;
    border: 1px solid var(--Primary-400, #ee4e86);
    background: rgba(255, 255, 255, 0.16);
    padding: 16px 24px 16px 32px;
    border-radius: 10px;
    border-width: 1px;
}

.gift-card-btn-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #d42b65 !important;
    background: var(--Base-White, #ffffff);
    height: 54px;
    padding-top: 16px;
    padding-right: 24px;
    padding-bottom: 16px;
    padding-left: 24px;
    border-radius: 12px;
    font-weight: 600 !important;
    border: none;
    outline: none;
    margin-top: 16px;
    margin-bottom: 8px;
    cursor: pointer;
}

.gift-card-btn-section:hover {
    background: #f0f0f0;
}

.first-time-rent-section {
    max-width: 630px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.first-time-rent-section-container {
    background: var(--Neutral-50, #f4f5f7);
    gap: 24px;
    padding-top: 24px;
    padding-right: 32px;
    padding-bottom: 24px;
    padding-left: 32px;
    border-radius: 16px;
    border-width: 1.25px;
    display: flex;
    flex-direction: column;
}

.first-time-rent-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

.need-help-section {
    display: flex;
    gap: 16px;
    background: var(--Neutral-50, #f4f5f7);
    width: 100%;
    padding-top: 24px;
    padding-right: 32px;
    padding-bottom: 24px;
    padding-left: 32px;
    border-radius: 16px;
    border-width: 1.25px;
    flex-grow: 1;
}

.need-help-icon-container {
    background: var(--Neutral-900, #101b30);
    width: 47.96875px;
    height: 47.96875px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-shrink: 0;
}

.need-help-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.need-help-btns-wrapper {
    display: flex;
    gap: 16px;
    padding-top: 12px;
}

.need-help-btn-1 {
    background: var(--Neutral-900, #101b30);
    max-width: 132px;
    width: 100%;
    height: 40px;
    padding-top: 12px;
    padding-right: 16px;
    padding-bottom: 12px;
    padding-left: 16px;
    border-radius: 12px;
    color: #ffffff;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.need-help-btn-2 {
    border: 1.5px solid var(--Neutral-500, #888d98);
    max-width: 132px;
    width: 100%;
    height: 40px;
    padding-top: 12px;
    padding-right: 16px;
    padding-bottom: 12px;
    padding-left: 16px;
    border-radius: 12px;
    border-width: 1.5px;
    background: transparent;
    outline: none;
    color: #404959;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.need-help-btn-1:hover {
    background: #2e3a4e;
}

.need-help-btn-2:hover {
    background: var(--Neutral-100, #eff0f2);
}

.rating-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    background: var(--Neutral-50, #f4f5f7);
    gap: 16px;
    padding-top: 32px;
    padding-bottom: 32px;
    border-radius: 16px;
    align-items: center;
}

.rating-section-content {
    display: flex;
    flex-direction: column;
    gap: 38px;
    align-items: center;
}

.rating-section-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.rating-items-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 848px;
    width: 100%;
    align-items: center;
}

.rating-items-wrapper {
    display: flex;
    gap: 32px;
}

.rating-item {
    background: var(--Neutral-200, #e7e8ea);
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #101b30;
    cursor: pointer;
}

.rating-item.selected {
    background: var(--Primary-500, #d42b65);
    color: #ffffff;
}

.booking-details-section {
    background: var(--Neutral-25, #f9f9f9);
    border-radius: 16px;
    display: flex;
    padding: 24px 20px 24px 32px;
    flex-direction: column;
    gap: 20px;
}

.booking-details-wrapper {
    display: flex;
    gap: 20px;
}

.booking-details-content-wrapper {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    gap: 16px;
}

.booking-details-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-details-content img {
    width: 20px;
    height: 20px;
}

.booking-details-logo {
    width: 132px;
    height: 132px;
    border-radius: 12px;
    object-fit: cover;
}

.you-might-like-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.like-more-card {
    padding: 16px;
    border: 1px solid var(--Neutral-100, #eff0f2);
    border-width: 1px;
    border-radius: 12px;
    background: var(--Base-White, #ffffff);
    display: flex;
    flex-direction: column;
    gap: 16px;
    cursor: pointer;
}

.like-more-card.explore-card {
    flex: 0 0 calc((100% - 72px) / 5);
    scroll-snap-align: center;
}

.like-more-card .image-wrapper {
    overflow: visible;
}

.like-more-card .image-wrapper img {
    height: 216px;
}

.like-more-badge {
    position: absolute;
    top: -4px;
    left: -4px;
    height: 26px;
    gap: 10px;
    padding-top: 5px;
    padding-right: 10px;
    padding-bottom: 5px;
    padding-left: 10px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.like-more-badge.hot {
    background: #f05b4f;
    color: #ffffff;
}

.like-more-badge.best-deals {
    background: #4f7bf0;
    color: #ffffff;
}

.like-more-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.like-more-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.you-might-like-section .explore-card-wrapper {
    gap: 18px;
}

.invite-friends-modal .modal-dialog {
    max-width: 600px;
}

.invite-friends-modal .modal-content {
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0px 18px 28px 0px #2932451a;
    border: 1px solid var(--Neutral-100, #eff0f2);
    background: var(--Base-White, #ffffff);
    z-index: 1000;
}

.invite-friends-modal .modal-header {
    border: none;
    padding: 0px;
    padding-top: 24px;
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
    position: relative;
}

.invite-friends-modal .modal-close-btn {
    background: transparent;
    border: none;
    width: 24px;
    height: 24px;
    background-image: url("../assets/images/icons/modal-close-btn.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: 0px;
}

.invite-friends-modal .modal-body {
    padding: 0px;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px !important;
    max-width: 504px;
    align-self: center;
    margin-bottom: 8px;
}

.invite-friend-reward-wrapper {
    border: 1.5px solid var(--Primary-200, #eeaac1);
    background: var(--Primary-50, #fbeaf0);
    width: 100%;
    border-radius: 12px;
    border-width: 1.5px;
    padding: 20px;
    display: flex;
    gap: 42px;
    justify-content: center;
    align-items: center;
}

.invite-friend-reward {
    display: flex;
    flex-direction: column;
    gap: 6.5px;
    align-items: center;
}

.invite-reward-text {
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0px;
}

.invite-reward-text-2 {
    font-family: Inter;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.07px;
}

.invite-share-img {
    object-fit: unset !important;
    max-width: unset !important;
    width: unset !important;
    height: unset !important;
    border-radius: unset !important;
    box-shadow: unset !important;
}

.button-loader {
    display: flex;
    align-items: center;
    gap: 8px;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

@media (max-width: 992px) {
    .success-message-wrapper {
        gap: 32px;
    }

    .new-success-container {
        gap: 56px;
        margin-bottom: 16px;
    }

    .what-happens-next-wrapper {
        gap: 34px;
    }

    .what-happens-next-card {
        padding: 32px 24px 24px 24px;
        gap: 24px 20px;
        flex-wrap: wrap;
    }

    .what-happens-next-card
        .what-happens-next-item:not(:last-child)
        .step-icon::after {
        display: none;
    }

    .gift-card-section-container {
        flex-wrap: wrap;
    }

    .gift-card-section {
        max-width: 100%;
    }

    .first-time-rent-section {
        max-width: 100%;
    }

    .rating-section {
        padding: 24px 16px;
    }

    .rating-section-content {
        gap: 32px;
    }

    .rating-items-wrapper {
        gap: 16px;
    }

    .rating-items-container {
        max-width: 688px;
    }

    .you-might-like-section .explore-card-wrapper {
        gap: 16px;
    }

    .like-more-card.explore-card {
        flex: 0 0 calc((100% - 32px) / 3);
    }

    .setting-menu {
        right: 30px;
        max-width: 270px;
        padding: 4px 4px;
    }

    .setting-menu-options {
        padding: 4px 4px;
    }

    .playback-container {
        gap: 10px;
    }

    .playback-container img {
        width: 20px;
        height: 20px;
    }

    .playback-view {
        gap: 4px;
        padding-top: 2px;
    }

    .playback-view-header {
        gap: 4px;
        padding: 4px 4px;
    }

    .playback-list {
        gap: 4px;
        margin-top: 2px;
    }

    .playback-speed-item {
        padding: 4px 6px;
    }
}

@media (max-width: 768px) {
    .success-text-container {
        gap: 16px;
    }
    .success-message-wrapper {
        gap: 24px;
    }

    .new-success-container {
        gap: 40px;
        margin-bottom: 12px;
    }

    .video-element-container {
        padding: 24px;
        gap: 16px;
    }

    .video-element-text-wrapper {
        gap: 10px;
    }

    .what-happens-next-wrapper {
        gap: 24px;
    }

    .what-happens-next-card {
        padding: 24px 16px 16px 16px;
        gap: 20px 14px;
    }

    .what-happens-next-item {
        gap: 16px;
        flex: 1 1 300px;
        min-width: 240px;
        max-width: none;
        width: auto;
    }

    .what-happens-next-text {
        gap: 10px;
    }

    .what-happens-next-item .step-icon {
        width: 60px;
        height: 60px;
    }

    .what-happens-next-item .step-icon img {
        width: 25px;
        height: 25px;
    }

    .video-element-controls {
        width: calc(100% - 48px);
        gap: 8px;
        left: 24px;
        bottom: 16px;
    }

    .video-progress-container {
        gap: 20px;
    }

    .video-left-btns,
    .video-right-btns {
        gap: 12px;
    }

    .setting-menu {
        right: 24px;
        max-width: 220px;
        padding: 2px 2px;
        bottom: 62px;
    }

    .setting-menu-options {
        padding: 2px 2px;
    }

    .playback-container {
        gap: 6px;
    }

    .first-time-rent-content img {
        width: 20px;
        height: 20px;
    }

    .playback-container img {
        width: 18px;
        height: 18px;
    }

    .playback-view {
        gap: 2px;
        padding-top: 0px;
    }

    .playback-view-header {
        gap: 2px;
        padding: 2px 0px;
    }

    .playback-list {
        gap: 2px;
        margin-top: 0px;
    }

    .playback-speed-item {
        padding: 2px 4px;
        font-size: 14px;
    }

    .setting-menu:has(.playback-view) {
        max-width: 140px;
    }

    .playback-view-title {
        font-size: 14px;
    }

    .gift-card-section {
        gap: 12px;
        padding: 16px 20px;
    }

    .gift-card-rentsy-logo-section {
        gap: 14px;
    }

    .gift-card-value-section {
        gap: 16px;
        padding: 14px 16px 14px 20px;
    }

    .gift-card-btn-section {
        height: 54px;
        padding-top: 14px;
        padding-right: 18px;
        padding-bottom: 14px;
        padding-left: 18px;
        margin-top: 8px;
        margin-bottom: 4px;
    }

    .first-time-rent-section-container {
        gap: 16px;
        padding-top: 16px;
        padding-right: 24px;
        padding-bottom: 16px;
        padding-left: 24px;
    }

    .first-time-rent-content {
        gap: 10px;
        margin-bottom: 8px;
    }

    .first-time-rent-section {
        gap: 16px;
    }

    .need-help-section {
        gap: 12px;
        padding-top: 16px;
        padding-right: 24px;
        padding-bottom: 16px;
        padding-left: 24px;
    }

    .need-help-content-wrapper {
        gap: 8px;
    }

    .rating-section-content {
        gap: 24px;
    }

    .rating-section {
        padding: 16px 12px;
    }

    .rating-section-text-wrapper {
        gap: 12px;
    }

    .rating-items-container {
        max-width: 498px;
    }

    .rating-items-wrapper {
        gap: 8px;
    }

    .rating-item {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .booking-details-section {
        padding: 16px 14px 16px 24px;
        gap: 12px;
    }

    .booking-details-wrapper {
        gap: 12px;
    }

    .booking-details-content-wrapper {
        gap: 8px;
    }

    .booking-details-content {
        gap: 6px;
    }

    .you-might-like-section .explore-card-wrapper {
        gap: 12px;
    }

    .like-more-card.explore-card {
        flex: 0 0 calc((100% - 12px) / 2);
    }

    .main-play-pause-icon {
        width: 54px;
        height: 54px;
    }

    .invite-friends-modal .modal-dialog {
        width: 90%;
        max-width: 600px;
        margin: auto;
    }
}

@media (max-width: 576px) {
    .first-time-rent-section-container {
        gap: 12px;
        padding-top: 12px;
        padding-right: 16px;
        padding-bottom: 12px;
        padding-left: 16px;
    }

    .need-help-section {
        gap: 10px;
        padding-top: 12px;
        padding-right: 16px;
        padding-bottom: 12px;
        padding-left: 16px;
    }

    .need-help-btns-wrapper {
        gap: 12px;
        padding-top: 4px;
    }

    .video-element-container {
        padding: 16px;
        gap: 12px;
    }

    .video-element-text-wrapper {
        gap: 8px;
    }

    .booking-details-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .like-more-card.explore-card {
        flex: 0 0 calc((100%) / 1);
    }

    .success-message-wrapper {
        gap: 16px;
    }

    .success-text-container {
        gap: 10px;
    }

    .success-text-container .title-lg {
        font-size: 32px;
        line-height: 46px;
    }

    .new-success-container {
        gap: 28px;
        margin-bottom: 0px;
    }

    .gift-card-rentsy-logo-section img {
        width: 120px;
        height: 110px;
    }

    .rating-section-text-wrapper .title-sm {
        font-size: 20px;
        line-height: 30px;
    }

    .rating-section-content {
        gap: 18px;
    }

    .rating-items-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .rating-items-container {
        max-width: 300px;
        align-items: center;
    }

    .booking-details-section {
        padding: 14px 12px 14px 14px;
        gap: 10px;
    }

    .invite-friends-modal .modal-dialog {
        width: 96%;
    }

    .invite-friends-modal .modal-content {
        padding: 16px;
    }

    .invite-friends-modal .modal-header {
        border: none;
        padding: 0px;
        padding-top: 24px;
        display: flex;
        justify-content: center;
        margin-bottom: 16px;
        position: relative;
    }

    .invite-friend-reward-wrapper {
        gap: 24px;
        padding: 14px;
    }
}

@media (max-width: 425px) {
    .need-help-section {
        flex-wrap: wrap;
    }

    .gift-card-rentsy-logo-section {
        gap: 8px;
        flex-direction: column;
    }

    .gift-card-rentsy-logo-section img {
        width: 100px;
        height: 90px;
    }

    .video-element-container {
        padding: 10px;
        gap: 8px;
    }

    .video-element-wrapper {
        height: 340px;
    }

    .video-element-controls {
        width: calc(100% - 24px);
        gap: 6px;
        left: 12px;
        bottom: 10px;
    }

    .video-progress-container {
        gap: 12px;
    }

    .video-left-btns,
    .video-right-btns {
        gap: 8px;
    }

    .what-happens-next-wrapper {
        gap: 16px;
    }

    .what-happens-next-card {
        padding: 16px 14px 14px 14px;
        gap: 12px 8px;
    }

    .video-left-btns img,
    .video-right-btns img {
        width: 18px;
        height: 18px;
    }

    .setting-menu {
        right: 12px;
        max-width: 200px;
        bottom: 52px;
    }

    .playback-container .body-xs {
        font-size: 12px;
        line-height: 18px;
    }

    .playback-selected-option .body-xs {
        font-size: 12px;
        line-height: 18px;
    }

    .main-play-pause-icon {
        width: 44px;
        height: 44px;
    }

    .playback-view-title {
        font-size: 12px;
    }

    .playback-speed-item {
        font-size: 12px;
    }

    .gift-card-value-section .title-xs {
        font-size: 18px;
        line-height: 24px;
    }

    .gift-card-value-section .title-md {
        font-size: 20px;
        line-height: 28px;
    }

    .what-happens-next-item {
        gap: 14px;
    }

    .booking-details-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .booking-details-content {
        width: 100%;
        text-align: center;
    }

    .booking-details-content.for-total-amount {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .invite-friend-reward-wrapper {
        gap: 16px;
    }
}

@media (max-width: 375px) {
    .video-element-wrapper {
        height: 290px;
    }

    .setting-menu {
        max-width: 190px;
    }

    .gift-card-section {
        padding: 14px 16px;
    }
}
