/* assets/css/styles.css - Original styles preserved exactly */

table tr:last-child th, table tr:last-child td {
    border-bottom: none;
}

html, body{
    margin: 0px 0px;
    padding: 0px 0px;
}

.f-wrapper{
    display: block;
    float: left;
    position: relative;
    width: 100%;
    height: 42px;
    margin: 10px 0px;
    border:  1px solid #efefef;
    border-radius: 20px;
    overflow: hidden;
}

.f-minus, .f-plus{
    display: block;
    position: absolute;
    top: 0px;
    width: 36px;
    height: 40px;
    padding: 5px 8px;
    cursor: pointer;
}

.f-minus{
    left: 0px;
}

.f-plus{
    right: 0px;
}

.f-ingredient{
    display: block;
    float: left;
    position: relative;
    width: 100%;
    height: 20px;
    margin: 0px 0px;
    padding: 0px 0px;
    line-height: 20px;
    font-size: 0.85em;
    text-align: center;
    font-weight: bold;
    transition: all 0.5s;
}

.f-ingredient span{
    cursor: pointer;
}

#ingredientInfoModalCircle{
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border-radius: 10px;
    border: 1px solid #dfdfdf;
    background-color: white;
}

.f-info{
    display: block;
    float: left;
    position: relative;
    width: 100%;
    height: 20px;
    line-height: 20px;
    font-size: 0.75em;
    margin: 0px 0px;
    padding: 0px 0px;
    text-align: center;
}

.f-minus img, .f-plus img{
    width: 20px;
    height: 30px;
    margin: 0px 0px;
}

.f-tube-wrapper{
    display: block;
    float: left;
    position: relative;
    width: 80px;
    height: 405px;
    background-color: #ccc;
}

.f-tube-space{
    display: block;
    float: left;
    position: relative;
    width: 80%;
    height: 97.5%;
    background-color: white;
    border-radius: 0px 0px 10px 10px;
    margin: 0px 10% 5% 10%;
}

.f-tube-fills{
    display: block;
    position: absolute;
    top: 3.7%;
    left: 0px;
    width: 100%;
    height: 95%;
}

.f-tube-img{
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    width: auto;
    height: 100%;
}

.f-tube-img img{
    position: absolute;
    right: 0px;
    width: auto;
    height: 100%;
}

.f-tube-gradient {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: rgb(0, 0, 0);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.25) 0%, rgba(255, 255, 255, 0.5) 25%, rgba(255, 255, 255, 0) 34%, rgba(255, 255, 255, 0) 67%, rgba(255, 255, 255, 0) 75%, rgba(0, 0, 0, 0.3) 100%);
}

.f-mixer-wrapper{
    height: 405px;
}

.f-mixer{
    height: 405px;
    overflow-y: scroll;
}

.f-no-drops .f-info{
    display: none;
}

.f-no-drops .f-ingredient{
    height: 40px;
    line-height: 40px;
    color: #999999;
}

.fill{
    display: block;
    float: left;
    position: relative;
    width: 90%;
    height: 0px;
    margin: 0px 5%;
    border-radius: 5px;
    transition: all 0.5s;
    box-shadow: inset 0 0 1px #222;
    text-align: center;
    font-size: 0.5em;
    line-height: 1;
    text-shadow: 1px 1px 1px white;
    font-weight: bold;
    overflow: hidden;
}

.fill-caption{
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.f-color{
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    left: 35px;
    top: 10px;
    border-radius: 20px;
    border:  1px solid #dfdfdf;    
}

.animate-slow{
    transition: all 0.5s;
}

.f-tube-full{
    display: none;
    position: absolute;
    padding: 40px 100px;
    width: 100%;
    height: 100%;
    background-color: white;
    top: 0;
    left: 0;
    z-index: 1000;
}

.f-tube-full .fill-caption{
    font-size: 2em;
}