﻿
.product-info-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.product-info-col1 {
    grid-area: 1/1/2/2;
}

.product-info-col2 {
    grid-area: 1/2/2/3;
    text-align: right;
}
.hidden {
    display: none;
}

.visible {
    display: block;
}

.timeout-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #666666;
    opacity: 0.8;
}

.timeout {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background-color: white;
    margin: 10px;
    text-align: center;
}