/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.matrix-stuff {
    width: 100%;
    height: 200px;
}

.matrix {
    position: relative;

}

.matrix::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#00000000), to(#000000));
    background-image: -o-linear-gradient(top, #00000000, #000000);
    background-image: linear-gradient(to bottom, #00000000, #000000);
    z-index: 2;
}


.main {
    color: var(--white);
    padding: 0 21px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 10;
}




.main__title {
    color: var(--main-color);
    /* text-shadow: var(--text-shadow); */
    text-align: center;
}


.main__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--logo-bg);
    border-radius: 14px;
    margin-top: 1rem;
    max-width: 160px;
    margin: auto;
}

.main__inputs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
    margin-top: 3rem;
}

.input__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 21px;
}

.input__left {
    width: 100%;
}

.input__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    word-wrap: break-word;
}

.input__label span {
    font-size: 16px;
}

.input__progress-bar {
    width: 100%;
    height: 20px;
    background-color: var(--input-line-bg);
    border-radius: 14px;
    position: relative;
}

.progress-track {
    position: absolute;
    left: -2px;
    top: 0;
    width: 100%;
    height: 20px;
    -webkit-appearance: none;
    background: transparent;
    z-index: 99;
    margin: 0;
}

.progress-track::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 25px;

    border-radius: 14px;
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    z-index: 1000;
}

.input__progress-bar progress {
    -webkit-appearance: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    border-radius: 14px;
    overflow: hidden;
}



.input__progress-bar progress::-webkit-progress-bar {
    background: var(--input-line-bg);
}

.input__progress-bar progress::-webkit-progress-value {
    background: var(--main-color);
    border-radius: 14px;
    position: relative;
}

.input__progress-bar progress::-webkit-progress-value::after {
    content: '';

}

/* .progress-track {
    width: 0%;
    background-color: var(--main-color);
    box-shadow: var(--box-shadow);
    height: 100%;
    border-radius: 14px;
    position: absolute;
    bottom: 0;
    left: 0px;
    transition: width ease 0.5s;
} */

/* .progress-track:after {
    content: '';
    height: 20px;
    width: 25px;
    border-radius: 14px;


    background-color: var(--white);
    position: absolute;
    right: 0;
    bottom: 0;
    transform: scale(1, -1);
} */




.input__right {
    border: 1px solid var(--main-color);
    border-radius: 14px;
}




/*SWITCHER TOGGLE*/


/* The switch - the box around the slider */
.switch {
    position: relative;
    display: block;
    width: 50px;
    height: 20px;


}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}


.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--input-line-bg);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    margin: 2px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 20px;
    left: 0px;
    bottom: 0px;
    background-color: var(--white);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.switch__input:checked+.slider {
    background-color: var(--main-color);
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
}



.switch__input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);

}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 14px;
}



.main__button {
    position: relative;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 50px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.hidden {
    visibility: hidden;
    opacity: 0;
}

.main__button:hover {
    cursor: pointer;
}

.main__button span {
    position: absolute;
}