:root {
    --tsg-blue: #265398;
    --alizarin-red: #e74c3c;
    --carrot-orange: #e67e22;
    --emerald-green: #2ecc71;
    --custom-box-shadow: 0 0.313rem 0.625rem 0 rgba(0, 0, 0, 0.12);
}

body {
    padding-bottom: 10vh;
}

/** Helper Classes **/
.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 20px 0;
}


/** Main **/

.summary {
    width: 100%;
    background: #fff;
    height: 100vh;
    position: fixed;
    z-index: 1001 !important;
    box-shadow: var(--custom-box-shadow);
}

.summary.summary-open {
    top: 0;
    transition: all 0.5s;
}

.summary.summary-closed {
    top: 91.5%;
    transition: all 0.5s;
}

.summary .summary-price {
    color: #fff;
    border-bottom: 1px solid #fff;
    background: var(--tsg-blue);
    box-shadow: var(--custom-box-shadow);
}

.summary .summary-price .summary-toggle {
    padding: 10px 15px;
}

.summary .summary-price .price {
    font-weight: bold;
    font-size: 24px;
}

.summary .summary-item-list {
    height: 100%;
    overflow-y: scroll;
}