body {
    background-color: var(--primary_bg);
}

.row_for_full_width {
    background-color: var(--secondary_bg);
    margin: 0;
    padding: 0;
}


/* my_account_information */

.mid_title {
    font-family: var(--theme_text_font_regular);
    font-size: 36px;
    color: var(--secondary_color);
    font-weight: 900;
}

.profile_info_cont {
    display: flex;
    gap: 23px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--tertiary_bg);
    border-radius: var(--primary_radius);
    padding: 7px 20px;
}

.profile_info_cont span {
    width: 43px;
    min-width: 38px;
    background: var(--primary_bg);
    border-radius: 100px;
    height: 41px;
    display: flex;
    font-size: 12px;
    align-items: center;
    align-items: center;
    justify-content: center;
    color: var(--secondary_color);
}

.profile_info_cont .profile_info {
    width: calc(100% - 65px);
    font-size: var(--quaternary_heading);
}

.profile_info_cont .profile_info label {
    font-weight: var(--tertiary_fw);
    margin-bottom: 2px;
    color: var(--primary_color);
    font-size: var(--quaternary_heading);
}

.profile_info_cont .profile_info p {
    font-size: var(--quaternary_heading);
    word-wrap: break-word;
}


/* my_account_information end */


/* my booking start */

.theme_table_cont {
    background-color: var(--primary_bg);
    border-radius: var(--primary_radius);
    padding: 20px;
    margin-bottom: 20px;
}

.theme_table td,
.theme_table th {
    padding: 15px;
    word-wrap: break-word;
    max-width: 260px;
    font-size: 18px;
    border-bottom: 1px solid #00000045;
}

.theme_table tr:nth-last-child(1) td {
    border-bottom: none;
}

.theme_table td .timestamp {
    display: block;
}

.theme_table td .status_symbol {
    display: inline-block;
    border-radius: 5px;
    height: 20px;
    width: 20px;
    margin-right: 5px;
    transform: translateY(3px);
}

.theme_table td .status_symbol.Pending {
    background: #f57c37;
}

.theme_table td .status_symbol.Confirmed {
    background: #6ebe44;
}

.theme_table td .status_symbol.Approved {
    background: #6ebe44;
}

.theme_table td .status_symbol.Rejected {
    background: #ec3d3d;
}


/* my booking end */

.profile-input {
    border: none;
    outline: none;
    width: 100%;
}

.booking_button {
    background: var(--secondary_color);
    color: var(--tertiary_color);
    border-radius: 100px;
    padding: 10px 28px;
    font-size: var(--secondary_para);
    font-weight: var(--tertiary_fw);
    border: 1px solid var(--quinary_bg);
    font-size: var(--primary_para);
    transition: all .5s;
}

.booking_button:hover {
    background: transparent;
    border: 1px solid var(--secondary_color);
    color: var(--primary_color);
}

span.update_account_button_container {
    text-align: center;
    margin: 20px 0;
}

.view_details {
    border: none;
    color: var(--secondary_color);
}

.for_booking_list {
    display: none;
}

.required_asterix {
    color: red;
    position: absolute;
    right: 0;
    top: 12px;
}

.profile_info {
    position: relative;
}

.panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

h2.box-header.accordion.active span {
    rotate: 180deg;
}

.category_name_in_table {
    display: block;
    font-size: var(--secondary_para);
    color: var(--secondary_color);
}