.buynow-button {
    user-select: none;
    float: left;
    background-color: #262626;
    cursor: pointer;
    color: #fff;
    height: 35px;
    padding: 0 14px;
    line-height: 35px;
    font-size: 14px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0,0,0,.2);
}
.buynow-button:hover {
    background-color: #111;
}
.select-address {
    display: block;
    background: #f5f5f5;
    padding: 15px;
    padding-left: 35px !important;
    border-radius: 6px;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.1);
}
#buynow-iframe {
    width: 100%;
    border: 0;
    display: flex;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.buynow-footer {
    background-color: #f0f0f0;
}
.buynow-footer .link {
    color: #999;
}
.buynow-footer .btn-primary {
    border: 0;
    padding: 14px 26px;
    font-size: 16px;
    background-color: #262626 !important;
}
.buynow-footer .btn-primary:hover {
    border: 0;
    padding: 14px 26px;
    font-size: 16px;
    background-color: #111 !important;
}
#buynow-loading {
    position: absolute;
    z-index: 10;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255,255,255,.7);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
#buynow-modal {
    background-color: rgba(0, 0, 0, 0.6);
}
#buynow-modal .modal-header {
    background-color: #f0f0f0;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom: 0;
}
#buynow-modal .buynow-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,.1);
    padding: 10px;
    border: solid 5px #fff;
}
#buynow-modal-content {
    position: relative;
    min-height: 300px;
}
#buynow-loading {
    position: absolute;
    z-index: 10;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#buynow-modal .buynow-title {
    font-size: 16px;
    font-weight: 700;
}
#buynow-modal .buynow-sku {
    font-size: 14px;
}
.buynow-spinner {
    width: 70px;
    text-align: center;
}
.buynow-spinner > div {
    width: 18px;
    height: 18px;
    background-color: #e4001b;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.buynow-spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}
.buynow-spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0) }
    40% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bouncedelay {
    0%, 80%, 100% { 
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% { 
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}
