* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 11px;
    color: #555;
}

body {
    width: 100%;
    height: 100%;
}

.container {
    margin: 20px auto;
    width: 90vw;
    max-width: 500px;
    min-width: 350px;
    height: auto;
    padding:0px;
}



.summary {
    text-align: left;
}


.summarybox {
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fcfcfc;
    text-align: center;
}

.inputLabelWrap {
    width: auto;
    margin: 5px;
}

.w50 {
    width: 47.25%;
    display:inline-block;
}

.inputLabelGroup {
    margin: 25px;
}

label {
    width: 100%;
    text-align: left;
    font-size: 1.25em;
}

.grnButton {
    color: green;
    background-color: palegreen;
    border: 1px solid green;
}

    .grnButton:hover {
        background-color: green;
    }



.brnButton {
    color: saddlebrown;
    background-color: lightgoldenrodyellow;
    border: 1px solid saddlebrown;
}

.brnButton:hover {
    background-color: saddlebrown;
}

.redButton {

}

input {
    width: 100%;
    height: auto;
    padding: 7px;
    font-size: 16px;
    text-align: center;
    color: black;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 3px;
}

    input[type=radio] {
        width: auto;
        height: 10px;
        margin: 8px;
    }

    input[type=button] {
    }

        input[type=button]:hover {
            color: white;
            cursor: pointer;
        }

    input[type=file] {
        height: auto;
        text-align: center;
        color: black;
        display: block;
        border: 1px solid #ccc;
        border-radius: 3px;
        display: inline-block;
        font-size: 11px;
    }


    input[type=button].backButton {
        width: auto;
        height: auto;
        padding: 2px;
        font-size: 11px;
        color: #cc3300;
        background-color: white;
        border: 1px solid green;
        border-radius: 3px;
    }

        input[type=button].backButton :hover {
            color: white;
            background-color: green;
            cursor: pointer;
        }



.redBorder {
    border-color: darkred;
    background-color: #fff1f1;
    color: darkred;
}





.tenderInfo {
    width: 100%;
    text-align: left;
}

    .tenderInfo td {
        padding: 5px;
        color: darkgreen;
    }

        .tenderInfo td:nth-child(2n) {
            font-weight: bold;
        }

p {
    line-height: 20px;
}

.boldbig {
    font-size: 3em;
    font-weight: 800;
}


/*loader stuff */

.screen {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: #fff;
    opacity: .8
}

.progress {
    position: absolute;
    top: 5vh;
    left: 0px;
    right: 0px;
    margin: auto;
    height: 200px;
    width: 200px;
    text-align: center;
}


svg {
    width: 200px;
    height: 200px;
}

circle {
    fill: transparent;
    stroke: lightgreen;
    stroke-width: 10px;
    stroke-linecap: round;
    stroke-dasharray: 52.8;
    animation: clock-animation 4s linear infinite;
    transform-origin: center;
}

@keyframes clock-animation {
    0% {
        transform: rotate(0deg);
        stroke-dashoffset: 26.4;
    }

    50% {
        transform: rotate(720deg);
        stroke-dashoffset: 26.4;
    }

    100% {
        transform: rotate(1080deg);
        stroke-dashoffset: 26.4;
    }
}


#myGrid {
    position:absolute;
    top:40px;
    left:0px;
    right:0px;
    bottom:40px;
}

div.subMenu {
    height: 40px;
    width:100%;
    display: flex;
    align-items: center;
}

input.subMenu {
    font-size: 11px;
    width: auto;
    margin-left:10px;
    height:25px;
    padding:0px 10px 0px 10px;
}


.right {
    float:right;
}

.container2 {
    margin: auto auto;
    width: 100%;
    max-width: 600px;
    min-width: 350px;
    height: auto;
    padding: 0px;
}