/* Profile container */
.profile-container {
    position: relative;
    display: inline-block;
}

/* Profile image */
#profile-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

/* Dropdown menu */
.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
}

.dropdown-menu a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-menu a:hover {
    background-color: #f1f1f1;
}

/* Show dropdown menu when active */
.dropdown-menu.active {
    display: block;
}

.collapsible {
    background-color: #f2f2f2;
    color: black;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}
.collapsible:hover {
    background-color: #ccc;
}

.order-content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f9f9f9;
}
.logo_style {
    width:300px;
    height:100px;
}
.total-row td.total-cell {
    display: flex;
    justify-content: space-between;
}
.toggle-icon {
    transition: transform 0.3s ease;
}

.collapse.show ~ .btn .toggle-icon {
    transform: rotate(180deg);
}
.invite_page_width {
    width:80%
}
@media (max-width: 767.98px) {
    .total-row td.total-cell {
      font-weight: bold;      
    }   
    td.hide-mobile {
        display: none !important;
    }
}  
@media (min-width: 768px) {      
    td.hide-desktop {
        display: none !important;
    }
}
@media (max-width: 768px) {
    .cart-header,
    .cart-row {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #ddd;
        padding: 10px 0;
    }

    .cart-header > div,
    .cart-row > div {
        margin-bottom: 5px;
    }

    .cart-label {
        font-weight: bold;
        font-size: 0.9rem;
        color: #555;
    }

    .cart-value {
        font-size: 1rem;
    }    
    .invite_page_width {
        width:100%
    }
}

  
@media (min-width: 576px) and (max-width: 991.98px){
    .col-md-8 {
        flex: 0 0 auto;
        width: 100% !important;
    }
}

@media (min-width: 576px) and (max-width: 991.98px){
    .container,
    .container-sm,
    .container-md {
        max-width: 100% !important;
    }
}
@media (min-width: 375px) and (max-width: 767.98px) {
    .logo_style {
        width:150px;
        height:50px;
    }
}

.rewards-row {
    display: none;
}

.price-display{
    text-align: right;
    margin-right: 25px;
}