*{
    margin: 0;
    color: rgb(30, 30, 30);
}

body {
    /* display: flex;
    flex-direction: row-reverse; */
    font-family: "Poppins", sans-serif;
    /* overflow: hidden; */
    background-color: white;
    height: 100%;
}

#canvas-wrapper {
    overflow: hidden;
    min-width: 33vw;
    max-width: 33vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
}

canvas {
    filter: blur(var(--blur-amount));
    transform: scale(1.1);
    height: 100%!important;
}

section {
    padding: 48px 96px;
    height: 100vh;
    width: 100%;
    width: 66vw;
    /* overflow: auto; */
    display: flex;
    /* align-items: center; */
    justify-content: center;
    padding: 24px;
}

#controlPart {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.7);
    /* backdrop-filter: blur(40px) saturate(180%); */
    /* z-index: 10; */
}

.columns {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.slider-wrapper {
    position: relative;
}

.slider-result {
    box-shadow: 0px 0px 0px 3px rgb(0, 0, 0);
    /* border: solid 2px white; */
    height: 16px;
    width: 32px;
    margin-left: -16px;
    background: rgb(0, 0, 0);
    cursor:default;
    position: absolute;
    top: 8px;
    border-radius: 0;
    color: rgb(255, 255, 255);
    opacity: 0;
    animation: appear .2s ease-in-out forwards; 
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    text-align: center;
    display: none;
}

#silentNoisyResult { animation-delay: 0s; }
#harshHarmoniousResult { animation-delay: 1s; }
#passiveActiveResult { animation-delay: 2s; }
#dullBrightResult { animation-delay: 3s; }
#sugaryBitterResult { animation-delay: 4s; }
#mildAcidResult { animation-delay: 5s; }
#coldWarmResult { animation-delay: 6s; }
#wetDryResult { animation-delay: 7s; }

@keyframes appear {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
}

#controlPart > div {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.slider-container {
    display: flex;
    flex-direction: row!important;
    align-items: center;
}

.slider-container input {
    flex-grow: 1;
    margin: 0 16px;
}

.slider-container label {
    width: 100px;
    flex-grow: 1;
}

.slider-container label:last-child {
    text-align: right;
}

#controlPart > #buttonPart{
    display: flex;
    flex-direction: row;
    margin-top: auto;
}

#nextButton{
    display: none;
}

.palette {
    display: flex;
    flex-direction: row!important;
    gap: 0!important;
    padding: 0 24px!important;
}

.palette div {
    width: 100%;
    height: 48px;
}

button{
    padding: 8px 16px;
    /* margin: 0 8px; */
    border: none;
    border-radius: 0;
    background-color: #000;
    font-size: 14px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    flex-grow: 1;
}

/** CUSTOM RANGE INPUT STYLE **/
input[type=range] {
    -webkit-appearance: none;
    /* width: 100%; */
    /* margin: 18.5px 0; */
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 2px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.517);
    border: 0px solid white;
    
}

input[type=range]::-webkit-slider-thumb {
    box-shadow: 0px 0px 0px 3px white;
    border: solid 2px rgb(0, 0, 0);
    height: 16px;
    width: 16px;
    background: white;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -8px;
}

input[type=range]:active::-webkit-slider-thumb {
    background: black;
}

input[type=range]:active::-webkit-slider-runnable-track {
    background: black;
}

/* input[type=range]::-moz-range-track {
    width: 100%;
    height: 8.4px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    background: #3071a9;
    border-radius: 1.3px;
    border: 0.2px solid #010101;
}

input[type=range]::-moz-range-thumb {
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    border: 1px solid #000000;
    height: 20px;
    width: 20px;
    border-radius: 3px;
    background: #ffffff;
    cursor: pointer;
}

input[type=range]::-ms-track {
    width: 100%;
    height: 8.4px;
    cursor: pointer;
    animate: 0.2s;
    background: transparent;
    border-color: transparent;
    color: transparent;
}
 */
