/* .fw-lighter {
    font-weight: lighter;
}

.fw-light {
    font-weight: light;
}

.fw-normal {
    font-weight: normal;
}

.fw-bold {
    font-weight: bold;
}

.fw-bolder {
    font-weight: bolder;
}
 */

 .box-shadow-custom {
    box-shadow: 0px 0px 7px 0px #000000;
    border-radius: 15px;
}

.choices p:hover {
  color: #000000;
  background-color: #adadad;
  cursor: pointer;
}
.choices{
    max-height: 200px;
    z-index: 1;
    overflow: auto;
    display: none;
    position: absolute;
    background-color: white;
}

.btn-minus, .btn-plus {
    padding: 0;
    width: 20px;
    height: 20px;
    text-align: center;
    font-size: 20px;
    line-height: 20px;
    border-radius: 50%;
    border: 1px solid #000;
    background-color: #fff;
    vertical-align: middle;
}

.btn-minus {
    margin-right: 10px;
}

.btn-plus {
    margin-left: 10px;
}

.select{
    position: relative;
    width: 250px;
    height: 40px;
    border-radius: 10px;
    border: none;
    text-transform: capitalize;
    color: #fff;
    background: #0d6efd;
    text-align: left;
    padding: 0 15px;
    font-size: 16px;
    cursor: pointer;
}

.select::after{
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.select:hover{
    background: #0c59cc;
}

.select.active{
    background: #0c59cc;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.options{
    position: absolute;
    width: 250px;
    height: fit-content;
    background: #0d6efd;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
    display: none;
}

.options.active{
    display: block;
}

.options .item{
    color: #fff;
    text-transform: capitalize;
    width: 100%;
    height: 30px;
    padding: 0 15px;
    line-height: 30px;
    cursor: pointer;
}

.options .item.active{
    background: #0d6efd;
}