/* -------------------------------------------- */
/*        Created with ♥ by MVaR Team           */
/* Additional information on https://maksvar.ru */
/* -------------------------------------------- */
/*                                              */
/*         © Copyright 2023, RobuxPay           */
/* -------------------------------------------- */

/* Content */

.main-info-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
    text-shadow: var(--bolder-shadow);
}

.main-info-block > picture img {
	width: 750px;
}

.main-info {
	margin: 0 auto;
}

.main-info .info1 {
    color: var(--line);
	font-size: 84px;
	text-shadow: 0 0 1px black,
                 0 0 10px var(--line),
                 0 0 20px var(--line);
}

.main-info .info2 {
	font-size: 74px;
}

.site-stats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 800px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    margin: 90px auto 60px;
    padding: 15px 40px;
    border-radius: 20px;
    background: var(--background);
    text-shadow: var(--shadow);
    border: 3px solid var(--line);
    -webkit-box-shadow: 0 0 10px 3px var(--line),
            inset 0 0 10px 3px var(--line);
            box-shadow: 0 0 10px 3px var(--line),
            inset 0 0 10px 3px var(--line);
}

.site-stats > span {
    width: 2px;
    height: 75px;
    background: var(--text);
}

.site-stat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.site-stat-text {
    font-size: 23px;
    text-align: center;
}

.site-stat svg {
    width: 60px;
    height: 60px;
    margin-right: 25px;
}

.site-stat-header {
    color: var(--line);
    text-shadow: 0 0 1px black,
             0 0 9px var(--line);
    -webkit-animation: blink_text ease-in-out 5s infinite;
            animation: blink_text ease-in-out 5s infinite;
}

@-webkit-keyframes blink_text {
    0%, 80% {
        color: var(--line);
    }
    90% {
        color: var(--text)
    }
    100% {
        color: var(--line);
    }
}

@keyframes blink_text {
    0%, 80% {
        color: var(--line);
    }
    90% {
        color: var(--text)
    }
    100% {
        color: var(--line);
    }
}

.go-to-buy {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    text-align: center;
    margin: 0 auto;
    font-size: 28px;
    text-decoration: none;
    position: relative;
    padding-bottom: 60px;
	text-shadow: var(--bolder-shadow);
	-webkit-transition: color .3s;
	-o-transition: color .3s;
	transition: color .3s;
}

.go-to-buy:hover {
    color: var(--line);
}

.go-to-buy span {
    position: absolute;
    left: 50%;
    width: 24px;
    height: 24px;
    margin-left: -12px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    -webkit-animation: sdb07 2s infinite;
    animation: sdb07 2s infinite;
    opacity: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: border-left-color .3s, border-bottom-color .3s;
    -o-transition: border-left-color .3s, border-bottom-color .3s;
    transition: border-left-color .3s, border-bottom-color .3s;
}

.go-to-buy:hover span {
    border-left-color: var(--line);
    border-bottom-color: var(--line);
}

.go-to-buy span:nth-of-type(1) {
    top: 32px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
.go-to-buy span:nth-of-type(2) {
    top: 48px;
    -webkit-animation-delay: .15s;
    animation-delay: .15s;
}
.go-to-buy span:nth-of-type(3) {
    top: 64px;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

@-webkit-keyframes sdb07 {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes sdb07 {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Buy form */

.buy-block {
    position: relative;
    width: 1200px;
    padding: 20px 20px 0 0;
    background: -o-linear-gradient(#00A51E, #44B555);
    background: -webkit-gradient(linear, left top, left bottom, from(#00A51E), to(#44B555));
    background: linear-gradient(#00A51E, #44B555);
    border-radius: 25px;
    margin: 20px auto 0;
    -webkit-box-shadow: 7px 9px 3px rgba(0,0,0, 0.3);
            box-shadow: 7px 9px 3px rgba(0,0,0, 0.3);
}

#buyrobux {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 25px;
}

.buy-main {
    background-image: url('/static/assets/form_back.webp');
    background-size: 100% 100%;
    background-position: bottom;
    padding: 10px 0 15px 20px;
    border-bottom-left-radius: 25px;
    border-top-left-radius: 25px;
}

.buy-available {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 5px auto 35px;
    font-size: 28px;
    padding: 0 15px 10px;
    border-bottom: 2px solid var(--text);
    -webkit-filter: drop-shadow(var(--bolder-shadow));
            filter: drop-shadow(var(--bolder-shadow));
}

.buy-available span {
    margin-left: 20px;
}

.buy-input-block {
    position: relative;
}

.buy-input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 70%;
    margin: 20px auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: var(--background);
    padding: 15px 20px;
    border-radius: 20px;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

.buy-input.fail input {
    color: var(--red);
}

.buy-input.fail svg {
    fill: var(--red);
}

.buy-input-error {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 16px;
    text-shadow: none;
    color: var(--red);
}

.buy-input input {
    width: 100%;
    font-size: 24px;
    background: none;
}

.buy-input label svg {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    -webkit-transition: fill .3s;
    -o-transition: fill .3s;
    transition: fill .3s;
}

.buy-info-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 70%;
    margin: 40px auto 30px;
    background: var(--background);
    padding: 15px 20px;
    border-radius: 20px;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.buy-info-block svg {
    width: 70px;
    height: 70px;
    fill: var(--red);
    margin-right: 15px;
}

.buy-info-block h3 {
    color: var(--red);
    font-size: 20px;
    text-align: center;
}

.submit-buy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 15px 25px;
    margin: 0 auto 30px;
    background: var(--background);
    font-size: 26px;
    border-radius: 15px;
    cursor: pointer;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    -webkit-transition: background-color .5s;
    -o-transition: background-color .5s;
    transition: background-color .5s;
}

.submit-buy:hover {
    background: var(--line);
}

.submit-buy.mobile-buy {
    display: none;
}

.submit-buy svg {
    width: 35px;
    height: 35px;
    margin-right: 20px;
}

.buy-agreetment {
    width: 90%;
    margin: 0 auto;
    font-size: 14px;
    text-align: center;
    text-shadow: var(--bolder-shadow);
}

.buy-agreetment.mobile-buy {
    display: none;
}

.buy-agreetment a {
    color: var(--line);
}


.buy-select-method {
    width: 70%;
    background: var(--background);
    border-radius: 20px;
    padding: 20px 30px;
    margin-bottom: 20px;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.buy-title {
    display: block;
    color: var(--text);
    font-size: 22px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--text);
    margin-bottom: 20px;
}

.methods-wrapper {
    max-height: 520px;
    overflow-y: auto;
}

.methods-wrapper::-webkit-scrollbar {
    width: 4px;
}

.methods-wrapper::-webkit-scrollbar-track {
    background: var(--background);
}

.methods-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--line);
    border-radius: 20px;
}

.methods-wrapper > div {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

.buy-method {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    background: #434343;
    padding: 10px;
    height: 35px;
    border-radius: 10px;
    -webkit-box-shadow: var(--mini-box-shadow);
            box-shadow: var(--mini-box-shadow);
    -webkit-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s;
}

.buy-method:hover {
    background-color: #535353;
}

.buy-method.selected {
    background-color: #535353;
    padding: 8px;
    border: 2px solid var(--line);
}

.buy-method img {
    width: 35px;
    max-height: 35px;
    margin-right: 10px;
    -webkit-filter: drop-shadow(var(--shadow));
            filter: drop-shadow(var(--shadow));
}

.buy-method span {
    width: 100%;
    font-size: 20px;
    text-align: center;
}

/* Advantages */

.advantages-block {
    text-align: center;
    margin: 130px 0 100px;
}

.advantages-block > p {
    font-size: 64px;
    margin-bottom: 110px;
    text-shadow: var(--bolder-shadow);
}

.advantages-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.advantage {
    position: relative;
    width: 350px;
    margin: 0 25px;
    padding: 45px 15px 45px;
    background-color: var(--background);
    border: 3px solid var(--line);
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    -webkit-box-shadow: 0 0 10px 3px var(--line),
                inset 0 0 10px 3px var(--line);
            box-shadow: 0 0 10px 3px var(--line),
                inset 0 0 10px 3px var(--line);
}

.advantage svg {
    position: absolute;
    top: -50px;
    left: calc(50% - 40px);
    width: 80px;
    height: 80px;
}

.advantage-title {
    font-size: 24px;
    color: var(--line);
    margin-bottom: 15px;
    text-shadow: 0 0 1px black,
                 0 0 9px var(--line);
}

.advantage-text {
    font-size: 22px;
}

@media all and (max-width: 1700px) {

    .main-info-block > picture img {
        width: 650px;
    }

    .main-info .info1 {
        font-size: 72px;
    }

    .main-info .info2 {
        font-size: 66px;
    }

    .site-stats {
        width: 650px;
        margin: 70px auto 60px;
    }

    .site-stat svg {
        width: 55px;
        height: 55px;
        margin-right: 20px;
    }

    .site-stat-text {
        font-size: 21px;
    }

    .advantages-block {
        margin: 130px 0 40px;
    }

    .advantages-block > p {
        margin-bottom: 70px;
    }

    .advantages-wrapper {
        width: 932px;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        margin: 0 auto;
    }

    .advantage {
        margin: 40px;
    }

}

@media all and (max-width: 1430px) {

    .main-info-block > picture img {
        width: 600px;
    }

    .main-info .info1 {
        font-size: 64px;
    }

    .main-info .info2 {
        font-size: 60px;
    }

    .site-stats {
        width: 600px;
        padding: 15px 25px;
    }

    .site-stat svg {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .site-stat-text {
        font-size: 19px;
    }

    .site-stats > span {
        height: 65px;
    }

    .go-to-buy {
        font-size: 24px;
    }

    .buy-block {
        width: 85%;
    }

    .buy-available {
        font-size: 26px;
    }

    .buy-input label svg {
        width: 45px;
        height: 45px;
    }

    .buy-input input {
        font-size: 22px;
    }

    .buy-info-block svg {
        width: 55px;
        height: 55px;
    }

    .buy-info-block h3 {
        font-size: 18px;
    }

    .submit-buy {
        font-size: 24px;
    }

    .submit-buy svg {
        width: 30px;
        height: 30px;
        margin-right: 15px;
    }

    .buy-agreetment {
        font-size: 14px;
    }

    .buy-method img {
        width: 35px;
        max-height: 35px;
    }

    .buy-method span {
        font-size: 18px;
    }

}

@media all and (max-width: 1300px) {

    .main-info-block > picture img {
        width: 500px;
    }

    .main-info .info1 {
        font-size: 56px;
    }

    .main-info .info2 {
        font-size: 52px;
    }

    .site-stats {
        width: 550px;
        padding: 10px 20px;
    }

    .site-stat svg {
        width: 45px;
        height: 45px;
    }

    .site-stat-text {
        font-size: 18px;
    }

    .go-to-buy {
        font-size: 22px;
    }

    .advantages-block {
        margin: 80px 0 40px;
    }

    .advantages-block > p {
        font-size: 52px;
    }

    .advantage {
        width: 300px;
        padding: 35px 25px 45px;
    }

    .advantage svg {
        width: 70px;
        height: 70px;
        top: -45px;
        left: calc(50% - 35px);
    }

    .advantage-title {
        font-size: 22px;
    }

    .advantage-text {
        font-size: 20px;
    }

}

@media all and (max-width: 1200px) {

    .buy-block {
        width: 90%;
        padding: 10px 10px 0 0;
    }

    .buy-select-method {
        width: 60%;
        padding: 20px;
        margin-bottom: 10px;
    }

    .buy-title {
        font-size: 20px;
    }

    .methods-wrapper {
        max-height: 540px;
    }

    .methods-wrapper > div {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        margin-right: 7px;
    }

}

@media all and (max-width: 1130px) {

    .main-info-block > picture img {
        width: 400px;
    }

    .site-stats {
        margin: 60px auto 50px;
    }

    .go-to-buy {
        font-size: 20px;
    }

    .go-to-buy span {
        width: 21px;
        height: 21px;
    }

    .buy-block {
        margin: 60px auto 0;
    }

    .methods-wrapper {
        max-height: 550px;
    }

    .advantages-block > p {
        font-size: 46px;
        margin-bottom: 60px;
    }

}

@media all and (max-width: 1030px) {

    .main-info-block > picture img {
        display: none;
    }

    .methods-wrapper {
        max-height: 570px;
    }

    .main-info {
        text-align: center;
    }

}

@media all and (max-width: 970px) {

    .buy-block {
        background: -o-linear-gradient(290deg, #44B553 65%, #00A51E);
        background: linear-gradient(160deg, #44B553 65%, #00A51E);
        padding: 0;
        width: 70%;
    }

    #buyrobux {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        background-image: url("/static/assets/form_back.webp");
        background-size: 100% 55%;
        background-repeat: no-repeat;
    }

    .buy-main {
        background-image: none;
        width: 100%;
        padding: 0;
    }

    .buy-available {
        margin: 40px auto 35px;
    }

    .buy-select-method {
        width: 70%;
        margin-bottom: 40px;
    }

    .methods-wrapper > div {
        -ms-grid-columns: 1fr 10px 1fr;
        grid-template-columns: 1fr 1fr;
        margin-right: 0;
    }

    .submit-buy:not(.mobile-buy), .buy-agreetment:not(.mobile-buy) {
        display: none;
    }

    .submit-buy.mobile-buy {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .buy-agreetment.mobile-buy {
        display: block;
    }

    .buy-agreetment {
        margin-bottom: 15px;
    }

    .advantages-block {
        margin: 60px 0 20px;
    }

    .advantages-block > p {
        font-size: 42px;
        margin-bottom: 50px;
    }

    .advantages-wrapper {
        width: 700px;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .advantage {
        margin: 40px 0 15px;
        padding: 35px 10px 35px;
    }

}

@media all and (max-width: 820px) {

    .site-stats {
        margin: 80px auto 50px;
    }

    .buy-block {
        width: 80%;
        margin: 80px auto 0;
    }

    .advantages-block {
        margin: 90px 0 30px;
    }

    .advantages-wrapper {
        width: 100%;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .advantage {
        margin: 40px 0 35px;
        padding: 35px 35px 45px;
    }

}

@media all and (max-width: 700px) {

    .main-info {
        width: 100%;
    }

    .site-stats {
        width: calc(90% - 40px);
    }

    .buy-block {
        width: 85%;
    }

    .buy-input, .buy-info-block, .buy-select-method {
        width: 75%;
    }

}

@media all and (max-width: 630px) {

    .main-info .info1 {
        font-size: 9vw;
    }

    .main-info .info2 {
        font-size: 8vw;
    }

    .site-stats {
        width: calc(85% - 70px);
        background: none;
        border: 3px solid var(--line);
        -webkit-box-shadow: 0 0 10px 3px var(--line),
                inset 0 0 10px 3px var(--line);
                box-shadow: 0 0 10px 3px var(--line),
                inset 0 0 10px 3px var(--line);
        padding: 15px 35px;
        margin: 90px auto 50px;
    }

    .site-stat {
        position: relative;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .site-stat > span {
        height: 75px;
    }

    .site-stat svg {
        width: 50px;
        height: 50px;
        position: absolute;
        top: -60px;
        margin-right: 0;
    }

    .site-stat:first-child svg {
        width: 55px;
    }

    .site-stat-text {
        font-size: 19px;
    }

    .site-stat-header {
        color: var(--line);
        text-shadow: 0 0 1px black,
                 0 0 9px var(--line);
        -webkit-animation: blink_text ease-in-out 5s infinite;
                animation: blink_text ease-in-out 5s infinite;
    }

    @-webkit-keyframes blink_text {
        0%, 80% {
            color: var(--line);
        }
        90% {
            color: var(--text)
        }
        100% {
            color: var(--line);
        }
    }

    @keyframes blink_text {
        0%, 80% {
            color: var(--line);
        }
        90% {
            color: var(--text)
        }
        100% {
            color: var(--line);
        }
    }

    .buy-block {
        width: 90%;
    }

    .methods-wrapper > div {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        margin-right: 7px;
    }

    .buy-block {
        background: linear-gradient(#00A51E, #44B555);
    }

    #buyrobux {
        background-image: none;
    }

}

@media all and (max-width: 550px) {

    .site-stats {
        width: calc(90% - 50px);
        padding: 15px 25px;
    }

}

@media all and (max-width: 460px) {

    .main-info-block {
        margin-top: 70px;
    }

    .site-stats {
        width: calc(92% - 50px);
        margin-top: 100px;
        margin-bottom: 80px;
    }

    .site-stat svg {
        width: 47px;
        height: 47px;
    }

    .site-stat:first-child svg {
        width: 53px;
    }

    .site-stat-text {
        font-size: 17px;
    }

    .buy-block {
        width: 95%;
        margin-top: 70px;
    }

    .buy-available {
        font-size: 24px;
    }

    .buy-input, .buy-info-block, .buy-select-method {
        width: 80%;
    }

    .buy-input-error {
        font-size: 14px;
    }

    .advantages-block > p {
        font-size: 8vw;
    }

    .buy-input label svg {
        width: 40px;
        height: 40px;
    }

    .buy-input input {
        font-size: 20px;
    }

    .buy-info-block h3 {
        font-size: 17px;
    }

    .buy-title {
        font-size: 19px;
    }

    .submit-buy {
        font-size: 22px;
    }

    .buy-agreetment {
        font-size: 11px;
    }

    .advantage {
        width: 270px;
        padding: 35px 15px 40px;
    }

    .advantage svg {
        width: 65px;
        height: 65px;
        top: -40px;
        left: calc(50% - 33px);
    }

    .advantage-title {
        font-size: 20px;
    }

    .advantage-text {
        font-size: 18px;
    }

}

@media all and (max-width: 420px) {

    #selectplace-popup > p {
        margin-top: 30px;
        font-size: 34px;
        margin-bottom: 15px;
    }

    .place-selector > p {
        width: 90%;
        margin: 0 auto 20px;
        font-size: 22px;
    }

    .place-fs {
        padding: 10px;
    }

    .place-fs img {
        width: 60px;
        height: 60px;
    }

    .place-selector > button svg {
        width: 40px;
        height: 40px;
    }

    .setprice-videos iframe {
        width: 100%;
        margin: 30px auto;
    }

    .site-stats {
        width: calc(95% - 50px);
    }

    .site-stat-text {
        font-size: 15px;
    }

    .site-stat svg {
        width: 43px;
        height: 43px;
        top: -52px;
    }

    .site-stat:first-child svg {
        width: 50px;
    }

    .site-stats > span {
        height: 55px;
    }

}

@media all and (max-width: 380px) {

    #selectplace-popup > p {
        line-height: 34px;
    }

}

/* -------------------------------------------- */
/*        Created with ♥ by MVaR Team           */
/* Additional information on https://maksvar.ru */
/* -------------------------------------------- */
/*                                              */
/*         © Copyright 2023, RobuxPay           */
/* -------------------------------------------- */