.rt_wijn {
    width: 100%;
    margin-bottom: 5px;
    padding: 10px;
    display: grid;
    grid-template-columns: 120px 1fr 100px;
    grid-template-rows: minmax(30px, auto) 1fr 29px;
    background-color: #fff;
    border-radius: 10px;
    margin-top: 5px;
}
	.rt_foto{
		grid-column: 1 / span 1;
		grid-row: 1 / span 3;
		background-size: contain;
		background-position:center;
		background-repeat: no-repeat;
	}
	.rt_titel {
	    grid-column: 2 / span 1;
	    grid-row: 1 / span 1;
	    font-size: 17px;
	    font-weight: 800;
    	color: #f55b00;
        font-family: "Montserrat" , sans-serif;
	}
	.rt_subtitel{
		grid-column: 2 / span 2;
		grid-row: 2 / span 1;
	}
    .rt_toevoegen {
        grid-column: 3 / span 1;
        grid-row: 1 / span 1;
        display: grid;
        grid-template-columns: 30px 1fr 30px;
        height: 36px;
        padding: 3px;
        background-color: #f2f2f2;
        border-radius: 50px;
    }
    .rt_toevoegen > button {
        border-radius: 50%;
        border: 0px solid #f00;
        font-weight: 800;
        font-size: 20px;
        line-height: 21px;
        background-color: #939393;
        color: #fff;
        transition-timing-function: cubic-bezier(0.000, 0.790, 0.540, 1.490); /* custom */
        padding: 0px!important;
    }
    .rt_toevoegen > .rt_plus{
        color: orange;
    }
    .rt_toevoegen > .rt_plus {
        color: #fff;
        background-color: #f55b00;
    }
    .rt_toevoegen > button:hover{
        filter: brightness(0.8);
    }
    .rt_toevoegen > button:active{
        filter: brightness(0.7);
        transform: scale(0.8);
    }
    .rt_toevoegen > .rt_plus:active{
        transform: scale(1.5)    
    }
    .rt_toevoegen > span {
        height: 30px;
        line-height: 30px;
        text-align: center;
        font-size: 19px;
        font-weight: 800;
    }
    .rt_subtotal {
        background-color: #fff;
        padding: 20px;
        border-radius: 7px;
        margin-bottom: 10px;
        margin-top: 20px;
        box-shadow: rgb(0 0 0 / 10%) 0px 10px 15px -3px, rgb(0 0 0 / 5%) 0px 4px 6px -2px;
    }
    .rt_subtotal > h3 {
        font-weight: 700;
        color: #f55b00;
    }

div#nf-form-2-cont {
    background-color: #fff;
    border-radius: 15px;
    margin-top: 20px;
}
.rt_toevoegen > button:disabled {
    pointer-events: none;
    opacity: 0.1;
}
#app{
    display: none;
}
.mobile_nav > .mobile_menu_bar:before{
    color: #f55b00!important;
}
@media only screen and (max-width: 750px) {
    .rt_wijn {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        align-items: center;
    }
    .rt_foto {
        width: 100%;
        height: 170px;
    }
    .rt_toevoegen {
        margin-top: 20px;
        width: 120px;
    }
}
@media only screen and (max-width: 400px) {
    .rt_wijn {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        align-items: center;
    }
    .rt_foto {
        height: 140px;
    }
    .rt_toevoegen {
        margin-top: 20px;
        width: 120px;
        touch-action: manipulation;

    }
    .rt_titel{
        font-size: 16px;
        text-align:center;
    }
    .rt_subtitel{
        font-size: 15px;
        text-align:justify;
    }
    .rt_price {
        background-color: #fafafa;
        padding: 10px;
        border-radius: 20px;
        font-weight: 700;
    }
    .rt_subtotal >span {
        display: none;
    }
    .rt_subtotal > h3{
        font-size: 16px;
    }
    .rt_toevoegen {
        grid-template-columns: 45px 1fr 45px;
        height: 50px;
        width: 150px;
    }
    .rt_toevoegen > span{
        line-height: 45px;
    }
}