/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 7 дек. 2021 г., 15:07:48
    Author     : sergeysenotov
*/
.carnet-form.page-form{
    padding: 0;
}
.inp-group.inp-group__number {
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
} 
.inp-group__number label{
    margin-right: 30px;
}
.inp-group__number .quantity-block{

    opacity: 1;
    top: 0;
    width: 180px;
    right: 10px;
    padding: 0;
    height: 36px;
    margin: 13px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
}
.inp-group__number .quantity-block input{
    position: relative;
    top: auto;
    right: auto;
    margin: 0 8px;
    background: white;    
    text-align: center !important;
    padding: 0;
}

.inp-group__number .quantity-arrow-minus,
.inp-group__number .quantity-arrow-plus{
    width: 36px;
    height: 36px;
    color: black;
    background: #fff;
    border: 1px solid #eee;
    box-sizing: border-box;
    border-radius: 50%;
    line-height: 26px;
}
.inp-group__number:hover .quantity-arrow-minus,
.inp-group__number:hover .quantity-arrow-plus{
    background: #3782C8;
    border: 1px solid #3782C8;
    color: white;
}
.inp-group__number input{
    position: absolute;
    opacity: 1;
    top: 0;
    width: 80px;
    right: 40px;
    padding: 0;
    height: 36px;
    margin: 13px 0;
    text-align: center;
}

input.quantity-num::-webkit-outer-spin-button,
input.quantity-num::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
.inp-group.inp-group__checkbox{
    display: inline-block;
}
