.half {
    float: left;
    width: 50%;
    padding-right: 2%;
}

.clear-both {
    clear: both;
}

.room-row {
    border: solid 2px #b7b7b7;
    border-radius: 5px;
    padding: 15px 20px 10px 20px;
    margin-right: 0 !important;;
}

.pm-title {
    border-bottom: 1px solid #b7b7b7;
    margin-top: 20px;
    margin-bottom: 20px;
}

.delete-button {
    position: relative;
    float: right;
    background: #d82c27;
    color: white;
    top: -16px;
    right: -21px;
    border-radius: 0px 5px 0px 5px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.name-label {
    padding: 10px;
    position: relative;
    float: right;
    background: #d82c27;
    color: white;
    top: -16px;
    right: -21px;
    border-radius: 0px 5px 0px 5px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
}

.room-wrapper, .addons-wrapper, .overview-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.addons-wrapper > div, .room-wrapper > div, .overview-wrapper > div {
    flex: 49%;
}

.room-row {
    margin-bottom: 20px;
    margin-right: 15px;
}

.select2-selection {
    width: 100% !important;
}

.input-row {
    margin-bottom: 15px;
}

.row {
    margin: 10px 10px 15px 10px;
    padding: 15px;
}

.row .half {
    border-bottom: 1px solid #b7b7b7;
    min-height: 40px;
}

.text-right {
    text-align: right;
}

.row h4 {
    margin: 0;

}

.room-wrapper-controls, .main-controls {
    margin: 25px 0;
    text-align: right;
}

.product-row {
    display: flex;
    flex-direction: row;
    align-content: stretch;
    align-items: center;
}

.product-image {
    width: 15%;
}

.product-image img {
    width: 42%;
    border-radius: 10px;
}

.product-title {
    width: 71%;
}

.product-select-title {
    width: 70%;
    margin-right: 5%;
}

.product-quantity input,
.product-select-quantity input {
    width: 100px !important;
}

.product-select-quantity {
    width: 18%;
    text-align: right;
}

.product-title-longer {
    width: 60%;
    margin-right: 22%;
}

.product-quantity-needed {
    width: 8%;
}

.product-price {
    width: 8%;
}

.product-quantity {
    width: 8%;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    color: #000;
    font-weight: 600;
    margin: 10px 0;
    border-radius: 4px;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
    background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0 18px;
    background-color: white;
    /*display: none;*/
    overflow: hidden;
}

.accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #d91e18;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}

.room-row > h2 {
    margin-bottom: 0px;
}

.image {
    max-width: 35px;
}

.product-row {
    margin-bottom: 10px;
}

@media only screen and (max-width: 1024px) {
	.half {
		float: left;
		width: 100% !important;
		padding-right: 2%;
	}
	
	.product-image {
		width:150px;
	}
	
	.product-image img {
		width:120px;
	}
	
	.product-title {
		width:calc(100% - 325px);
	}

	.product-price {
		width:75px;
	}
	.product-quantity {
		width:100px;
	}
}

@media only screen and (max-width: 425px) {
	.product-image {
		width: 20%;
		float: left;
		margin-right: 5%;
	}
	
	.product-image img {
		width:60px;
	}
	
	.product-title, .product-select-title {
		    width: 75%;
    font-size: 16px;
    font-weight: 400;
		float:left;
	}
	.product-price {
    width: 100%;
    text-align: right;
}
	.product-quantity, .suspension-quantity {
    	width: 100%;
		font-weight: 800;
		margin-bottom: 10px;
	}
	.product-quantity input {
		width: 100% !important;
	}
	.product-row {
		display: table
	}
	.suspension, .suspension-quantity {
		width: 100% !important;
	}
}