.login_section{
    background-color: #F1F1F1;
    padding: 60px 0px;
}
.login_form_holder{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.login_form, .address_form{
    background-color: white;
    width: 90%;
    max-width: 500px;
    padding: 24px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.address_form{
    max-width: 800px;
}
.login_form_heading{
    color: #191970;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    padding: 10px 0px;
}
.login_form_contents{
}
.login_form_input{
    width: 90%;
    background: white;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 18px;
    padding: 10px 4px;
    border: none;
    border-bottom: 1px solid #191970;
    border-radius: 0px;
    color: #191970;
    text-align:left;
    outline: none;
}
.login_form_button{
    flex: 90%;
    width: 90%;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    padding: 10px 0px;
    border: none;
    border-radius: 0px;
    outline: none;
    cursor: pointer;
    background-color: #191970;
    color: white;
    margin: 16px auto;
}
.login_form_button:hover {
    background-color: #FE6944;
}
.message_holder{
    flex: 90%;
    width: 90%;
    margin: 0px auto;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    padding: 16px 0px 16px;
}
.message_holder a{
    color: #191970;
}
.account_section{
    padding: 30px 0px;
    background-color: #F1F1F1;
}
.account_intro_heading{
    font-weight: 600;
    font-size: 28px;
    color: #191970;
    text-align: left;
    padding: 0px;
}
.accounts{
    display: flex;
    flex-direction: column;
}
.account{
    display: flex;
    width: 100%;
    padding: 12px 0px;
}
.account_heading{
    width: 30%;
    display: flex;
    justify-content: left;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
}
.account_detail{
    width: 70%;
    display: flex;
    justify-content: left;
    color: #333;
    font-size: 16px;
    font-weight: 400;
}
.account_address{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: left;
    text-align: left;
}
.account_button_holder{
    padding: 20px 0px 20px;
    display: flex;
    justify-content: left;
}
.account_button {
    text-align: center;
    text-transform: uppercase;
    color: white;            
    border: 2px solid #191970;
    border-radius: 4px;
    width: 140px;
    cursor: pointer;
    padding: 10px;
    background-color: #191970;
}
.account_button:hover{
    background-color: #000;
}
.textarea_holder{
    width: 90%;
    margin: auto;
    margin-bottom: 8px;
    padding: 10px 4px;
 }
 .payment_holder{
    display: flex;
    max-width: 500px;
    width: 90%;
    justify-content: center;
    flex-direction: column;
    background-color: white;
 }
 .payment_holder_text{
    color: #191970;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
 }
 .payment_button{
    flex: 90%;
    width: 90%;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    padding: 10px 0px;
    border: none;
    border-radius: 0px;
    outline: none;
    cursor: pointer;
    background-color: #0000FF;
    color: white;
    margin: 16px auto;
}
.payment_button:hover {
    background-color: #000;
}
.action_button {
    text-align: center;
    text-transform: uppercase;
    color: white;            
    border: 2px solid #FF0000;
    border-radius: 0px;
    min-width: 80px;
    cursor: pointer;
    padding: 6px;
    background-color: #FF0000;
}
.action_button:hover{
    background-color: #FFF;
    color: #FF0000;
}
.table_buttons_holder{
    display: flex;
}
.table_button {
    text-align: center;
    text-transform: uppercase;
    color: white;            
    border: 2px solid #FE6944;
    border-radius: 0px;
    min-width: 80px;
    cursor: pointer;
    padding: 4px 6px;
    background-color: #FE6944;
    margin-left: 8px;
}
.table_button:hover{
    background-color: #FFF;
    color: #FE6944;
}
.email_button {
    text-align: center;
    text-transform: uppercase;
    color: white;            
    border: 2px solid maroon;
    border-radius: 0px;
    min-width: 80px;
    cursor: pointer;
    padding: 4px 6px;
    background-color: maroon;
    margin-left: 8px;
}
.email_button:hover{
    background-color: #FFF;
    color: maroon;
}
.whatsapp_button {
    text-align: center;
    text-transform: uppercase;
    color: white;            
    border: 2px solid #25D366;
    border-radius: 0px;
    min-width: 80px;
    cursor: pointer;
    padding: 4px 6px;
    background-color: #25D366;
    margin-left: 8px;
}
.whatsapp_button:hover{
    background-color: #FFF;
    color: #075E54;
}
.left_heading_holder{
    text-align: left;
}

table{
    width:100%;
    margin:12px auto;
    border:1px solid #191970;
}
tr:nth-child(even){
    background: white;
    color: #191970;
}
tr:nth-child(odd){
    background: #191970;
    color: white;
}
th{
    text-align: left;
}td{
   text-align:left;
   font-size: 14px;
   color:#FFF;
   padding:10px 2px;
}
tr:nth-child(even) td{
    color: #191970;
}
.table_shell{
    overflow-x:auto;
}
.payment_results_section{
    padding: 60px 0px;
    background-color: F2F2F2;
}
.unready{
    display: none;
}
.hidden{
    display: none;
}
.toggle_button {
    text-align: center;
    text-transform: uppercase;
    color: white;            
    border: 2px solid #191970;
    border-radius: 4px;
    width: 140px;
    cursor: pointer;
    padding: 10px;
    background-color: #191970;
}
.toggle_button:hover{
    background-color: #000;
}
.stats_section{
    width: 100%;
    margin-bottom: 21px;
}
.stats_holder{
    display: flex;
    justify-content: left;
    width: 100%;
}
.stats_box_shell{
    width: 25%;
    max-width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.stats_box{
    width: 95%;
    border: none;
    border-top: 2px solid #191970;
    border-bottom: 2px solid #FE6944;
    border-left: 2px solid #191970;
    border-right: 2px solid #FE6944;
    border-radius: 6px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.stats_box_big_text{
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    color: #191970;
}
.stats_box_small_text{
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    color: #999;
}
.tickets_error{
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    color: #FE6944;
}
@media only screen and (max-width: 640px){
    .stats_holder{
        flex-direction: column;
    }
    .stats_box_shell{
        width: 100%;
        max-width: 100%;
        margin-bottom: 16px;
    }
}