.cr-btn-request {
    background-color: #000;
    color: #fff;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: opacity 0.3s ease;
	font-size: 17px;
}

.cr-btn-request:hover {
    color: #fff;
    background-color: var(--e-global-color-astglobalcolor2);
	transform: scale(110%);
}

.cr-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.cr-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.cr-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.cr-step {
    display: none;
}

.cr-step-active {
    display: block;
}

.cr-field {
    margin-bottom: 15px;
}

.cr-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.cr-field input, .cr-field select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.cr-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.cr-next-step, .cr-prev-step, .cr-submit {
    padding: 10px 20px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
}

.cr-next-step, .cr-submit {
    background: #000;
    color: #fff;
}
.cr-prev-step:hover, .cr-next-step:hover, .cr-submit:hover {
    color: #fff;
}

.cr-prev-step {
    background: #ccc;
    color: #333;
}
