﻿.loader

{
    border: 4px solid white;
    border-radius: 50%;
    border-top: 4px solid black;
    border-bottom: 4px solid red;
    width: 15px;
    height: 15px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

div.demo {
    display: table;
    width: 100%;
    table-layout: fixed; /* For cells of equal size */
}

    div.demo span {
        display: table-cell;
        text-align: center;
        padding-top: 2px;
        font-size: larger;
        font-weight: bold;
        background-color: white;
    }

    div.demo spanBuy {
        display: table-cell;
        text-align: center;
        padding-top: 5px;
        font-size: larger;
        font-weight: bold;
        background-color: white;
        height: fit-content;
    }

.MenuBtn {
    width: 100%;
    height: 100%;
    background-color: white;
    border-color: red;
    border: none;
}

div.main {
    height: fit-content;
    width: 100%;
    margin-top: 5px;
    display: inline-block;
    background-color: white;
}

div.border {
    border-width: 0.1px;
    border-style: solid;
    border-color: red;
    border-color: inherit;
    background-color: white;
}

div.left {
    float: left;
    height: 70px;
    width: 20px;
    margin: 0px;
    display: inline-block;
    overflow: hidden;
    border-color: inherit;
    background-color: white;
}

div.leftBeam {
    float: right;
    border-radius: 3px;
    border: 3px solid;
    border-color: inherit;
    width: 5px;
    height: 55px;
    display: inline-block;
    margin-top: 12px;
    border-color: inherit;
    background-color: white;
}

div.right {
    float: right;
    height: 80px;
    width: 20px;
    margin: 0px;
    display: inline-block;
    overflow: hidden;
    border-color: inherit;
    background-color: white;
}


div.rightBeam {
    float: left;
    border-radius: 3px;
    border: 3px solid;
    border-color: inherit;
    width: 5px;
    height: 55px;
    display: inline-block;
    margin-top: 12px;
    border-color: inherit;
    background-color: white;
}



div.center {
    float: none;
    height: 80px;
    width: 85%;
    margin: 0px;
    display: inline-block;
    overflow: hidden;
    border-color: inherit;
    background-color:white;
    text-align: left;
    font-size: x-large;
    padding-left: 15px;
    padding-top: 20px;
    word-wrap: break-word;
}

#left {
}

#leftBeam {
}

#rightBeam {
}

#right {
}

#center {
}




input[type=radio] {
    margin: 1em 1em 1em 0;
    transform: scale(2, 2);
    -moz-transform: scale(2, 2);
    -ms-transform: scale(2, 2);
    -webkit-transform: scale(2, 2);
    -o-transform: scale(2, 2);
}