body
{
    padding: 0;
    margin: 0;
    --widthBlock: calc(100vh / 1080 * 512);
    --heightCoeff: calc(100vh / 1080);
    overflow: hidden;
    width: 100vw;
    font-family: Arial, Helvetica, sans-serif;
}



@font-face {
    font-family: colus;
    src: url(../fonts/colus.ttf);
}

html.home {
    background: url("../images/pc/img-back-main.jpg"), url(../images/pc/bg_base.png);
    background-repeat: no-repeat, repeat;
    background-position: top center, center center;
    height: 100vh;
    background-size: cover, contain;
}


@media screen and (min-device-aspect-ratio: 4500/1598)
{
    html.home {
        background-size: contain;
    }

}
@media screen and (min-aspect-ratio: 4500/1598)
{
    html.home {
        background-size: contain;
    }

}


.center-info
{
    margin: auto;
    margin-top: calc(100vh * 164 / 1080);
    display: block;
    text-align: center;
    width: var(--widthBlock);

}


.main-logo
{
    background: url("../images/pc/logo_warspear.png");
    background-repeat: no-repeat;
    width: 100%;
    height: calc(var(--widthBlock) * 0.32);
    display: inline-block;
    background-size: contain;
}

.content-text
{
    font-family: colus;
    font-size: calc(var(--heightCoeff) * 36);
    color: #B31433;
    margin-top: calc(var(--heightCoeff) * 25);
    line-height: calc(var(--heightCoeff) * 40);
    font-weight: bold;
}
.center-info-content
{
    display: block;
    text-align: center;
}
.download-button:hover {

    background: url("../images/pc/hover_button.png") no-repeat;
    background-size: contain;
    width: calc(var(--heightCoeff) * 392);
    height: calc(var(--heightCoeff) * 125);

}
.download-button
{
    margin-top: calc(var(--heightCoeff) * 68);
    background: url("../images/pc/button_download.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: calc(var(--heightCoeff) * 392);
    height: calc(var(--heightCoeff) * 125);
    font-family: colus;
    font-size: calc(var(--heightCoeff) * 41);
    display: inline-flex;
    align-items: center;
    color: white;
    justify-content: center;
    cursor: pointer;
}



.bubbly-button {
    display: inline-flex;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    position: relative;

}
.bubbly-button:focus {
    outline: 0;
}
.bubbly-button:before, .bubbly-button:after {
    position: absolute;
    content: '';
    display: block;
    width: 140%;
    height: 100%;
    left: -20%;
    z-index: -1000;
    transition: all ease-in-out 0.5s;
    background-repeat: no-repeat;
}
.bubbly-button:before {
    display: none;
    top: -75%;
    background-image: radial-gradient(circle, #FFFFC9 20%, transparent 20%), radial-gradient(circle, transparent 20%, #FFFFC9 20%, transparent 30%), radial-gradient(circle, #fdfd6c 20%, transparent 20%), radial-gradient(circle, #fafa4b 20%, transparent 20%), radial-gradient(circle, transparent 10%, #FFFFC9 15%, transparent 20%), radial-gradient(circle, #FFFFC9 20%, transparent 20%), radial-gradient(circle, #FFFFC9 20%, transparent 20%), radial-gradient(circle, #FFFFC9 20%, transparent 20%), radial-gradient(circle, #FFFFC9 20%, transparent 20%);
    background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
}
.bubbly-button:after {
    display: none;
    bottom: -75%;
    background-image: radial-gradient(circle, #FFFFC9 20%, transparent 20%), radial-gradient(circle, #FFFFC9 20%, transparent 20%), radial-gradient(circle, transparent 10%, #FFFFC9 15%, transparent 20%), radial-gradient(circle, #FFFFC9 20%, transparent 20%), radial-gradient(circle, #FFFFC9 20%, transparent 20%), radial-gradient(circle, #FFFFC9 20%, transparent 20%), radial-gradient(circle, #FFFFC9 20%, transparent 20%);
    background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%;
}
.bubbly-button:active {
    transform: scale(0.9);

}
.bubbly-button.animate:before {
    display: block;
    animation: topBubbles ease-in-out 0.75s forwards;
}
.bubbly-button.animate:after {
    display: block;
    animation: bottomBubbles ease-in-out 0.75s forwards;
}

@keyframes topBubbles {
    0% {
        background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
    }
    50% {
        background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
    }
    100% {
        background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
        background-size: 0% 0%, 0% 0%,  0% 0%,  0% 0%,  0% 0%,  0% 0%;
    }
}
@keyframes bottomBubbles {
    0% {
        background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
    }
    50% {
        background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
    }
    100% {
        background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
        background-size: 0% 0%, 0% 0%,  0% 0%,  0% 0%,  0% 0%,  0% 0%;
    }
}
.top-section__video
{
    display: none;
}
@media screen and (min-width: 1300px)
{
    .top-section__video {
        width: 100%;
        min-height: 100vh;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center center;
        object-position: center center;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        display: block;
    }
}


@media screen and (orientation: portrait) and  (max-width:600px)
{
    html.home {
        background: url("../images/pc/mobile-back.jpg"), url(../images/pc/bg_base.png);
        background-repeat: no-repeat, repeat;
        background-position: top center, center center;
        height: 100vh;
        background-size: cover, contain;
    }
    .center-info {
        margin: auto;
        max-width: 95vw;
        margin-top: calc(100vh * 50 / 1080);
    }
    .download-button {
        margin-top: calc(var(--heightCoeff) * 55);
    }

}




.cookie-notify-header
{
    font-family: colus;
}
.cookie-notify
{
    position: fixed;
    bottom: 0px;
    width: 100%;
    z-index: 999999;
    background-color: #fefad7;
}

.cookie-policy-div
{
    display: inline-block;
    position: relative;
    padding: 15px 20px 10px 10px;
    font-size: 12pt;
    z-index: 9999;
    color: #6b3939;
    width: 100%;
}
.cookie-config
{
    position: absolute;

    bottom: 10px;
    right: 20px;
    color: #cbcbcb;
    cursor: pointer;
    border-bottom: 1px solid rgba(203, 203, 203, 0.9);
}

.text-policy-wraper
{
    width: 80%;
    margin: 0px auto;
    padding-bottom: 0px;
    padding-right: 5%;
}
.cookie-policy-div h2
{
    font-style: normal;
    font-size: 20px;
    line-height: 22px;
    margin-top: 2px;
    margin-bottom: 5px;
}
.cookie-policy-div ul {
    margin-top: 0;
    margin-bottom: 0px;
}
.policyInfoText
{

}

.cookie-info-blocks
{
    display: none;
}
.cookie-info-blocks
{
    background-color: #e5e5e5;
}

.cookie-info-blocks
{
    display: none;
    padding: 10px;
    margin-bottom: 10px;

}
.cookie-info-block-data
{
    padding-bottom: 10px;
}
.cookie-info-block-data-text
{
    margin-right: 30px;

}
.cookie-info-block-data-header
{
    font-weight: bold;
}

#btn-policy-apply-cookie
{
    display: none;
}

.cookie-policy-div a:hover, .cookie-policy-div a:focus {
    color: #a04333;
    text-decoration: none;
}
.cookie-policy-div a, .cookie-policy-div a:hover, .cookie-policy-div a:visited, .cookie-policy-div a:link, .cookie-policy-div a:active, .cookie-policy-div a:target {
    text-decoration: none !important;
    color: #a04333;
    border-bottom: 1px solid rgba(160, 67, 51, 0.3);
    line-height: 2
}
.cookie-policy-div a:active, .cookie-policy-div a:hover {
    outline: 0;
}

.cookie-policy-div a {
    color: #a04333;
    text-decoration: none;
}


/*BTN*/
.material-switch > input[type="checkbox"] {
    display: none;
}

.material-switch > label {
    display: inline-block;
    cursor: pointer;
    height: 0px;
    position: relative;
    width: 40px;
}

.material-switch > label::before {
    background: rgb(0, 0, 0);
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    content: '';
    height: 16px;
    margin-top: -8px;
    position:absolute;
    opacity: 0.3;
    transition: all 0.4s ease-in-out;
    width: 40px;
}
.material-switch > label::after {
    background: rgb(255, 255, 255);
    border-radius: 16px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    content: '';
    height: 24px;
    left: -4px;
    margin-top: -8px;
    position: absolute;
    top: -4px;
    transition: all 0.3s ease-in-out;
    width: 24px;
}
.material-switch > input[type="checkbox"]:checked + label::before {
    background: inherit;
    opacity: 0.5;
}
.material-switch > input[type="checkbox"]:checked + label::after {
    background: inherit;
    left: 20px;
}
.cookie-radio
{
    padding: 0px;
    padding-bottom: 0px;
    margin-bottom: 3px;

}
.StrictlyNecessaryId
{
    opacity: 70%;
}
.url-link
{
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.infotable td
{
    border: 1px solid;
    padding: 2px;

}
.infotable th
{
    border: 1px solid;
    padding: 2px;

}
.infotable tr
{
    border: 1px solid;
    vertical-align: top;
}


.btn-cookie
{
    border: rgb(16, 50, 207) 2px solid;
    border-radius: 4px;
    background-color: rgb(16, 50, 207);
    color: white;
    width: 200px;
    line-height: 40px!important;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
    cursor: pointer;
    margin-bottom: 10px;
}
.btn-cookie:hover
{
    background-color: rgb(0, 44, 243);
    color: white!important;
}
.btn-cookie{
    color: white!important;
}

.label-success {
    background-color: #5cb85c;
}


.pull-right {
    float: right !important;
}

@media screen and (max-width:980px){
    .btn-cookie
    {
        width: 100%;
        line-height: 36px!important;
    }
}

.click-to-download-info
{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 15, 0.6);
    top: 0;
    left: 0;
    z-index: 2000;
    display: none;
    animation-name: show_display_animation;
    animation-timing-function: ease;
    animation-duration: 0.5s;


}
.click-download-text
{
    font-family: colus;
    font-size: calc(var(--heightCoeff) * 26);
    color: #ffffff;
    display: inline-block;
    margin: auto;
    opacity: 100%;

}

.div-info-file-arrow
{
    display: inline-block;
    background: url("../images/pc/arrow_icon.png") right center;
    width: calc(var(--heightCoeff) * 120);
    max-width: 120px;
    aspect-ratio: 1;
    background-size: contain;
    opacity: 100%;
}
.click-download-continer
{
    opacity: 100%;
    position: absolute;
    top: calc(var(--heightCoeff) * 35);
    right: 40px;
    display: inline-flex;

}
.animation-button {
    animation-name: button-info-animation;
    animation-timing-function: ease;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}
@keyframes button-info-animation {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes show_display_animation
{
    0%   { opacity: 0; }
    100% { opacity: 100; }
}

#btn-policy-read-ck:hover{
    background-color: rgb(0, 44, 243);
    color: white!important;
}
#btn-policy-read-ck{
    width: 55px;
    line-height: 30px;
    padding: 4px 30px;
    border: rgb(16, 50, 207) 2px solid;
    border-radius: 4px;
    background-color: rgb(16, 50, 207);
    color: white;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    cursor: pointer;
    margin-bottom: 10px;
}
s