.quick_order_area {
    max-width: 345px;
    width: 98%;
    position: fixed;
    bottom: 50px;
    right: 30px;
    text-align: center;
    border-radius: 50px;
    padding: 15px 0px;
    box-shadow: 0px 0px 10px #ccc;
    background-color: #fff;
}

.quick_order_area p {
    font-size: 16px;
    color: #011961;
    display: inline-block;
    position: relative;
    top: 2px;
}

.quick_order_area p .piece {
    font-size: 24px;
}

a.quick_order_btn {
    background-color: #0b2267;
    color: #fff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 25px;
    font-size: 12px;
    margin-left: 20px;
    position: relative;
    top: -3px;
    transition: 0.3s ease;
}

a.quick_order_btn:hover {
    text-decoration: none;
    opacity: 0.6;
}

.prod_code_check {
    position: relative;
    left: 10px;
    top: 10px;
    width: 20px;
    appearance: none;
    height: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    transition: 0.3s ease;
    position: relative;
}

.prod_code_check:checked {
    background-color: #001a64;
}

.prod_code_check:checked::after {
    width: 3px;
    height: 11px;
    border-bottom: 3px solid #fdd902;
    content: "";
    border-right: 3px solid #fdd902;
    display: block;
    position: absolute;
    transform: rotate(45deg);
    left: 0px;
    right: 0px;
    top: -2px;
    bottom: 0px;
    margin: auto;
}

@media (max-width: 768px){
	.quick_order_area {
    max-width: 100%;
    width: 100%;
    position: fixed;
    bottom: 0;
    right: 0;
    text-align: center;
    border-radius: 0;
    padding: 15px 0px;
    box-shadow: 0px 0px 10px #ccc;
    background-color: #fff;
}
}