.basketLayerToFullPage {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1099;
	display: none;
}
.basketLayer {
    width: 400px;
    background-image: url(nyitoscreen.jpg);
    background-size: cover;
    background-position: center;
    margin: 0;
    right: 15px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    transition: all 0.25s;
	z-index: 1035;	
	position: fixed;
	top: 0;
	height: 100%;
	opacity: 1;
	right: -400px;
	z-index: 1100;
}
.basketLayer.show {
	right: 0px;
}
.basketLayer .basketLayerItems {
	max-height: 300px;
	overflow-x: hidden;
	overflow-y: auto;
}
.basketLayer .basketLayerItems > div {
	padding: 2px 5px;
}
.basketLayer .basketLayerItems > div.active {
	background: #eaeaea;	
}

.basketLayer h4{
    font-size: 20px;
    font-weight: 700;
}

.basketLayer p{
    font-size: 18px;
    margin-bottom: 0;
}

.basketLayer .sumsum p{
    font-size: 18px;
}

.basketLayer .sumsum .price {
    font-size: 22px;
    font-weight: 700;
}

.basketLayer .btn-success{
    margin-top: 15px;
    width: 100%;
    border-radius: 0;
}

.basketLayerItems .row {
    background-color: transparent !important;
}

.basketLayer .delete {
    padding: 10px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: var(--brown);
    margin-left: 5px;
    border-radius: .2rem;
}

.basketLayer .delete i {
    font-weight: 500;
}

.basketLayer .price {
    font-size: 18px;
    font-weight: 700;
}

.tobasket .button {
    background-color: white;
    border: none;
    color: var(--brown);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1px;
    border-radius: .25rem;
}

.tobasket input {
    height: 30px;
    width: 50px;
    appearance: none;
    -moz-appearance: textfield;
    border: none;
    outline: none;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

.tobasket input[type="number"]::-webkit-inner-spin-button,
.tobasket input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.tobasket .nogutters div {
    display: inline-block;
}

@media only screen and (max-width:767px){
	.basketLayer {
		width: 300px;
	}
}