﻿@font-face {
    font-family: "GeneralPageFont";
    src: url('../Fonts/Lack-Regular.ttf')
}
@font-face {
    font-family: "OpenSans-VariableFont";
    src: url('../Fonts/OpenSans-VariableFont.ttf')
}

html, body {
    font-family: 'GeneralPageFont';
}

a {
    color:black;
}

.orangeColor {
    color: #F7931E;
}
.darkOrangeColor {
    color: #C55A11;
}

.textheavy {
    font-weight:800;
}


img.imagius.collapsed {
    content: url("../Images/Icons/expand-down.png");
}
img.imagius {
    content: url("../Images/Icons/expand-up.png");   
}


.tooltip2 {
}

    .tooltip2 .tooltiptext2 {
        display: none;
        width: 13rem;
        background-color: black;
        color: white;
        text-align: center;
        border: solid;
        border-color: #F7931E;
        padding: 5px 0;
        /* Position the tooltip */

        position: absolute;
        z-index: 1;
    }

    .tooltip2:hover .tooltiptext2 {
        display: block;
    }


.textinfo {
    /*display: none;*/
}

.row {
padding-top:.5rem;
}
.ninjadddddd {
padding-bottom:200rem;
}
.butsuperstyle {
    background-color: #E56711;
    color:white;
    width:18rem;
    height:3rem;
}
.butsuperstyle-empty {
    background-color: white;
    border: 1px, solid, black;
    text-decoration: none;
    color: black;
    width: 18rem;
    height: 3rem;
}

.text-not-usual {
    font-family: 'OpenSans-VariableFont';
}

.checkout.-pinned {
    position: fixed;
    bottom: 0;
    z-index: 10;
    max-width: 100%;
    width: 100%;
    left: 0;
    right: 0;
    border-radius: 0;
    margin: 0;
}

.subText {
    margin-top: -1rem;
    color: #707070
}

.titleText {
    font-size:1.7rem;
}


a.buttongc {
    background: #E56711;
    color: #fff;
    font-size: 17px;
    height: 44px;
    line-height: 42px;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
    overflow: hidden;
    display: block;
}

.gc-button-center {
    position: fixed;
    left: 0;
    right: 0;
    display: block;
    width: 100%;
    bottom: 0px;
    z-index: 999999999;
}

.blinking {
    animation: blink-animation 2s infinite;
}

.full-screen-video {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: black;
}
video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Видео будет адаптироваться под размеры экрана */
}

@keyframes blink-animation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}