/* Блок qo */
.qo {
    position: relative;
    margin-top: 20rem;
}

.qo__btn-open {
    color: #241406;
    padding: 12rem 20rem;
	text-align: center;
    border: none;
    cursor: pointer;
	border-radius: 100px;
	background-color: #FFD9AF;
	width: 400rem;
	font-family: var(--font-family);
	font-size: 16rem;
    font-weight: 600;
}

.qo__select-variation {
    margin-right: 10rem;
    padding: 6rem;
}

/* Модальное окно */
.qo__modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    background-color: rgba(0,0,0,0.6);
    padding-top: 60rem;
}

.qo__modal-content {
    background-color: #fff;
    margin: auto;
    max-width: 600rem;
    position: relative;
    padding: 20rem;
    border-radius: 5rem;
}

.qo__modal-close {
    position: absolute;
    right: 15rem;
    top: 15rem;
    background: none;
    border: none;
    font-size: 24rem;
    cursor: pointer;
}

/* Таблица */
.qo__table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20rem;
}

.qo__table th,
.qo__table td {
    border: 1rem solid #ccc;
    padding: 10rem;
    text-align: left;
}

/* Форма */
.qo__form {
    display: flex;
    flex-direction: column;
}

.qo__form-group {
    margin-bottom: 15rem;
}

.qo__form-group label {
    display: block;
    margin-bottom: 5rem;
}

.qo__form-group input,
.qo__form-group textarea {
    width: 100%;
    padding: 8rem;
    box-sizing: border-box;
}

.qo__btn-submit {
    background-color: #c00;
    color: #fff;
    padding: 12rem 20rem;
    border: none;
    cursor: pointer;
}
