#serarch-beans {
    scroll-margin-top: 120px;
}
.bins-form-wrapper {
    background-color: #ff8210;
    border-radius: 5px;
    padding: 24px 40px;
    display: flex;
    justify-content: center;
    margin-bottom: 33px;
}

.bins-form-wrapper form {
    display: flex;
    flex-wrap: wrap;
}

.bins-form-wrapper form label {
    color: #fff;
    width: 100%;
}
.bins-form-wrapper form input {
    padding: 14px 16px;
    border-radius: 5px;
    border: none;
}
.bins-form-wrapper form .location {
    margin-right: 32px;
}
.bins-form-wrapper form .dates {
    display: flex;
    flex-wrap: wrap;
    margin-right: 32px;
}

.bins-form-wrapper form .dates .date:first-of-type input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 1px solid #ddd;
}
.bins-form-wrapper form .dates .date:last-of-type input {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.bins-form-wrapper form [type="submit"] {
    background: none;
    border: 1px solid #08AC3A;
    border-radius: 5px;
    background-color: #08AC3A;
    color: #fff;
    padding: 14px 16px;
    cursor: pointer;
}
@media(max-width: 991px) {
    .bins-form-wrapper form .location {
        flex: 1 1 100%;
        margin-right: 0;
    }
    .bins-form-wrapper form .location input {
        width: 100%;
    }
    .bins-form-wrapper form .dates {
        margin-top: 32px;
        flex: 1 1 100%;
        margin-right: 0;
    }
    .bins-form-wrapper form .dates .date {
        flex: 1 1 100%;
    }
    .bins-form-wrapper form .dates .date input {
        width: 100%;
        border-radius: 5px!important;
    }
}

.no-results {
    text-align: center;
}
.no-results.error {
    color: red;
}
.results-container {
    padding: 0;
}
.results {
    display: flex;
    flex-wrap: wrap;
    margin-left: -16px;
    margin-right: -16px;
    justify-content: center;
}
.results .bin {
    padding: 0 16px;
    margin-bottom: 32px;

    -ms-flex-preferred-size: 0;
    /* flex-basis: 0; */
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
    max-width: 33.333333%;
    display: flex;
    flex-direction: column;
}
@media(max-width: 991px) {
    .results .bin {
        max-width: 50%;
    }
}
@media(max-width: 767px) {
    .results .bin {
        max-width: 100%;
    }
}


.results .bin .hidden-data {
    display: none;
}
.results .bin .bin-content {
    border: 1px solid #ddd;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 40px 48px;
    height: 100%;
    text-align: center;
}

.results .bin-title {
    color: #08AC3A;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.results .bin-image {
    height: 128px;
}

.results .bin-description {
    font-size: 20px;
    color: rgb(6, 14, 30);
    margin-bottom: 8px;
    font-weight: 400;
    text-align: center;
}
.results .more-details {
    font-size: 16px;
    text-align: center;
    display: block;
}

.results .bin-content-footer {
    border: 1px solid #ddd;
    border-top: none;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 24px 32px;
    display: flex;
}
.results .bin-content-footer .price-wrapper {
    flex: 1;
}
.results .bin-content-footer .price-wrapper .price {
    font-size: 30px;
    line-height: 1;
}
.results .bin-content-footer .price-wrapper .days-count {
    font-size: 16px;
    line-height: 1;
    color: #08AC3A;
}
.results .bin-content-footer .book {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #08AC3A;
    border-radius: 5px;
    border: none;
    padding: 12px 24px;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
}

.results .bin-content-footer .book span:first-of-type {
    display: block;
    margin-right: 10px;
}

.lightpick__previous-action, 
.lightpick__next-action {
    padding: 0;
}

body.panel-open {
    overflow-y: hidden;
    /* pointer-events: none; */
}
.panels .panel-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: -1;
    opacity: 0;
    transition: all 0.3s linear;
}
.panels .panel-backdrop.open {
    z-index: 1000;
    opacity: 1;
}
.panels .panel {
    background: #fff;
    width: 700px;
    height: 100%;
    padding: 0 60px 60px 60px;
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    overflow-y: auto;
    z-index: 1050;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

.panels .panel.open {
    right: 0;
    transform: translateX(0);
}

.panel .panel-head {
    position: sticky;
    top: 0;
    padding: 60px 0 16px 0;
    background: #fff;
}
.panel .panel-head .title {
    font-size: 24px;
    line-height: 32px;
}
.panel .panel-head .close-panel {
    cursor: pointer;
    position: absolute;
    right: 0;
    bottom: 16px;
}
.panel .panel-head .close-panel svg {
    width: 24px;
    height: 24px;
}
.panel .panel-head .close-panel:hover svg {
    stroke: #08AC3A;
}

.panel .panel-head .back {
    cursor: pointer;
    display: inline-block;
}
.panel .panel-head .back:hover svg path {
    fill: #08AC3A;
}

.panel .bin-btn {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #08AC3A;
    border-radius: 5px;
    border: none;
    padding: 12px 24px;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
}

.panel .bin-btn span:first-of-type {
    display: block;
    margin-right: 10px;
}

.panel .footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .panels .panel {
        width: 100%;
        padding: 0 20px 60px 20px;
    }
    .panel .panel-head {
        padding-top: 16px;
    }
}

/* Checkout panel */
.panel#bin-checkout .bin-info {
    display: flex;
    align-items: center;
    padding: 40px 24px;
    border: 1px solid rgb(221, 221, 221);
    border-radius: 6px;
    margin-bottom: 40px;
    margin-top: 48px;
}
.panel#bin-checkout .bin-info .bin-image {
    max-width: 192px;
}
.panel#bin-checkout .bin-info .bin-text {
    padding-left: 48px;
}
.panel#bin-checkout .bin-info .bin-title {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 8px;
    color: #08AC3A;
}
.panel#bin-checkout .bin-info .price-container {
    display: flex;
    align-items: center;
}
.panel#bin-checkout .bin-info .bin-price {
    font-size: 30px;
    line-height: 36px;
    color: rgb(6, 14, 30);
}
.panel#bin-checkout .bin-info .bin-days-count {
    font-size: 16px;
    line-height: 24px;
    color: rgb(6, 14, 30);
    padding-left: 16px;
}
.panel#bin-checkout .footer .total {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.panel#bin-checkout .footer .total .text {
    font-size: 16px;
    line-height: 24px;
    color: rgb(6, 14, 30);
}
.panel#bin-checkout .footer .total .price {
    font-size: 30px;
    line-height: 36px;
    color: rgb(6, 14, 30);
    padding-left: 12px;
}
.panel#bin-checkout .faq .question {
    border-bottom: 1px solid rgb(229, 231, 235);
    margin-bottom: 48px;
    font-size: 16px;
    line-height: 24px;
    color: rgb(64, 64, 64);
}
.panel#bin-checkout .faq .question .header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
    cursor: pointer;
}
.panel#bin-checkout .faq .question .header .icon {
    width: 24px;
    height: 24px;
    transition: all 0.2s linear;
}
.panel#bin-checkout .faq .question .header.open .icon {
    transform: rotate(-180deg);
}
.panel#bin-checkout .faq .question .answer {
    padding-bottom: 20px;
    display: none;
}
@media (max-width: 767px) {
    .panel#bin-checkout .bin-info {
        flex-wrap: wrap;
    }
    .panel#bin-checkout .bin-info .bin-image {
        margin: 0 auto 30px auto;
    }
    .panel#bin-checkout .bin-info .bin-text {
        padding-left: 0;
        width: 100%;
        flex: 1 0 100%;
    }
}

/* Details panel */
.panel#bin-details .request {
    display: none;
}
.panel#bin-details .request.open {
    display: block;
}
.panel#bin-details .details .bin-title {
    font-size: 18px;
    line-height: 27px;
    color: #08AC3A;
    margin-bottom: 8px;
}
.panel#bin-details .details .bin-description {
    font-size: 24px;
    line-height: 33px;
    color: #000;
    margin-bottom: 16px;
}
.panel#bin-details .details .bin-description-2 {
    font-size: 16px;
    line-height: 24px;
    color: rgb(64, 64, 64);
    margin-bottom: 24px;
}
.panel#bin-details .details .bin-features {
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: 1px solid rgb(221, 221, 221);
}
.panel#bin-details .details .bin-features .title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: rgb(64, 64, 64);
    margin-bottom: 16px;
}
.panel#bin-details .details .bin-features .tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.panel#bin-details .details .bin-features .tags .tag {
    padding: 8px;
    border-radius: 9999px;
    color: #08AC3A;
    background: rgba(8, 172, 58, 0.1);
    margin-right: 20px;
    font-size: 12px;
    line-height: 1;
    min-width: 128px;
    text-align: center;
}
.panel#bin-details .details .bin-dimensions-wrapper {
    display: flex;
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: 1px solid rgb(221, 221, 221);
}
.panel#bin-details .details .bin-dimensions {
    width: 40%;
    padding-right: 16px;
}
.panel#bin-details .details .bin-dimensions .title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: rgb(64, 64, 64);
    margin-bottom: 16px;
}
.panel#bin-details .details .bin-dimensions .label,
.panel#bin-details .details .bin-dimensions .text {
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
}
.panel#bin-details .details .bin-dimensions .label {
    color: #08AC3A;
}
.panel#bin-details .details .bin-dimensions .text {
    color: rgb(64, 64, 64);
}
.panel#bin-details .details .bin-image {
    width: 60%;
    height: 155.562px;
    object-fit: contain;
}
.panel#bin-details .details .dimensions-info {
    font-size: 12px;
    line-height: 16px;
    color: #000;
    margin-bottom: 24px;
}
.panel#bin-details .details .important-info {
    padding: 24px;
    border: 1px solid rgb(221, 221, 221);
    border-radius: 6px;
}
.panel#bin-details .details .important-info .head {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}
.panel#bin-details .details .important-info .head .title {
    color:#08AC3A;
    margin-left: 20px;
}
.panel#bin-details .details .important-info .head .icon svg {
    stroke:#08AC3A;
    vertical-align: middle;
}
.panel#bin-details .details .important-info .content {
    font-size: 16px;
    line-height: 24px;
    color: rgb(64, 64, 64);
}
.panel#bin-details .request {
    padding: 40px 0;
    border-top: 1px solid rgb(229, 231, 235);
    margin-top: 24px;
}
.panel#bin-details .request > .title {
    font-size: 48px;
    line-height: 60px;
    color: rgb(6, 14, 30);
    margin-bottom: 24px;
}
.panel#bin-details .request > .sub-title {
    font-size: 16px;
    line-height: 24px;
    color: rgb(64, 64, 64);
    margin-bottom: 32px;
}

.panel#bin-details form .el-group {
    margin-bottom: 12px;
}
.panel#bin-details form label {
    display: block;
    margin-bottom: 4px;
    font-size: 14.88px;
    font-weight: 400;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.panel#bin-details form input, 
.panel#bin-details form optgroup, 
.panel#bin-details form select, 
.panel#bin-details form textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    -webkit-filter: none;
    filter: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    vertical-align: middle;
    font-size: 16px;
    line-height: 18.4px;
}

.panel#bin-details form textarea,
.panel#bin-details form input {
    padding: 12px;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    transition: background 0.15s ease, border 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
    border: 1px solid rgb(230, 230, 230);
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.03), 0px 3px 6px rgba(0, 0, 0, 0.02);
    display: block;
    width: 100%;
}

.panel#bin-details form textarea:focus,
.panel#bin-details form input:focus {
    outline: 0px;
    border-color: rgba(183, 206, 229, 0.827);
    box-shadow: rgba(0, 0, 0, 0.03) 0px 1px 1px 0px, rgba(0, 0, 0, 0.02) 0px 3px 6px 0px, rgba(5, 115, 225, 0.086) 0px 0px 0px 1.03805px, rgba(0, 0, 0, 0.027) 0px 0.346015px 0.346015px 0px;
}

.panel#bin-details form input:read-only {
    background: rgb(247, 247, 247);
}


.panel#bin-details form .hidden {
    display: none;
}
.panel#bin-details form .btn-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 32px;
}
.panel#bin-details form #message {
    color: rgb(220, 55, 15);
}
.panel#bin-details #success {
    color: #08AC3A;
    display: none;
    text-align: center;
    font-size: 30px;
}
.panel#bin-details #success.show {
    display: block;
}

/* fix some issue on preprod/prod */
.site-content {
    width: 100vw;
}   
.ast-sticky-active {
    margin: 0!important;
}