/* ==================================================
   ATMOS ACCOUNT MENU
================================================== */

.account-menu {
    position: relative;
    margin-left: auto;
}


/* ==================================================
   MY ACCOUNT BUTTON
================================================== */

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

    height: 44px;
    padding: 0 14px;

    background: transparent;
    border: none;

    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;

    cursor: pointer;
}


/* ==================================================
   CHEVRON
================================================== */

.account-chevron {
    width: 7px;
    height: 7px;

    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;

    transform: rotate(45deg);
    transform-origin: center;

    transition: transform 0.2s ease;
}

.account-menu.active .account-chevron {
    transform: rotate(225deg);
}


/* ==================================================
   WHITE OUTER DROPDOWN
================================================== */

.account-dropdown {
    position: absolute;

    top: calc(100% + 10px);
    right: 0;

    width: 360px;

    box-sizing: border-box;

    padding: 16px;

    background: #ffffff;
    color: #0b1f33;

    border-radius: 20px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);

    z-index: 99999;

    display: none;
}

.account-menu.active .account-dropdown {
    display: block;
}


/* ==================================================
   DARK ATMOS MEMBERSHIP CARD
================================================== */

.atmos-member-card {
    width: 100%;
    box-sizing: border-box;

    padding: 20px 22px;

    background: #082f53 !important;
    color: #ffffff;

    border-radius: 16px;
}


/* ==================================================
   TOP OF MEMBERSHIP CARD
================================================== */

.atmos-member-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    width: 100%;

    margin-bottom: 22px;
}

.atmos-member-info {
    display: flex;
    flex-direction: column;
}


/* ==================================================
   MEMBER NAME
================================================== */

.atmos-member-name {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
}


/* ==================================================
   STATUS
================================================== */

.atmos-member-status {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #ffffff;

    font-size: 13px;
    line-height: 1;
}

.atmos-status-image {
    display: block;

    width: 26px;
    height: 26px;

    object-fit: contain;
}


/* ==================================================
   ATMOS REWARDS LOGO
================================================== */

.atmos-card-logo {
    display: flex;
    flex-direction: column;
    align-items: center;

    color: #ffffff;

    font-size: 15px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1;
}

.atmos-card-logo small {
    margin-top: 4px;

    color: #ffffff;

    font-size: 6px;
    letter-spacing: 3px;
}


/* ==================================================
   MEMBERSHIP DETAILS
================================================== */

.atmos-card-details {
    display: flex;
    flex-direction: column;

    width: 100%;

    gap: 11px;
}

.atmos-detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    gap: 15px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
}

.atmos-detail-row span {
    color: #ffffff;
}

.atmos-detail-row span:last-child {
    margin-left: auto;

    text-align: right;
    white-space: nowrap;
}


/* ==================================================
   BOTTOM ACCOUNT SECTION
================================================== */

.account-dropdown-bottom {
    display: flex;
    flex-direction: column;

    margin-top: 16px;
    padding: 16px 6px 3px;

    border-top: 1px solid #d9dde1;
}


/* ==================================================
   ACCOUNT OVERVIEW
================================================== */

.account-overview-button {
    display: flex;
    align-items: center;

    width: fit-content;

    gap: 10px;

    color: #0b1f33;

    text-decoration: none;

    font-size: 15px;
    font-weight: 500;
}

.account-overview-icon {
    display: block;

    width: 20px;
    height: 20px;

    object-fit: contain;
}

.account-overview-button:hover {
    opacity: 0.75;
}


/* ==================================================
   SIGN OUT
================================================== */

.account-signout {
    display: block;

    width: fit-content;

    margin-top: 14px;
    margin-left: 30px;

    color: #0b1f33;

    text-decoration: none;

    font-size: 12px;
    font-weight: 400;
}

.account-signout:hover {
    text-decoration: underline;
}