/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
input[type="number"] {
    border-radius: 0;
    margin-bottom: 0;
    padding: .375rem .75rem;
}

.btn {
    display: inline-block !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    text-align: center !important;
    text-decoration: none !important;
    vertical-align: middle !important;
    cursor: pointer !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    user-select: none !important;
    border: 1px solid transparent !important;
    padding: .375rem .75rem !important;
    font-size: 1rem !important;
    border-radius: .25rem !important;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !important;
}

.calc-result table {
    table-layout: fixed;
}

.calc-result table td {
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg) !important;
    padding: 20px !important;
    border: 1px solid rgba(0, 0, 0, .08) !important;
}

.actions .action {
    cursor: pointer;
}

.single-product:only-of-type .actions .delete-row {
    display: none;
}

.single-product .actions .delete-row {
	color: red;
}

.single-product .actions .add-row {
	color: blue;
}

#container-graph {
    height: 150px;
}

#container-graph div {
    width: 200px;
    height: 150px;
    max-width: 35vw;
}

#full-container,
#portion1 {
    background-color: #f17572;
}

#full-container,
#portion1,
#portion2 {
    border: 1px solid #f17572;
}

#full-container {
    border-radius: 20px;
    margin-right: 10px;
}

#portion1 {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

#portion2 {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.rtl .input-group-text {
    transform: rotate(180deg);
}

.rtl #portion-container {
    flex-direction: row-reverse;
}

#calc-result-left .indicators span{
	width: 20px;
    height: 20px;
    margin: 0 5px;
    display: inline-block;
}

#calc-result-left .indicators .full-ind span{
    background: #f17572;
}

#calc-result-left .indicators .empty-ind span{
    border: 1px solid black;
}