#cart-item-template {
    display: none;
}

#cart-overlay {
    position: fixed;
    background: rgba(0, 0, 0, .75);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#cart-layer {
    max-width: 400px;
    background: #efefef;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
    max-height: calc(100% - 100px);
    padding: 15px;
}

.cart-layer__header, .cart-layer__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

#cart-layer .fa-times {
    margin-left: 75px;
    font-size: 18px;
    cursor: pointer;
}

#cart-layer h4 {
    color: #129dd2;
    margin: 0;
}

#cart-layer h5, #cart-layer h6 {
    font-size: 16px;
}

#cart-layer h6 {
    font-weight: normal;
}

#cart-layer p, #cart-layer p strong {
    color: #666;
}

.cart-layer__footer h4:first-child {
    margin-right: 75px !important;
    font-weight: normal;
}

.cart-layer__footer h4:first-child strong {
    color: #129dd2;
}

#cart-layer .primary-btn {
    width: 100%;
}