﻿.ib_nav_drawer_menu {
    height: calc(100vh - 52px);
}

.tote_events_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tote_events_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.tote_events_container_group {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
    padding: 8px;
    background-color: var(--grey);
    border-radius: 4px;
}

.tote_race_meeting_title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
}

.select_tote_meeting_button {
    width: 100%;
    max-width: 144px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
    background-color: var(--grey);
    border: 2px solid var(--dark);
    border-radius: 48px;
    cursor: pointer;
}

.tote_events {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.tote_field_selection_description_container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tote_field_selection_info {
    width: 100%;
    height: 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    background-color: var(--dark);
    border-radius: 4px;
}

.tote_change_bet_link {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
}

.tote_change_bet_icon {
    width: 32px;
    height: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--light);
    border-radius: 50%;
}

.tote_change_bet_text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--light);
}

.tote_field_selection {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
}

.tote_field_selection_text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-align: right;
    color: var(--light);
}

.tote_bet_identifier {
    height: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    color: var(--light);
    border-radius: 4px;
}

.betslip_header {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.betslip_title {
    flex-direction: row;
}

.betslip_ticket_body {
    border: none;
}

@media only screen and (min-width: 1200px) {
    .ib_nav_drawer_settings {
        display: none;
    }

    .select_tote_meeting_button {
        display: none;
    }

    .tote_change_bet_link:hover .tote_change_bet_icon {
        border-color: var(--primary-orange);
        transition: 0.2s ease-in-out;
    }
}