.price {
    display: none;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 79px;
    height: 53px;
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}

.cart-proxy-form {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 6px;
    min-width: 335px;
}

.cart-proxy-form .form-group {
    position: relative;
    margin-bottom: 15px;
}

.cart-proxy-form .form-control {
    background-color: #fff;
    height: 2.5rem;
    color: #191a1e;
    border: none;
    font-size: 1rem;
    font-weight: 400;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: .7rem;
    width: 100%;
}

.cart-proxy-form .form-control::-webkit-input-placeholder {
    color: rgba(82, 82, 84, 0.4);
}

.cart-proxy-form .form-control:-ms-input-placeholder {
    color: rgba(82, 82, 84, 0.4);
}

.cart-proxy-form .form-control::placeholder {
    color: rgba(82, 82, 84, 0.4);
}

.cart-proxy-form input[type="date"].form-control:invalid {
    color: rgba(82, 82, 84, 0.4);
}

.cart-proxy-form select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.cart-proxy-form select.form-control + .select-arrow {
    position: absolute;
    right: 10px;
    bottom: 6px;
    width: 32px;
    line-height: 32px;
    height: 32px;
    text-align: center;
    pointer-events: none;
    color: rgba(0, 0, 0, 0.3);
    font-size: 14px;
}

.cart-proxy-form select.form-control + .select-arrow:after {
    content: '\279C';
    display: block;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.cart-proxy-form .form-label {
    display: block;
    margin-left: 20px;
    margin-bottom: .1rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 24px;
    height: 24px;
    font-size: .7rem;
    color: #fff;
}

.cart-proxy-form .form-checkbox input {
    position: absolute !important;
    margin-left: -9999px !important;
    visibility: hidden !important;
}

.cart-proxy-form .form-checkbox label {
    position: relative;
    padding-top: 4px;
    padding-left: 30px;
    font-weight: 400;
    color: #fff;
}

.cart-proxy-form .form-checkbox label + label {
    margin-left: 15px;
}

.cart-proxy-form .form-checkbox input + span {
    position: absolute;
    left: 2px;
    top: 4px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
}

.cart-proxy-form .form-checkbox input + span:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0px;
    height: 0px;
    border-radius: 50%;
    background-color: #f23e3e;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.cart-proxy-form .form-checkbox input:not(:checked) + span:after {
    opacity: 0;
}

.cart-proxy-form .form-checkbox input:checked + span:after {
    opacity: 1;
    width: 10px;
    height: 10px;
}

.cart-proxy-form .form-btn {
    margin-top: 27px;
}

.cart-proxy-form .submit-btn,
.cart-proxy-form .add-btn {
    color: #fff;
    background-color: #f23e3e;
    font-weight: 400;
    height: 2.5rem;
    font-size: 13px;
    border: none;
    width: 100%;
    border-radius: .7rem;
    text-transform: uppercase;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    margin-top: 25px;
    text-align: center;
    cursor: pointer;
    line-height: 18px;
}

.add-btn {
    text-align: center;
}

.cart-proxy-form .submit-btn:hover,
.cart-proxy-form .submit-btn:focus,
.cart-proxy-form .add-btn:hover,
.cart-proxy-form .add-btn:focus {
    opacity: .8;
}

.to-cart-btn {
    font-size: .7rem;
}

#buy {
    z-index: 1;
    position: relative;
}

#buy::after {
    content: '';
    -webkit-animation: cta .9s infinite;
            animation: cta .9s infinite;
    display: inline-block;
    background-color: #f23e3e;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
    border-radius: 0.7rem;
}

@-webkit-keyframes cta {
    from {
        -webkit-transform: scaleX(.5) scaleY(.7);
                transform: scaleX(.5) scaleY(.7);
        opacity: 1;
    }
    to {
        -webkit-transform: scaleX(1.2) scaleY(1.4);
                transform: scaleX(1.2) scaleY(1.4);
        opacity: 0;
    }
}

@keyframes cta {
    from {
        -webkit-transform: scaleX(.5) scaleY(.7);
                transform: scaleX(.5) scaleY(.7);
        opacity: 1;
    }
    to {
        -webkit-transform: scaleX(1.2) scaleY(1.4);
                transform: scaleX(1.2) scaleY(1.4);
        opacity: 0;
    }
}
