.cart {
    font-family: 'pangram-regular';
    font-size: 14px;
    color: #1f1c35;
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 70px);
    max-width: 1330px;
    background-color: #f6f7fb;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
}

.cart h2 {
    font-size: 16px;
    font-weight: bold;
}

.cart-wrapper {
    width: 100%;
    height: 100%;
    max-width: 1330px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 10%;
}

@media (max-width: 46.24em) {
    .cart-wrapper {
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        padding: 0;
    }
}

.cart-form-container {
    width: 574px;
    padding-left: 43px;
    margin-bottom: 215px;
}

@media (max-width: 46.24em) {
    .cart-form-container {
        width: 100%;
        padding: 12px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin-bottom: 75px;
    }
}

.cart-form-container--hidden {
    visibility: hidden;
}

.cart-form-go-back {
    margin-top: 17px;
    margin-bottom: 21px;
    margin-left: 12px;
    font-size: 11px;
    position: relative;
    cursor: pointer;
}

.cart-form-go-back:before {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border-left: 2px solid #1f1c35;
    border-top: 2px solid #1f1c35;
    -webkit-transform: rotateZ(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotateZ(-45deg);
    bottom: 4px;
    left: -8px;
    cursor: pointer;
}

.cart-form-title {
    margin-top: 0;
    margin-bottom: 7px;
}

.cart-form-fields-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (max-width: 46.24em) {
    .cart-form-fields-container {
        margin-bottom: 24px;
    }
}

.cart-form-fields-row {
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
    width: 100%;
}

.cart-form-fields-row .form-field:first-child {
    margin-right: 15px;
}

@media (max-width: 46.24em) {
    .cart-form-fields-row {
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 0px;
    }
    .cart-form-fields-row .form-field {
        margin-bottom: 6px;
    }
}

.cart-form-checkbox {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 26px;
}

.cart-form-checkbox:checked {
    margin-bottom: 0;
}

.cart-form-checkbox label {
    cursor: pointer;
    -webkit-user-select: none;
    /* Chrome/Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE10+ */
}

.cart-form-corporate {
    height: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 300ms all ease;
    -o-transition: 300ms all ease;
    transition: 300ms all ease;
}

.cart-form-checkbox--checked {
    margin-bottom: 0;
}

.cart-form-check {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 16px;
    width: 16px;
    background-color: #ffffff;
    border: solid 1px #dbdfe5;
    cursor: pointer;
    border-radius: 4px;
    position: relative;
    margin: 0;
    margin-right: 8px;
}

.cart-form-check:focus {
    outline: none;
}

.cart-form-check:checked {
    background-color: #2f2063;
}

.cart-form-check:checked:after {
    content: '\2714';
    position: absolute;
    color: white;
    left: 2px;
    top: -1px;
    font-size: 14px;
}

.cart-form-check--error {
    background-color: rgba(251, 106, 105, 0.3);
    border: solid 1px #fb6a69;
}

.cart-form-send-to-players-button {
    font-size: 14px;
    font-weight: bold;
    color: #1f1c35;
    width: 100%;
    height: 43px;
    border: solid 1px #1f1c35;
    border-radius: 500px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-user-select: none;
    /* Chrome/Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE10+ */
}

.cart-form-send-to-players-button img {
    margin-right: 12px;
}

.cart-form-send-to-players-button:hover {
    opacity: .8;
}

@media (max-width: 46.24em) {
    .cart-form-send-to-players-button {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 12px;
    }
}

.cart-form-send-to-players {
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}

.cart-form-send-to-players--hide {
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
    display: none;
}

.cart-summary {
    background-color: white;
    height: 100%;
    width: 353px;
    -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.13);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.13);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 215px;
}

@media (max-width: 46.24em) {
    .cart-summary {
        margin-bottom: 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        background-color: #EBEAFF;
    }
}

.cart-summary-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 46.24em) {
    .cart-summary-header {
        display: none !important;
    }
}

.cart-summary-header--mobile {
    font-size: 11px;
    background-color: #EBEAFF !important;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cart-summary-header--mobile p {
    position: relative;
}

.cart-summary-header--mobile .cart-summary-header-price {
    font-size: 15px;
    font-weight: bold;
}

@media (min-width: 46.25em) {
    .cart-summary-header--mobile {
        display: none !important;
    }
}

.reveal-order-arrow {
    border: solid #1f1c35;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: 3px;
    right: -20px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.reveal-order-arrow--up {
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
    top: 6px;
}

.cart-items-collapsible {
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    width: 100%;
    position: relative;
}

.cart-items-collapsible .cart-item:last-child {
    margin-bottom: 0;
}

@media (max-width: 46.24em) {
    .cart-items-collapsible {
        max-height: 0;
        display: none;
    }
}

.cart-summary-section {
    border-bottom: solid 1.5px #eff0f6;
    padding: 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 60px;
    background-color: white;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.cart-summary-section-label {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.cart-summary-section-label p {
    margin: 0;
    height: 16px;
}

.cart-summary-section--icon {
    height: 16px;
    width: 16px;
    margin-right: 6px;
    background-repeat: no-repeat;
    background-position: center center;
}

.cart-summary-coupon {
    height: 50px;
    background-color: white;
    -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.13);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.13);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 12px;
    position: relative;
}

.cart-summary-coupon:focus {
    border: 1px solid red;
}

.cart-summary-coupon input {
    margin-left: 40px;
    opacity: 0.55;
    font-family: "pangram-regular";
    font-size: 13px;
    -webkit-appearance: none;
    outline: none;
    border: none;
}

.cart-summary-coupon span {
    height: 31px;
    width: 31px;
    position: absolute;
}

@media (max-width: 46.24em) {
    .cart-summary-coupon {
        display: none !important;
    }
}

.cart-summary-coupon--mobile {
    display: none !important;
}

@media (max-width: 46.24em) {
    .cart-summary-coupon--mobile {
        display: -ms-flexbox !important;
        display: flex !important;
        padding: 0 6px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: calc(100% - 12px);
        left: 6px;
    }
    .cart-summary-coupon--mobile span {
        top: 8px;
    }
}

.cart-summary-coupon-total-price--mobile {
    display: none;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media (max-width: 46.24em) {
    .cart-summary-coupon-total-price--mobile {
        display: -ms-flexbox !important;
        display: flex !important;
    }
}

.cart-summary-coupon--has-coupon-top {
    margin-bottom: 0;
}

.cart-summary-coupon--valid {
    color: #bca292;
    display: -ms-flexbox;
    display: flex;
}

.cart-summary-coupon--valid p {
    margin-top: 0;
    margin-bottom: 0;
}

.cart-summary-coupon--valid-code {
    margin-left: 40px;
    font-size: 13px;
    font-weight: bold;
}

.cart-summary-coupon--valid-discount {
    font-size: 18px;
    font-weight: bold;
    line-height: 0.67;
}

.cart-summary-coupon--invalid-message {
    color: red;
    font-size: 11px;
    width: 353px;
    text-align: center;
    margin: 0;
    margin-bottom: 12px;
    position: absolute;
    top: 2px;
}

@media (max-width: 46.24em) {
    .cart-summary-coupon--invalid-message {
        display: none;
    }
}

.cart-summary-coupon--invalid-message--mobile {
    width: 100%;
    display: inline-block !important;
    bottom: 42px;
    top: auto;
}

@media (min-width: 61.25em) {
    .cart-summary-coupon--invalid-message--mobile {
        display: none !important;
    }
}

.cart-summary-fixed {
    position: fixed;
    bottom: 0;
    background-color: white;
}

@media (max-width: 46.24em) {
    .cart-summary-fixed {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
    }
}

.cart-summary-coupon-submit {
    height: 37px;
    background-color: #dde1f4;
    border-radius: 2px;
    padding: 12px 8px;
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    font-size: 12px;
    font-weight: bold;
}

.cart-summary-coupon-submit:hover {
    opacity: .8;
}

.cart-summary-total-price {
    background-color: white;
    -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.13);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.13);
    padding: 12px 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 353px;
}

.cart-summary-total-price label {
    font-size: 11px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 12px;
}

@media (max-width: 46.24em) {
    .cart-summary-total-price {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
    }
}

.cart-cta {
    text-transform: uppercase;
    color: white;
    height: 45px;
    background-color: #bca292;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 67px;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-user-select: none;
    /* Chrome/Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE10+ */
    border-radius: 4px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

@media (max-width: 46.24em) {
    .cart-cta {
        padding: 0 46px;
    }
}

.cart-cta--disabled {
    background-color: #dcdcdc;
}

.cart-summary-error {
    color: white;
    background-color: #fb6a69;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.cart-summary-error p {
    font-size: 11px;
    font-weight: bold;
}

// WEBPACK FOOTER //
// ./src/styles/Cart.css