﻿
#ViewerDiv {
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    position: relative;
}

#wrapper {
    width: 100%;
    overflow: hidden;
    max-width: 110em;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.leftSideContainter {
    width: 40%;
    float: left;
    padding-left: 2em;
    height: 100%;
}

.rightSideContainer {
    overflow: hidden;
    width: 60%;
    padding-right: 2em;
}

#parameterWrapper {
    margin-right: 2vw;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.parameterContainerTop {
    width: 100%;
    height: 60px;
    align-items: center;
    background-color: lightgrey;
    box-shadow: 0 10px 6px -6px #777;
    display: flex;
}

.parameterContainerColorOfDeskBottom {
    height: 200px;
    vertical-align: middle;
    width: 100%;
    background-color: lightgrey;
    box-shadow: 0 10px 6px -6px #777;
    overflow: auto;
}

.parameterContainerItems {
    height: 120px;
    align-items: center;
    width: 100%;
    background-color: lightgrey;
    box-shadow: 0 10px 6px -6px #777;
}

.lastParameterContainerItems {
    align-items: center;
    width: 100%;
    background-color: lightgrey;
    box-shadow: 0 10px 6px -6px #777;
    overflow: hidden;
    flex: 0.9;
    height: 100%;
    min-height: 100px;
}

.parameterContainer {
    width: 100%;
    margin-bottom: 1.25vh;
}

.lastParameterContainer {
    flex: 1;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 0vh;
}

#labelValidace {
    font-style: normal;
    font-weight: bold;
    font-size: calc(12px + 0.2vw);
    vertical-align: -webkit-baseline-middle;
    font-family: Helvetica;
    text-align: center;
    color: #C00E0E;
    display: block;
}

label {
    vertical-align: middle;
    margin: 0px;
}

input {
    vertical-align: middle;
}

    input[type=range] {
        -webkit-appearance: none;
        background: transparent;
    }

        input[type=range]::-webkit-slider-runnable-track {
            width: 300px;
            height: 8px;
            background: white;
            border: none;
            border-radius: 3px;
        }

        input[type=range]::-webkit-slider-thumb {
            -webkit-appearance: none;
            border: none;
            height: 20px;
            width: 20px;
            border-radius: 50%;
            background: gray;
            margin-top: -4px;
        }

        input[type=range]:focus {
            outline: none;
        }

            input[type=range]:focus::-webkit-slider-runnable-track {
                background: white;
            }

#labelParameterName {
    font-family: Helvetica;
    font-weight: bold;
    letter-spacing: 0.05em;
    width: 30%;
    font-size: calc(12px + 0.25vw);
    color: darkslategray;
}

.imageLabel {
    width: 50px;
    height: 50px;
}

[type=radio] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

    [type=radio] + img {
        cursor: pointer;
        border: 1px solid gray;
    }

    [type=radio]:checked + img {
        border: 4px solid #C00E0E;
        outline: none !important;
}


.grid-container {
    display: grid;
    padding-left: 2vw;
    padding-right: 2vw;
}

.grid-item {
    grid-row: 1;
    text-align: center;
}

.labelGridColor {
    width: -webkit-fill-available;
    font-family: Helvetica;
    margin-top: 1vh;
    color: white;
    font-weight: bold;
    letter-spacing: 0.06vw;
    font-size: calc(10px + 0.3vw);
}



.partDiv {
    margin-bottom: 10px;
    display: flex;
    margin-left: 2em;
}

.buttonDiv {
    align-items: center;
    flex: 1;
    margin-left: 2em;
    margin-right: 2em;
    height: 40px;
    color: white;
    background: gray;
    font-family: Helvetica;
    border: 1px solid transparent;
    font-weight: bold;
    letter-spacing: 0.05em;
    font-size: calc(12px + 0.25vw);
}

    .buttonDiv:hover {
        background-color: #595959 !important;
        transition: 0.2s;
    }

.labelItems {
    font-family: Helvetica;
    color: white;
    font-weight: bold;
    letter-spacing: 0.06vw;
    margin-left: 2.5vw;
    font-size: calc(12px + 0.25vw);
    vertical-align: middle;
    text-align: left;
    flex: 1;
}

.container0 {
    cursor: pointer;
    width: 25px;
    height: 25px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .container0 input {
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.checkmark {
    position: absolute;
    height: calc(18px + 0.5vw);
    width: calc(18px + 0.5vw);
    background-color: #eee;
}

.container0:hover input ~ .checkmark {
    background-color: #ccc;
}

.container0 input:checked ~ .checkmark {
    background-color: #C00E0E;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.container0 input:checked ~ .checkmark:after {
    display: block;
}

.container0 .checkmark:after {
    left: 35%;
    top: 0.25vh;
    width: 0.80vh;
    height: 1.5vh;
    border: solid white;
    border-width: 0px 0.35vh 0.35vh 0px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}



.bubbleHolder {
    width: 100%;
    height: 100px;
    align-items: center;
    margin: auto;
    display: grid;
    grid-auto-flow: column;
    background: transparent;
    grid-auto-columns: min-content;
    justify-content: center;
    grid-column-gap: 30px;
}

.bubbleHolderButton {
    width: 100%;
    height: 100%;
    align-items: center;
    margin: auto;
    display: grid;
    grid-auto-flow: column;
    background: transparent;
    grid-auto-columns: min-content;
    justify-content: center;
    grid-column-gap: 10px;
}




#bubble0 {
    animation-delay: 0s;
}

#bubble1 {
    animation-delay: .25s;
}

#bubble2 {
    animation-delay: 0.5s;
}







.configTextBig {
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.06em;
    font-size: 25px;
    color: black;
    margin-top: 15px;
    margin-bottom: 35px;
}

.configTextSmaller {
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.04em;
    font-size: 18px;
    color: gray;
    margin-top: 15px;
}

.bubbleWrapper {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.bubbleWrapperButton {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 20px;
    height: 20px;
}



.logo {
    margin-top: 25px;
    align-items: center;
    display: flex;
    justify-content: center;
}




#navTools {
    display: none !important;
}

#measureTools {
    display: none !important;
}

#modelTools {
    display: none !important;
}

#settingsTools {
    display: none !important;
}

.viewcubeWrapper {
    display: none !important;
}

.top-row px-4 {
    display: none !important;
}

.top-row {
    display: none !important;
}

.sidebar {
    display: none !important;
}

.header {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 5em;
    padding-right: 5em;
    background-color: #E6E7E9;
    width: 100%;
    padding-bottom: 50px;
    padding-top: 50px;
}

.gap {
    height: 1px;
    width: 100%;
    border: 2px solid #C00E0E;
}

.itemContainer {
    border: 1px solid red;
    background-color: gray;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.item {
    height: 7.5vh;
    display: flex;
    border: 1px solid yellow;
}

.itemLast {
    flex: 1;
    border: 1px solid greenyellow;
}

.dot {
    border: 0px;
    height: 1vh;
    background-color: #C00E0E;
    width: 2vh;
    border-radius: 4vh;
    margin-top: auto;
    margin-left: 1vh;
    margin-bottom: auto;
}

.thKusy {
    text-align: center;
    width: 15%;
}

.thItemName {
    width: 45%;
}

.thVat {
    text-align: center;
    width: 10%;
}

.thPrice {
    text-align: center;
    width: 30%;
}

.tdKusy {
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
}

.itemName {
    overflow: hidden;
    white-space: nowrap;
}

.itemPriceNoVAT {
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
}

.itemPriceWithVAT {
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
}

.itemVAT {
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
}

tr {
    min-height: 50px;
}

.finalPriceDiv {
    background-color: #C00E0E;
    color: white;
    margin-top: 20px;
    display: table-cell;
    vertical-align: middle;
    height: 7.5vh;
}

.finalPriceTextDiv {
    float: right;
    margin-right: 4vw;
    letter-spacing: 0.06em;
    font-weight: 100;
    font-size: calc(6px + 0.5vw);
    line-height: 7.5vh;
    font-family: Helvetica;
}

.finalPriceValueDiv {
    float: right;
    font-weight: bold;
    font-size: calc(10px + 0.5vw);
    margin-right: 1.5vw;
    font-family: Helvetica;
    line-height: 7.5vh;
    letter-spacing: 0.03em;
}

.textIntro {
    width: 100%;
    overflow: hidden;
    padding-top: 25px;
    padding-bottom: 25px;
}

.headerPage {
    margin: auto;
    text-align: center;
    font-weight: 400;
    font-family: Helvetica;
    font-size: calc(20px + 1vw);
    color: #C00E0E;
    letter-spacing: 0.03em;
    margin-bottom: 25px;
}

.subHeader {
    text-align: center;
    font-family: Helvetica;
    font-weight: bold;
    font-size: calc(15px + 0.15vw);
    letter-spacing: 0.03em;
    color: black;
    margin-bottom: 25px;
    padding-left: 2em;
    padding-right: 2em;
}

.text {
    font-size: calc(15px + 0.05vw);
    margin-top: 20px;
    margin-bottom: 20px;
    width: 45vw;
    margin-left: auto;
    margin-right: auto;
    color: dimgray;
}



.imgDrawingWrapper {
    height: 100%;
}






#imageQR {
    position: absolute;
    height: 40%;
    right: 0;
    bottom: 0;
}

.imageWrapper {
    align-items: center;
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    margin-left: 2vw;
    margin-right: 2vw;
}

.image {
    height: 100%;
    margin-right: 10px;
    margin-left: 10px;
    width: 50%;
    background-color: darkgray;
}

.companyInfo {
    margin-top: 20px;
    align-items: center;
    background-color: whitesmoke;
    display: flex;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    height: 10vh;
}

.companyLogoHolder {
    display: flex;
    flex-direction: column;
    height: 5vh;
    width: 5vh;
    background-color: gray;
    margin-left: 25px;
}

.companyName {
    align-items: center;
    flex: 1;
    color: gray;
    text-align: right;
    font-weight: bold;
    font-size: calc(12px + 0.5vw);
    margin-right: 1.5vw;
    font-family: Helvetica;
    letter-spacing: 0.03em;
}

.textInfo {
    height: 5vh;
    display: flex;
    align-items: center;
}

.textInInfo {
    letter-spacing: 0.06em;
    font-weight: 500;
    font-size: calc(10px + 0.5vw);
    font-family: Helvetica;
    align-items: center;
    flex: 1;
    text-align: center;
}

#items {
    margin-left: 2.5vw;
    margin-right: 2.5vw;
    margin-top: 1vw;
    margin-bottom: 1vw;
    flex: 1;
}

#pdfDivRightSideContainer {
    width: 45%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    vertical-align: middle;
    height: auto;
}

button:focus {
    outline: none;
}
