@font-face
{
    font-family: "HI";
    src: url("HI.woff") format("woff");
}
body
{
    margin:0;
    font-family: "HI";
}
div
{
    box-sizing: border-box;
}
a
{
    color: inherit;
    text-decoration: none;
}
.row>div
{
    /*border:solid 1px;*/
}
.arial
{
    font-family: arial;
}
.center
{
    text-align: center;
}
.left
{
    text-align: left;
}
.right
{
    text-align: right;
}
.middle
{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.rainbow
{
    background: linear-gradient(
        90deg,
        rgba(255, 0, 0, 1) 0%,
        rgba(255, 154, 0, 1) 10%,
        rgba(208, 222, 33, 1) 20%,
        rgba(79, 220, 74, 1) 30%,
        rgba(63, 218, 216, 1) 40%,
        rgba(47, 201, 226, 1) 50%,
        rgba(28, 127, 238, 1) 60%,
        rgba(95, 21, 242, 1) 70%,
        rgba(186, 12, 248, 1) 80%,
        rgba(251, 7, 217, 1) 90%,
        rgba(255, 0, 0, 1) 100%
    );
}
#background
{
    background: rgb(83,133,170);
    background: linear-gradient(0deg, rgba(83,133,170,1) 0%, rgba(85,116,149,1) 20%, rgba(0,0,0,1) 100%);
    position: fixed;
    top:0;
    left:0%;
    right:0;
    bottom:0;
    z-index: -1;
}
#basket
{
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: #fff;
    transition: left 0.2s ease-in-out;
    overflow-y: auto;
}
#paypal_screen
{
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: #fff;
    transition: left 0.2s ease-in-out;
    overflow-y: auto;
}
#order_confirmed_screen
{
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    z-index: 4;
    background: #fff;
    transition: left 0.2s ease-in-out;
    overflow-y: auto;
}
#login
{
    padding-top: 4em;
    padding-bottom: 4em;
}
#label_username,
#label_password
{
    display: none;
}
#username,
#password
{
    border: solid 2px #ababab;
    border-radius: 5px;
    box-sizing: border-box;
    width: 100%;
    height: 1.5em;
    font-size: 1.5em;
    padding: 0;
}
button,
#login_button
{
    font-size: 1.3em;
    border: solid 2px #3a7bba;
    border-radius: 5px;
    padding: 10px 20px 10px 20px;
    cursor: pointer;
}
button
{
    font-family: "HI";
    font-size: 1em;
}
button.buy
{
    background: #1010bb;
    color: #eeff2e;
    border: solid 2px white;
}
#empty_button
{
    padding: 5px;
    background: #970000;
    color: #ffa244;
}
#continue_button
{
    background: #00bf00;
    color: #ffff4e;
}
input
{
    font-family: HI;
}
.squares img
{
    width: 100%;
    border: solid #000 1px;
    border-radius: 3px;
}
.squares img.grey
{
    background: linear-gradient(140deg, rgba(83,133,170,0) 0%, rgba(55,88,112,0) 15%, rgb(155 155 155) 100%);
}
.squares img.blue
{
    background: linear-gradient(140deg, rgba(83,133,170,0) 0%, rgba(55,88,112,0) 15%, rgb(50 79 223) 100%);
}
.squares img.red
{
    background: linear-gradient(140deg, rgba(83,133,170,0) 0%, rgba(55,88,112,0) 15%, rgb(161 2 2) 100%);
}
.squares img.green
{
    background: linear-gradient(140deg, rgba(83,133,170,0) 0%, rgba(55,88,112,0) 15%, rgb(79 215 70) 100%);
}
.swiper {
    width: 100%;
    height: 100%;
}
.swiper-slide
{
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.swiper-slide img
{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper
{
    margin-left: auto;
    margin-right: auto;
}
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background: rgba(0, 0, 0, 0.4);
    border:solid 1px #63a6f1;
}
.swiper-pagination-bullet-active {
    color: #fff;
    background: #eaf4ff;
}