
.item-list-basket-details {
    margin-top: 0px !important;
}
.form-row .quantity {
    padding: 7px;
}
.form-basket {
    margin-top: -15px;
}
.bbd-dropdown-menu-right {
    animation-name: rightToStop;
    animation-duration: .25s
}
#collapseFilter .modal-dialog {
    position: fixed;
    top: 0;
    right: 0;
    margin: 0;
    width: 350px;
    height: 100%;
    animation-name: rightToStop;
    animation-duration: 0.25s;
    animation-timing-function: ease-out;
}

#collapseFilter .close {
    display: none;
}

#collapseFilter .modal-content {
    padding: 1rem 0px 2rem 10px;
    height: 100%;
}

@keyframes rightToStop {
    from {
        right: -100%
    }

    to {
        right: 0
    }
}

@keyframes stopToRight {
    from {
        right: 0
    }

    to {
        right: -100%
    }
}

.bbd-loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid blue;
    border-right: 16px solid green;
    border-bottom: 16px solid red;
    width: 100px;
    height: 100px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    position: absolute;
    background: rgba(255,255,255,.75);
    z-index: 1022;
    top: 20%;
    right: 40%;
    text-align: center;
  }
  
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

