.vshop_container {
    background-color: #151515;
    padding: 0 5px;
    position: relative;
}

.vshop_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 25px;
    padding: 10px;
}

.vshop_header .vshop_basket {
    position: relative;
    cursor: pointer;
}

.vshop_header .vshop_basket #vshop_cart_items_count {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 15px;
    z-index: 1;
    background-color: red;
    border-radius: 10px;
    padding: 0 7px;
}

.vshop_header .vshop_basket #vshop_cart_confirmation {
    position: absolute;
    bottom: -40px;
    right: 0;
    font-size: 15px;
    z-index: 1;
    background-color: black;
    border-radius: 4px;
    padding: 7px;
    width: 200px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s;
    cursor: default;
}

.vshop_header .vshop_basket img {
    width: 40px;
}

.vshop_body {
    padding: 0 10px 10px 10px;
}

.vshop_item_list {
    display: flex;
    flex-wrap: wrap;
    padding: 0 5px 10px 5px;
}

.vshop_product {
    /*width: 241px;*/
    width: calc(20% - 10px);
    background-color: black;
    margin: 5px;
    text-align: center;
}

.vshop_product .vshop_product_thumbnail {
    position: relative;
}

.vshop_product .vshop_product_thumbnail .vshop_product_thumbnail_overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #000000cc;
    opacity: 0;
    padding: 10px;
    transition: opacity 500ms;
    overflow: auto;
}

.vshop_product .vshop_product_thumbnail .vshop_product_thumbnail_overlay:hover {
    opacity: 1;
}

.vshop_product .vshop_product_thumbnail .vshop_product_thumbnail_img {
    width: 100%;
    /*height: 200px;*/
}

.vshop_product .vshop_product_thumbnail .vshop_product_lock_icon {
    display: none;
    position: absolute;
    bottom: 5px;
    right: 5px;
}

.vshop_product .vshop_product_title {
    display: block;
    padding: 5px;
    overflow: hidden;
}

.vshop_product .vshop_product_price {
    display: block;
    padding: 10px 0;
    font-size: 27px;
}

.vshop_product .vshop_product_button {
    text-transform: uppercase;
    padding: 10px;
}

.vshop_product .vshop_product_add_to_cart, .vshop_product .vshop_product_login {
    background-color: #7db110;
    cursor: pointer;
}

.vshop_product .vshop_product_add_to_cart:hover, .vshop_product .vshop_product_login:hover {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    background: #94D30E;
}

.vshop_product .vshop_product_coins_needed {
    background-color: #b9b9b9;
    color: #303030;
    display: none;
}

.vshop_product_locked .vshop_product_add_to_cart {
    display: none;
}

.vshop_product_locked .vshop_product_coins_needed {
    display: block;
}

.vshop_product_locked .vshop_product_thumbnail .vshop_product_lock_icon {
    display: block;
}

.vshop_body .vshop_button {
    text-decoration: none;
    width: fit-content;
    padding: 5px 25px;
    margin-bottom: 5px;
    outline: none;
    text-transform: uppercase;
    font-size: 17px;
    display: inline-block;
    text-align: center;
    background: #565656;
    border: none;
    color: white;
    cursor: pointer;
}

.vshop_body .vshop_button:hover {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    background: #717171;
}

.vshop_body .vshop_button_green {
    background: #7DB110;
}

.vshop_body .vshop_button_green:hover {
    background: #94D30E;
}

.vshop_body .vshop_button_small {
    padding: 1px 10px;
}

.vshop_body .vshop_basket_empty {
    display: flex;
    justify-content: center;
}

.vshop_body .vshop_basket_empty p {
    margin: 20px 0 75px 0;
    width: 560px;
    text-align: center;
}

.vshop_body .vshop_title {
    font-weight: bold;
    font-size: 20px;
}

.vshop_loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    display: none;
}

.vshop_loading img {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    /*width: 200px;*/
    /*height: 200px;*/
}

.vshop_maintenance {
    text-align: center;
    margin: 75px 0;
    padding: 5px;
}

.reg_cont_popup_holder {
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    z-index: 100;
    background: rgba(21, 21, 21, 0.55);
    top: 0;
    left: 0;
}

@media (max-width: 1024px) {
    .reg_cont_popup_holder .container-fluid {
        width: 100%;
        padding: 0;
    }
}

.reg_cont_popup_holder .reg_popup_wait {
    max-width: 515px;
    width: 100%;
    margin: 0 auto;
    display: block;
    position: fixed;
    background: #fff;
    top: 50%;
    margin-top: -240px;
    left: calc(-50vw + 50%);
    right: calc(-50vw + 50%);
}

@media (max-width: 1024px) {
    .reg_cont_popup_holder .reg_popup_wait {
        max-width: 100%;
        top: 0;
        left: 0;
        margin-left: 0;
        margin-top: 0;
    }
}

@media (max-width: 500px) {
    .reg_cont_popup_holder .reg_popup_wait .popup_header {
        padding-right: 20px !important;
        padding-left: 10px !important;
    }
}

@media (max-width: 736px) {
    .reg_cont_popup_holder .reg_popup_wait {
        overflow-y: scroll;
    }
}

.reg_cont_popup_holder .reg_popup_wait .popup_header {
    background: #000000;
    display: block;
    position: relative;
    padding-bottom: 35px;
    padding-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
    width: 100%;
}

.reg_cont_popup_holder .reg_popup_wait .popup_header .steps_title {
    color: #FF6B00;
    font-size: 19px;
    margin-bottom: 0;
    display: block;
    text-align: center;
}

.reg_cont_popup_holder .reg_popup_wait .popup_main_content {
    width: 100%;
    display: block;
    position: relative;
    padding: 20px 25px 25px;
}

.reg_cont_popup_holder .reg_popup_wait .popup_main_content .steps_title {
    color: #000000;
    font-size: 14px;
    margin-bottom: 0;
    display: block;
    text-align: center;
    font-family: 'dinregular', Arial, helvetica, sans-serif;
    text-transform: none !important;
}

.reg_cont_popup_holder .reg_popup_wait .popup_main_content .steps_title2 {
    color: #000000;
    font-size: 16px;
    margin-bottom: 0;
    display: block;
    text-align: left;
    font-family: 'dinregular', Arial, helvetica, sans-serif;
    text-transform: none !important;
}

@media (max-width: 1024px) {
    .reg_cont_popup_holder .reg_popup_wait .popup_main_content {
        max-width: 800px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 800px) {
    .reg_cont_popup_holder .reg_popup_wait .popup_main_content {
        max-width: 600px;
        width: 100%;
    }


}

.reg_cont_popup_holder .reg_popup_wait .bottom_row {
    padding-bottom: 20px;
}

.reg_cont_popup_holder .reg_popup_wait .bottom_row .button_holder {
    padding-bottom: 20px;
    text-align: center;
}

.reg_cont_popup_holder .reg_popup_wait .bottom_row .button_holder button {
    text-transform: uppercase;
    padding: 10px;
    color: #ffffff;
    border: none;
    font-size: 15px;
    width: 200px;
}

@media (max-width: 1024px) {
    .reg_cont_popup_holder .reg_popup_wait .bottom_row .button_holder {
        float: none;
        text-align: center;
        text-transform: uppercase;
    }
}

.reg_cont_popup_holder .reg_popup_wait .form_title_holder {
    float: left;
    width: 100%;
    display: block;
}

.limit_link {
    color: #000;
    text-decoration: underline;
}

@keyframes slideToCart {
    from {
        top: var(--startTop);
        left: var(--startLeft);
        width: 200px;
        height: 200px;
    }
    to {
        top: var(--targetTop);
        left: var(--targetLeft);
        width: 0;
        height: 0;
    }
}

.slideToCart {
    --startTop: 0;
    --startLeft: 0;
    --targetTop: 500px;
    --targetLeft: 500px;
    position: fixed;
    z-index: 5;
    animation-name: slideToCart;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    transition-timing-function: cubic-bezier(.9, 0, .43, .67);
}

@media (max-width: 1500px) {
    .vshop_product {
        width: calc(50% - 10px);
    }

    .vshop_product .vshop_product_price {
        font-size: 22px;
    }

    .vshop_header {
        font-size: 20px;
    }
}

#bechargeDown{
    margin: 30px 0;
}