.color-picker-container {
    background: var(--e-global-color-b2a989c);
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-align: left;
    row-gap: 20px;
}

.color-preview {
    background-color: #a3b785;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
}

.color-preview img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.picker-block-title {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
}

.picker-block-title h3 {
	color: var(--e-global-color-text);
}

.color-picker-block {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    column-gap: 20px;
    row-gap: 20px;
}

.picker-block-desc {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
}

.picker-block-desc p {
    font-size: 16px;
	color: var(--e-global-color-text);
    margin-block-end: 0rem;
}

.picker-block-desc span {
	font-size: 12px;
    font-style: italic;
    color: red;
    line-height: 1;
    margin-top: 0.7rem;
}

.color-picker {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-end;
    justify-content: center;
    align-items: flex-end;
}

#color-picker {
    width: 100%;
    height: 50px;
    border-radius: 0;
    background: var(--e-global-color-b2a989c);
}

.color-picker-and-form {
    background: var(--e-global-color-b2a989c);
    width: 100%;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    row-gap: 50px;
    padding: 20px 50px;
}

.color-picker-and-form form {
	width: 100%;
    display: flex;
    column-gap: 20px;
    row-gap: 20px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: stretch;
}

.color-picker-and-form input[type=date], 
input[type=email], 
input[type=number], 
input[type=password], 
input[type=search], 
input[type=tel], 
input[type=text], 
input[type=url], 
select, 
textarea {
    border: 1px solid var(--e-global-color-7e37f7c) !important;
    border-radius: 0px !important;
}

.color-picker-and-form input[type=color] {
    cursor: pointer !important;
    border: 1px solid var(--e-global-color-7e37f7c) !important;
}

.color-picker-and-form button {
	width: 100%;
    border: none !important;
    border-radius: 0 !important;
}

.agree-terms {
    width: 100%;
}

.agree-terms p {
    font-size: 12px;
    font-weight: 300;
    text-align: left;
	color: var(--e-global-color-953b50b);
}