/*Energo Labels*/
.custom-row {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.custom-right-align {
    float: right;
    margin-right: 65px;
}

.custom-column {
    margin-top: 20px;
    margin-right: 20px;
    margin-left: 20px;
}

.custom-logo {
    width: 80px;
}
.custom-logo:hover {
    opacity: 0.8;
}
.custom-data-sheet-link {
    margin-left: 10px;
}
/*Product Quantity Chooser*/

input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.number-input {
    border: 2px solid #ddd;
    display: inline-flex;
}

.number-input,
.number-input * {
    box-sizing: border-box;
}

.number-input button {
    outline:none;
    -webkit-appearance: none;
    background-color: transparent;
    border: none;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    margin: 0;
    position: relative;
}

.number-input button:after {
    display: inline-block;
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f077';
    font-size: 10px;
    transform: translate(-50%, -50%) rotate(180deg);
}
.number-input button.plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.number-input input[type=number] {
    font-family: sans-serif;
    max-width: 5rem;
    padding: .5rem;
    border: solid #ddd;
    border-width: 0 2px;
    font-size: 1rem;
    height: 3rem;
    font-weight: bold;
    text-align: center;
}

.cookie-consent{
    position: fixed;
    text-align: center;
    bottom: 0px;
    width: 100%;
    padding: 10px;
    height: auto;
    color: #fff;

    line-height: 20px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
    background: #292929;
    opacity: 90%;
    z-index: 120;
}
