@font-face {
    font-family: 'Roboto';
    src: url('/vkserv/font/Roboto-Regular.ttf');
}


html, body {
    margin: 0; padding: 0; width: 100%; height: 100%;
}

* {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

div, form {
    margin: 0; 
    padding: 0;
    display: flex;
}

.hidden {
    display: none !important;
}

.w-100 {
    width: 100%;
}


.page {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #3c5365
}

.main {
    flex-direction: row;
    /*gap: 8px;*/
    width: 720px;
    border: 0;
    background: #ffffff;
}

.vkinfo {
    min-width: 250px;
    background: radial-gradient(467% 258.99% at 100% -1.03%, rgba(0, 119, 255, 0.3) 0%, rgba(0, 119, 255, 0) 40.85%), rgb(247, 248, 255);
    padding: 32px;
    flex-direction: column;
    gap: 16px;
}

.vk-descr {
    flex-direction: column;
    gap: 16px;
}

.vk-name {
    font-weight: 600;
    font-size: 24px;
    font-family: Roboto, sans-serif;
}

.hdr {
    font-size: 20px;
    font-weight: 600;
}

.error-text {
    color: #dd0000;
}

.vkinfo .vk-logo img {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    box-shadow: rgba(0, 119, 255, 0.3) 0px 16px 20px;
}

.back-btn {
    /*border: 1px dashed #aaaaaa;*/
    /*border-radius: 5px;*/
    /*justify-content: center;*/
    cursor: pointer;
    height: 32px;
    padding: 2px;
}

.text-std {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: -.02em;
    color: #5a6176;
}

.back-btn.text-std {
    font-size: 12px;
}

.vkform {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
    height: 400px;
    padding: 16px;
    /*padding: 50px;*/
}

.vkform-tab {
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    width: 300px;
    height: 100%;
}

.vkform-content {
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.element {
    flex-direction: column;
    gap: 2px;
    height: 65px;
}

.rub-in-input {
    position: relative;
}

.rub-in-input::after {
    content: "₽";
    position: absolute;
    top: 13px;
    right: 8px;
    width: 16px;
    height: 16px;
    color: #6d6b6b;
}

.btn {
    background: #d71e1e;
    color: #ffffff;
    border: 0;
    border-radius: 8px;
    width: 100%;
    height: 48px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.back-to-main {
    background: #2196F3;
    color: #ffffff;
    border: 0;
    border-radius: 8px;
    width: 100%;
    height: 48px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.v-error {
    color: #f44336;
    font-size: 13px;
}

.element input[type="text"] {
    height: 48px;
    width: 100%;
    border: 1px solid rgba(188, 195, 208, 0.5);
    border-radius: 8px;
    padding: 9px 12px;
    transition: border-color 200ms ease 0s;
    outline: none;
    font-size: 17px;
    color: #5a6176;
    line-height: 24px;
}

.result {
    flex-direction: column;
    padding:16px;
}

.notify-content {
    height: 350px;
    flex-direction: column;
    justify-content: center;
}

.payment-result {
    gap: 32px;
    flex-direction: column;
    justify-content: center;
}

.notify-table {
    gap: 16px;
    font-size: 13px;
}

.blocker-out {
    position: relative;
}

.blocker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #909090;
    opacity: 0.5;
    z-index: 100;
    background-image: url("/vkserv/img/load.gif");
    background-position: center;
    background-repeat: no-repeat;
}

.blocker-close {
    width: 100%;
    height: 50px;
    color: #ffffff;
    padding: 16px;
    font-size: 20px;
    justify-content: flex-end;
}

@media screen and (max-width: 460px) {
    .main {
        flex-direction: column;
        width: 100%;
        height: 100%;
    }

    .vkinfo {
        width: auto;
    }

    .vkform {
        width: auto;
    }

    .vkform-tab {
        width: 100%;
    }
}
