/*!
 * 
 *   @bornfight/gocart v1.0.9
 *   
 * 
 *   Copyright (c) Bornfight (https://www.bornfight.com/)
 * 
 *   This source code is licensed under the MIT license found in the
 *   LICENSE file in the root directory of this source tree.
 *   
 */
 .go-cart__modal {
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 50;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 420px;
    height: 220px;
    background-color: #fff;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.go-cart__modal.is-open {
    opacity: 1;
    visibility: visible
}

.go-cart__overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 30;
    background-color: rgba(0, 0, 0, .4);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.go-cart__overlay.is-open {
    opacity: 1;
    visibility: visible
}

.go-cart__drawer {
    position: fixed;
    top: 0;
    right: -480px;
    z-index: 99999999;
    width: 100%;
    max-width: 440px;
    height: 100%;
    background-color: #fff;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.go-cart__drawer.is-open {
    -webkit-transform: translateX(-480px);
    transform: translateX(-480px)
}

.go-cart__drawer--left {
    right: auto;
    left: -480px
}

.go-cart__drawer--left.is-open {
    -webkit-transform: translateX(480px);
    transform: translateX(480px)
}

.go-cart__mini-cart {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 40;
    width: 480px;
    height: 480px;
    background-color: #fff;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    cursor: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.go-cart__mini-cart.is-open {
    opacity: 1;
    visibility: visible
}

.go-cart__empty {
    text-align: center;
    padding: 40px 0
}

.go-cart__trigger {
    position: relative;
    cursor: pointer
}

.go-cart__button {
    background: #000;
    color: #fff;
    padding: 20px 10px;
    text-align: center;
    cursor: pointer
}

.go-cart-modal {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

.go-cart-modal__close {
    position: absolute;
    z-index: 10;
    right: 20px;
    top: 20px;
    line-height: 0;
    cursor: pointer
}

.go-cart-modal__content {
    width: 100%;
    padding: 20px;
    text-align: center
}

.go-cart-modal__buttons {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 20px
}

.go-cart-drawer {
    position: relative;
    height: 100%;
    display: flex;
    flex-flow: column wrap;
    align-items: stretch;
    flex-direction: column;
}

.go-cart-drawer__header {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 30px
}

.go-cart-drawer__close {
    cursor: pointer;
    line-height: 0
    position: absolute;
}

.go-cart-drawer__content {
    height: auto;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 30px
}

.go-cart-drawer__subtotal {
    align-items: center;
    height: 50px;
    padding: 0 30px
}

.go-cart-drawer__footer,
.go-cart-drawer__subtotal {
    display: flex;
    justify-content: space-between;
    width: 100%;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.go-cart-drawer__footer {
    flex-direction: column;
    max-height: 100%;
    padding: 10px 30px
}

.go-cart-mini-cart {
    position: relative
}

.go-cart-mini-cart__content {
    position: relative;
    height: 330px;
    overflow: hidden;
    overflow-y: scroll;
    padding: 0 30px
}

.go-cart-mini-cart__subtotal {
    align-items: center;
    height: 50px;
    padding: 0 30px
}

.go-cart-mini-cart__footer,
.go-cart-mini-cart__subtotal {
    display: flex;
    justify-content: space-between;
    width: 100%;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.go-cart-mini-cart__footer {
    height: 100px;
    text-align: center;
    padding: 20px 30px
}

.go-cart-item__single {
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    padding: 15px 0;
    border-bottom: 1px solid #e2e1e1
}

.go-cart-item__info-wrapper {
    position: relative;
    display: flex
}

.go-cart-item__info {
    max-width: 250px;
    line-height: 1.18;
    padding: 10px 10px 10px 30px
}

.go-cart-item__image {
    width: 70px;
    height: 70px;
    max-width: 100%;
    max-height: 70px;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat
}

.go-cart-item__title {
    vertical-align: top;
    font-size: 16px;
}

.go-cart-item__variant {
    position: relative;
    top: 5px
}

.go-cart-item__quantity {
    position: relative;
    bottom: -10px;
    display: flex;
    align-items: center;
    right: 6px;
}

.go-cart-item__quantity-label {
    margin-right: 5px
}

.go-cart-item__quantity-number {
    width: 60px;
    height: 24px;
    margin: 0;
    text-align: center;
    font-size: 1rem;
    color: #000;
    border: none;
    outline: none;
    -moz-appearance: textfield
}

.go-cart-item__quantity-number::-webkit-inner-spin-button,
.go-cart-item__quantity-number::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    display: none
}

.go-cart-item__quantity-button {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f5f5f5;
    font-size: 1rem;
    padding: 0 5px;
    margin: 0 2px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.go-cart-item__price {
    position: absolute;
    bottom: 25px;
    right: 0;
    font-size: 15px;
}

.go-cart-item__remove {
    position: absolute;
    right: 0;
    top: 25px;
    cursor: pointer
}

.go-cart-modal-item {
    position: relative;
    display: flex
}

.go-cart-modal-item__info {
    max-width: 250px;
    padding: 10px 10px 10px 30px;
    line-height: 1.18
}

.go-cart-modal-item__image {
    width: 90px;
    height: 110px;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat
}


.go-cart-drawer__header h3 {
    text-align: center;
    width: 100%;
    margin: 0;
    font-size: 18px !important;
    font-weight: 700;
    color: #000000;
    text-align: center;
    padding: 0px;
    border: 0px !important;
    text-transform: uppercase !important;
    margin: 0 !important;
    padding: 0 !important;
    letter-spacing: 1px;
    line-height: 18px;
}
/*# sourceMappingURL=index.css.map */