body{
    padding:0;
    margin:0;
}


body video
{
    position: fixed !important;
}

.inkvideo
{
    display: none;
}

.blackbar
{
    background: none;
}

.box{
    position: relative;
    height: auto;
    width: auto;
    display: table;
    margin: 10% auto;
    min-width: 550px;
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translateX(-50%); */
    color: #fff;
    background: rgb(29 29 29 / 80%);
    padding: 30px 30px;
    box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
    border-radius: 10px;
}
.box h1{
    text-align:center;
    margin:30px 0;
    font-size:36px;
    color: var(--color-white);
}

.col-50 {
    display: grid;
    grid-template-columns: 50% 50%;
}

.col-50 div input
{
    width: 200px;
    margin: 10px;
}

.bigbutton
{
    font-size: 14px;
}

@media all and (max-device-width: 600px)
{
    .box.littlebox
    {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        position: absolute;
        margin: 0;
    }
    .box h1
    {
        font-size: 45px;
    }
    .box input
    {
        font-size: 20px;
        width: -webkit-fill-available !important;
    }
    .col-50
    {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}


@media all and (max-device-width: 450px)
{
    .box h1
    {
        font-size: 50px;
    }
    .box input
    {
        font-size: 24px;
    }
}


.content
{
    position: relative;
    padding: 0;
}


.box input{
    display:block;
    width: -webkit-fill-available;
    margin:20px auto;
    padding:15px;
    background:rgba(0,0,0,0.2);
    color:#fff;
    border:0;
}

.box input::placeholder
{
    color: var(--color-white);
}

.box input:focus,.box input:active,.box button:focus,.box button:active{
    outline:none;
}
.box button{
    background:#2ecc71;
    border:0;
    color:#fff;
    padding:10px;
    font-size:20px;
    width:330px;
    margin:20px auto;
    display:block;
    cursor:pointer;
}
.box button:active{
    background:#27ae60;
}
.box p{
    font-size:14px;
    text-align:center;
}

.productline
{
    margin: 15px 0 !important;
}

.quantitybuttonsinput
{
    margin: 0 !important;
}

body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.footer
{
    text-align: center;
    color: var(--color-white);
    padding: 5px 0;
    margin-top: auto;
    width: 100%;
}

.footer p
{
    font-size: 10px;
}

@media all and (max-device-width: 600px)
{
    .footer p
    {
        font-size: 8px;
    }
}

.footer p a
{
    color: var(--color-white);
}