/* Xlive – kalkulačka velikosti. v2: bez globálního písma Arial a šedého pozadí na body */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 1000px;
    min-width: 700px; /* Set minimum width to 700px */
    position: relative;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #d93621;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    padding: 5px 10px;
}

.close-button:hover {
    background-color: #b82b1a;
}

.xlive_product_container {
    max-width: 1000px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
}

h3 {
    text-align: center;
    margin-bottom: 20px;
}

.xlive_product_left-container {
    width: 60%;
    padding-right: 20px;
    border-right: 1px solid #ddd;
    text-align: left;
}

.xlive_product_image-container {
    position: relative;
    width: 100%;
    height: 400px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
}

.xlive_product_input-marker {
    position: absolute;
    left: calc(100% - 180px);
    margin-left: 10px;
    display: flex;
    align-items: center;
}

.xlive_product_input-marker input {
    width: 120px;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #000;
    border-radius: 0;
}

.xlive_product_input-marker span {
    margin-left: 5px;
}

#xlive_product_height-marker {
    top: 10%;
    transform: translateY(-50%);
}

#xlive_product_inseam-marker {
    top: 50%;
    transform: translateY(-50%);
}

.xlive_product_button-group {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.xlive_product_button-group button {
    padding: 10px 20px;
    margin: 0 10px;
    background-color: #B0B0B0; /* Šedé pozadí */
    color: #fff; /* Bílý text */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.xlive_product_button-group button:hover {
    background-color: #808080; /* Tmavší šedé pozadí */
}

.xlive_product_button-group button.active {
    background-color: #d93621; /* Červené pozadí */
    color: #fff; /* Bílý text */
}

.xlive_product_right-container {
    width: 40%;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.xlive_product_right-container button {
    width: 50%;
    padding: 10px;
    background-color: #d93621;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

.xlive_product_right-container button:hover {
    background-color: #b82b1a;
}

.xlive_product_result {
    font-size: 1.2em;
    margin-top: 20px;
    text-align: center;
}

.xlive_product_input-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
}

.xlive_product_notice {
    font-size: 0.9em;
    color: #555;
    margin-top: 10px;
    text-align: center;
}

@media (max-width: 768px) {
    .xlive_product_container {
        flex-direction: column;
    }
    .xlive_product_left-container, .xlive_product_right-container {
        width: 100%;
        padding: 10px;
        border-right: none;
        text-align: center;
    }
    .xlive_product_image-container {
        height: 300px;
    }
    .xlive_product_input-marker {
        left: 50%;
        transform: translateX(-50%);
    }
    .xlive_product_button-group {
        justify-content: center;
    }
    .xlive_product_right-container button {
        width: 80%;
    }
}