* {
    margin: 0;
    padding: 0;
    color: rgb(66, 66, 66);
    font-family: "M PLUS Rounded 1c", sans-serif;
}


.cupboard-button {
    min-width: 60px !important;
    width: auto;
    min-height: 40px;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: rgb(98, 74, 255);
    border-radius: 15px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.264);
    transition: all 0.5s;
    cursor: pointer;

    hyphens: auto;
    overflow-wrap: break-word;
    word-break: break-word;
}

.cupboard-button:hover {
    transform: translateY(-3px);
}

.drawer-button {
    font-size: small;
    font-weight: 900;
}

.card {
    border: #c7d2fe 0 hidden;
    border-radius: 15px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.264);
    background-color: #fbd6bf;
    text-align: center;
}

.product-info {
    border-radius: 15px;
    background-color: whitesmoke;
}

.preview-drawer {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(2px);
    font-weight: 300;
    border-radius: 15px;
    padding: 10px 20px;
}

.product-color {
    background-color: rgb(98, 74, 255);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.264);
    border-radius: 30px;
    width: 100px;
    height: 40px;
}

.product-text {
    font-weight: 200;
    font-size: large;
    color: rgb(66, 66, 66);
}

.container-color {
    background: linear-gradient(to top, #f3e7e9 0%, #c7d2fe 100%);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.264);
}

.canvas-container {
    position: relative;
}

.canvas {
    border-radius: 15px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.264);
}

.scroll-down-check {
    animation: bounce 2s infinite;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
}

.abs-button {
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 10;
}

.btn-outline-purpl {
    border-radius: 15px;
    border-color: rgb(98, 74, 255);
    color: rgb(98, 74, 255);
    transition: all 0.5s;
}

.btn-outline-purpl:hover {
    background-color: rgb(98, 74, 255);
    color: white;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/*# sourceMappingURL=main.css.map*/