#status.complete {

    border-left: 5px solid #62ce54;
    opacity: 1;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

#status.error {
    border-left: 5px solid #D35351;
    opacity: 1;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

#status {
    background: rgb(6, 21, 38, 0.9) none repeat scroll 0 0;
    bottom: 0;
    border-left: 5px solid #000;
    color: #ffffff;
    left: 10px;
    max-width: 300px;
    opacity: 0;
    padding: 15px 25px;
    position: fixed;
    -webkit-transition: transform 0.3s ease 0s, opacity 0.3s ease 0s;
    -webkit-transition: opacity 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
    transition: opacity 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s, opacity 0.3s ease 0s;
    transition: transform 0.3s ease 0s, opacity 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
    z-index: 10000000;

    -webkit-transform: translatey(100%);

    transform: translatey(100%);
}

/* popup */

@keyframes zoomInUp {
    from {
        transform: scale(0.97) translate3d(0, 16px, 0);
        opacity: 0;
    }

    to {
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-webkit-keyframes zoomInUp {
    from {
        transform: scale(0.97) translate3d(0, 16px, 0);
        opacity: 0;
    }

    to {
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes load {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

.af-popup {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow-x: auto;
    z-index: 1000;
    opacity: 0;
    transition: 0.25s ease;
}

.af-popup__bg {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 101;
    background-color: #000;
    transition: 0.3s ease;
    opacity: 0.75;
}

.af-popup__wrp {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -ms-flex-direction: column;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    z-index: 102;
    position: relative;
    min-height: 100%;
}

.af-popup--visible {
    opacity: 1;
}

.af-popup--mobile .af-popup__content {
    border-radius: 15px 15px 0 0;
}

.af-popup__content {
    border-radius: 4px;
    background: #fff;
    padding: 10px;
}

.af-popup__container {
    width: auto;
    max-width: 100%;
    margin: auto;
    padding: 50px 0;
    position: relative;
    animation: 0.2s ease 0.2s both zoomInUp;
    opacity: 0;
}

.af-popup__close {
    height: 24px;
    text-align: right;
    position: absolute;
    right: 15px;
    cursor: pointer;
    z-index: 101;
    top: 65px;
}

.af-popup__close svg {
    fill: #eee;
    width: 24px;
    height: 24px;
    stroke: #ccc;
    stroke-width: 2px;
}

.af-popup__close svg:hover {
    stroke: #222;
}

.af-spiner {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 105;
    background-color: #fff;
    position: relative;
}

.af-spiner::after {
    content: '';
    width: 40px;
    min-width: 40px;
    height: 40px;
    border: 3px solid #7B61FF;
    border-radius: 50%;
    border-left-color: transparent !important;
    transition: transform 0.5s linear;
    animation: 0.5s linear load infinite;
    display: inline-block;
    white-space: nowrap;
    flex-wrap: nowrap;
    position: relative;
}

.dark-mode .af-popup {
    background: rgba(17, 17, 17, 0.97);
}

.dark-mode .af-popup__content {
    background-color: transparent;
    padding: 10px 20px;
}

.dark-mode .af-popup__close {
    top: 20px;
    right: 20px;
}

/* =-========================================== */
/* =-========================================== */

.blocks-slide__price-rb.rb-price {
    display: flex;
    align-items: center;
}

.blocks-slide__wrapper-border-img {
    background-color: #A89869;
    padding: 5px 13px;
    border-radius: 20px;
    margin-right: 17px;
}


.popup-price {
    padding: 20px;
    width: 400px;
}

.popup-price__h2 {
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 15px;
}

.popup-price__desc {
    font-size: 14px;
    color: #555;
    padding-bottom: 20px
}

.popup-price__list .blocks-slide__wrapper-price {
    padding-left: 0
}



.blocks-slide__price-rb.rb-price img {
    margin-right: 14px;
}

.blocks-slide__price-rb.rb-price {
    padding: 5px 0;
}

@keyframes fade-drop-filter {
    from {
        opacity: 0;
        transform: translateY(10vh);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media screen and (max-width: 480px) {
    .popup-price {
        padding: 20px;
        width: calc(100vw - 20px);
    }

    .af-popup--mobile .af-popup__container {
        padding-bottom: 0;
        margin-bottom: 0;
        width: 100%;
        animation: 0.2s ease 0.2s both fade-drop-filter;
    }

    .af-popup__close {
        right: 10px;
    }
}