*{
	padding: 0px;
	margin: 0px;
}
.option-name{
	text-align: center;
	font-weight: 800;
	font-size: 30px;
}
.sub-option-name{
	text-align: center;
	font-weight: 600px;
	font-size: 24px;
}
select{
	width: 100%;
}
#singlebox option{
	height: 100px;
}
.row{
	text-align: center;
}
.row img{
	width: 100%;
	margin: 5px 0px;
}
#order-details h3{
	color: #e2e2e2;
}
.select-item-title{
	font-weight: bold;
	font-size: 20px;
	text-align: center;
}
.item-name-detail{
	padding: 0px;
	margin: 0px;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
}
#remainder{
	margin-top: 10px;
	font-size: 20px;
	color: white;
	background-color: rgb(255, 102, 0);
	padding: 10px;
	border-radius: 10px;
	text-align: center;
}
.row label{
	font-size: 16px;
	color: #313131;
	cursor: pointer;
}
.row input{
	font-size: 20px;
}
#order-details{
	background-color: #222;
	color: #fff;
	padding: 4px 30px;
	margin-top: 20px;
}
#order-details .row{
	text-align: left;
}
.detail-option-title{
	font-weight: 700;
	font-size: 20px;
	color: #e2e2e2;
}
.thank-you-line{
	font-weight: 700;
	font-size: 20px;
	color: #fff;
}
#order-details h4{
	font-weight: 800;
	font-size: 28px;
}
#order-details a{
	text-decoration: none;
}
#order-details a:hover{
	text-decoration: none;
}

.detail-option-value{
	font-weight: 600;
	font-size: 16px;
	color: #fff;
}
.btn{
	font-weight: bold;
	width: 100%;
	font-size: 20px;
	background-color: #aaa8a8;
	color: #fff;
	transition: all 2s;
	margin: 5px 0px;
}
.btn:hover{
	background-color: #fff;
	color: black;
}
.option-remainder{
	font-size: 18px;
	line-height: 24px;
	text-align: center;
}
#note{
	font-size: 20px;
	color: white;
	background: red;
	padding: 5px;
}
#myInput{
	display: none;
}
.check-detail-button{
	background: red;
	font-size: 18px;
	padding: 2px 8px;
	border-radius: 5px;
	transition: all 2s;
	margin: 10px 0px;
	width: 100%;
}
.check-detail-button:hover{
	background: red;
	letter-spacing: 1px;
	text-decoration: none;
}
.checkboxContainer{
    position: relative;
    display: inline-block;
    padding-left: 26px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 5px;
}
input{
    display: none;
}
span.checkmark{
    display: inline-block;
    position: absolute;
    left: 0px;
    top: 0px;
    height: 22px;
    width: 22px;
    background: #d6d6d6;
    border-radius: 4px;
}
.checkboxContainer input:checked + .checkmark{
    background:red;
}
.checkboxContainer input:checked + .checkmark::before{
    content: '\f00c';
    color: white;
    font-size: 17px;
    font-family: fontAwesome;
    line-height: 22px;
}
.checkboxContainer input:checked + .checkmark::after{
    content: '';
    animation: click-wave 0.75s;
    display: block;
    background: red;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 200;
    opacity: 0;
    border-radius: 50%;
}
@keyframes click-wave{
    0%{
        height: 22px;
        width: 22px;
        opacity: 0.25;
    }
    100%{
        width: 200px;
        height: 200px;
        opacity: 0;
        top: -89px;
        left: -89px;
    }
}
.clearfix{
    margin: 10px 0;
}
.price-tag{
    color: #f56b0f;
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
}
.separator::before, .separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #000;
}
.separator::before {
    margin-right: .25em;
}
.separator::after {
    margin-left: .25em;
}