/*#region Basic Styles*/

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body{
    overflow: hidden;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

body{
    overflow: hidden;
    background-size: cover;
    background-image: url("/images/wingbg.jpg");
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

h1, h2, h3, h4, p, a, label{
    margin: 0;
    padding: 0;
    font-family: ZingersRegular !important;
    color: black !important;
}

@font-face{
    font-family: ZingersRegular;
    src: url("/fonts/Poppins-Regular.ttf");
}

@font-face{
    font-family: ZingersBold;
    src: url("/fonts/Poppins-Bold.ttf");
}

div.space{
    width: 100%;
}

.standard_button {
    display: flex;  
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    white-space: nowrap;
    font-family: ZingersRegular !important;
    border-radius: 6px;
    border: none;
    color: rgba(230, 230, 230, 1) !important;
    background: linear-gradient(180deg, rgb(175, 116, 8) 0%, rgb(132, 12, 12) 100%);
    background-origin: border-box;
    box-shadow: 0px 0.5px 1.5px rgba(255, 0, 0, 0.25), inset 0px 0.8px 0px -0.25px rgba(255, 132, 0, 0.2);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    cursor: pointer;
}

.standard_button:hover {
    background: linear-gradient(180deg, #8a0000, #7c3e00);
}

.standard_button_disabled{
    background: grey;
    color: darkgrey;
    pointer-events: none;
}

::-webkit-scrollbar {
    width: 5px;
}
  
  /* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1 !important;
}
  
  /* Handle */
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, orange 0%, red 100%) !important;
}
  
  /* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgb(175, 116, 8) 0%, rgb(132, 12, 12) 100%) !important;
}

.standard_dropdown{
    width: 100%;
    height: 2rem;
}

div.loading_overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: black;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.column {
    float: left;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

div.logo_header{
    position: absolute;
    top: 15px;
    right: 100px;
    left: 100px;
    height: 90px;
    display: flex;
    text-align: center;
    justify-content: center;
}

img.logo{
    width: 300px;
    height: 100%;
}

div.container{
    display: block;
    position: absolute;
    right: 1rem;
    left: 1rem;
    bottom: 10px;
    top: 120px;
    background: white;
    background: linear-gradient(to right bottom, rgba(255, 255, 255, .7), rgba(255, 255, 255, .3));
    border-radius: 25px;
    padding: 1rem;
}
  
div.content_container{
    display: block;
    overflow-y: scroll;
    position: absolute;
    top: 5rem;
    right: .75rem;
    left: .75rem;
    bottom: .75rem;
    padding: .5rem;
}

.message_overlay{
    position: absolute;
    z-index: 100;
    display: flex;
    background: rgba(0, 0, 0, .95);
    text-align: center;
    flex-direction: column;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    padding-right: 1rem;
    padding-left: 1rem;
    padding-top: 5rem;
}

.message_overlay_text{
    font-family: ZingersRegular !important;
    color: white !important;
}

/*#endregion*/

/*#region Login Styling*/

.login_input{
    font-family: ZingersRegular !important;
    color: black !important;
    font-size: 1.5rem;
    height: 2rem;
    width: 100%;
}

/*#endregion*/

/*#region Basic Element Styles*/

button.action_button{
    font-family: ZingersBold !important;
    color: black;
    font-size: .95rem;
    padding: .5rem;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    background: white;
    background: linear-gradient(to right bottom, rgba(255, 255, 255, .9), rgba(255, 255, 255, .5));
}

/*#endregion*/

/*#region Home Content Styles*/

.home_content_welcome_title{
    position: absolute;
    top: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    font-family: ZingersBold !important;
}

.home_content_action_buttons{
    position: absolute;
    top: 60px;
    right: 10px;
    left: 10px;
}

.home_content_recent_ratings_list_parent{
    position: absolute;
    top: 200px;
    right: 0px;
    left: 0px;
    bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
}

/*#endregion*/

/*#region Recent Wing Ratings List Styles*/

div.recent_ratings_list{
    position: absolute;
    top: 2rem;
    bottom: 20px;
    left: 10px;
    right: 10px;
    overflow-y: scroll;
    padding-right: .5rem;
}

div.recent_ratings_list_item{
    height: 75px;
    min-width: 100%;
    background: white;
    background: linear-gradient(to right bottom, rgba(255, 255, 255, .7), rgba(255, 255, 255, .3));
    border-radius: 15px;
    padding: 10px;
    margin-bottom: .75rem;
}

.recent_ratings_list_item_description{
    width: 50%;
    height: 55px;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.recent_ratings_list_item_value{
    width: 40%;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: center;
}

.recent_ratings_list_item_button{
    width: 10%;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: center;
}

.recent_ratings_list_item_button_btn{
    width: 1.5rem;
    height: 1.5rem;
    border: none;
    border-radius: 5px;
    font-family: ZingersBold !important;
}

/*#endregion*/

/*#region Add Wing Rating Styles*/

.add_wing_rating_score_input{
    width: 50%;
    height: 2rem;
    font-family: ZingersRegular !important;
    color: black !important;
    font-size: 1.5rem;
    text-align: center;
}

.add_wing_rating_score_label{
    font-family: ZingersRegular !important;
    color: black !important;
    font-size: 1.75rem;
}

/*#endregion*/