.btn-orange {
    background-color: #E1943F;
    color: #FFF;
}

#ac-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    z-index: 1001;
}

#ac-wrapper-checkout {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    z-index: 1001;
}

#ac-wrapper-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    z-index: 1001;
}

#popup {
    width: 60%;
    background: #f6f6f6;
    border-radius: 25px;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    box-shadow: #64686e 0px 0px 3px 3px;
    -moz-box-shadow: #64686e 0px 0px 3px 3px;
    -webkit-box-shadow: #64686e 0px 0px 3px 3px;
    position: relative;
    top: 20%;
    left: 20%;
    padding: 25px;
}

#popup-checkout {
    width: 60%;
    background: #f6f6f6;
    border-radius: 25px;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    box-shadow: #64686e 0px 0px 3px 3px;
    -moz-box-shadow: #64686e 0px 0px 3px 3px;
    -webkit-box-shadow: #64686e 0px 0px 3px 3px;
    position: relative;
    top: 20%;
    left: 20%;
    padding: 25px;
}

#popup-loader {
    background: rgba(0, 0, 0, 0);
    position: absolute;
    top: 45%;
    left: 45%;
}

#popup-paid {
    width: 60%;
    background: #f6f6f6;
    border-radius: 25px;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    box-shadow: #64686e 0px 0px 3px 3px;
    -moz-box-shadow: #64686e 0px 0px 3px 3px;
    -webkit-box-shadow: #64686e 0px 0px 3px 3px;
    position: relative;
    top: 20%;
    left: 20%;
    padding: 25px;
}

.popup-logo {
    width: 40px;
    left: 8px;
}

.select-head {
    color: #4D4D4E;
    margin-left: 12%;
}

.select-empty {
    margin-left: 6%;
}

.close-button {
    position: absolute;
    right: 8px;
    font-size: 20px;
    cursor: pointer;
}

#ac-wrapper:not([style])~* {
    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(2px);
}

#ac-wrapper-checkout:not([style])~* {
    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(2px);
}

#ac-wrapper-loader:not([style])~* {
    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(2px);
}

.loader {
    border: 20px solid #f3f3f3;
    border-top: 20px solid #E1943F;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}