GOLDEN- Coarse Molding Paste Medium
- Made with 100% Acrylic, off-white, semi-opaque medium
- Opaque acrylic medium with sandy texture
- Ideal for creating texture, can be mixed with other mediums, gel and paint. Retains toolmarks and peaks
No upcoming dates available.
.hidden {
display: none;
}
.form-status {
margin-top: 1rem;
padding: 1rem;
border-radius: 4px;
}
.error-message {
color: #dc3545;
}
.success-message {
color: #28a745;
}
.product-info-form input:valid {
border-color: #28a745;
}
.date-selector {
margin: 1rem 0;
}
.date-select {
width: 100%;
padding: 0.5rem;
margin-top: 0.5rem;
}
.no-dates-message {
color: #dc3545;
margin: 1rem 0;
}
.parent-info-section,
.student-section {
padding: 1.5rem;
margin: 1rem 0;
border: 1px solid #ddd;
border-radius: 4px;
background-color: #f9f9f9;
}
.student-section {
position: relative;
animation: slideDown 0.3s ease-out;
}
.student-controls {
display: flex;
gap: 1rem;
margin: 1rem 0;
}
.button {
padding: 0.5rem 1rem;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.button--secondary {
background-color: #6c757d;
color: white;
}
.button--secondary:hover {
background-color: #5a6268;
}
.button:disabled {
opacity: 0.6;
cursor: not-allowed;
}
@keyframes slideDown {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@media (max-width: 768px) {
.student-controls {
flex-direction: column;
}
.button {
width: 100%;
}
}
.scheduling-section {
margin: 2rem 0;
padding: 1rem;
border: 1px solid #ddd;
border-radius: 4px;
}
.monthly-schedule,
.weekly-schedule {
margin: 1rem 0;
}
.weekly-schedule .form-field {
margin-bottom: 1rem;
}
select:disabled {
background-color: #f5f5f5;
cursor: not-allowed;
}
.no-schedule-message {
color: #dc3545;
text-align: center;
padding: 1rem;
}