.new .theribbon {
    width: 110px;
}

#searchList_Desktop {
    position: absolute;
    display: none;
    padding: 0;
    margin-left: -7.1rem;
    overflow: hidden;
    overflow-y: scroll;
    width: 120%;
    max-height: 20rem;
    margin-top: 2.2rem;
    background-color: white;
    z-index: 5;
}

#ser_results {
    list-style-type: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

#serBar_Desktop:focus ~ #searchList_Desktop, #searchList_Desktop:hover {
    display: flex;
}

#serBar_Desktop:hover, #serBar_Desktop:focus {
    transition: opacity 0.4s ease-in;
    opacity: 1;
}

#searchList_Desktop #filter_panel {
    display: flex;
    flex-direction: column;
    background-color: white;
    text-align: left;
    width: 150px;
    height: 20rem;
    padding: 0;
    margin: 0;
}

#searchList_Desktop #filter_panel h3 {
    margin-top: 0.5rem;
    text-align: center;
}

#searchList_Desktop #filter_panel span {
    list-style-type: none;
    flex: 1;
}

#searchList_Desktop #filter_panel label {
    margin-left: 0.2rem;
}

.products-sort strong {
    margin-right: 10px;
}

/* The filter_label */
.filter_label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.filter_label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.filter_check {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.filter_label:hover input ~ .filter_check {
  background-color: #ccc;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.filter_check:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.filter_label input:checked ~ .filter_check:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.filter_label .filter_check:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

#special_details {
    height: 200px;
}

#count {
    text-align: right;
    padding-right: 1rem;
    color: rgb(70, 70, 70);
}

.order_text {
    color: rgb(80, 80, 80);
}

.checkout_button {
    width: 60%;
    height: 60px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    color: white;
}

.checkout_button_container {
    text-align: center;
}

/* Remove Arrows from Numbr Box - Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Remove Arrows from Numbr Box - Firefox */
input[type=number] {
  -moz-appearance:textfield;
}

@media only screen and (max-width: 653px) {
    #searchList_Desktop {
        display: none;
        margin-left: 0;
        width: 95%;
    }

    #serBar_Desktop:focus ~ #searchList_Desktop, #searchList_Desktop:hover {
        display: block;
    }

    #searchList_Desktop #filter_panel {
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        height: auto;
    }

    #searchList_Desktop #filter_panel h3 {
        cursor: pointer;
        margin-left: 2.5rem;
        text-align: left;
    }
    
    /*
    #filter_panel h3::before {
      content: "";
      position: absolute;
      left: 10px;
      top: 15px;
      width: 1em;
      height: 0.15em;
      background: black;
      box-shadow: 
        0 0.25em 0 0 black,
        0 0.5em 0 0 black;
    }
    */
    
    #filter_panel h3::before {
        content: "+";
        position: absolute;
        left: 10px;
        top: -2px;
        font-size: 2.4rem;
    }

    #searchList_Desktop #filter_panel label {
        display: none;
    }
    
    #searchList_Desktop li a {
        border-left: none;
    }
    
    .filter_label {
        font-size: 18px;
    }
}