::-webkit-scrollbar-track, *::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(58, 236, 79, 0.381);
    background-color: #60cd18;
}

::-webkit-scrollbar, *::-webkit-scrollbar {
	width: 3px;
	background-color: #60cd18;
}

::-webkit-scrollbar-thumb, *::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px #fff;
    background-color: #fff;
}

body {
    padding: 0;
    margin: 0;
    background-color: #fff;
    font-family: "Poppins", serif;
    overflow: hidden !important;
}

body.dark-mode {
    background-color: #00111a;
    color: #f0f0f0;
}

.switch {
    z-index: 123124124;
    position: absolute;
    display: inline-block;
    width: 130px;
    height: 40px;
    left: 10px;
    top: 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider:before {
    position: absolute;
    content: "";
    height: 28px;
    width: 28px;
    left: 3px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider:before {
    transform: translateX(90px);
    background-color: #000e14;
}

.slider-text {
    position: absolute;
    font-size: 18px;
    font-weight: bold;
    z-index: 1;
}

body .slider {
    background-color: #000e14;
    border: 2px solid #000e14;
}

body .slider-text {
    color: #fff;
}

body.dark-mode .slider {
    background-color: #f5f5f5;
    border: 2px solid #f5f5f5;
}

body.dark-mode .slider-text {
    color: #000e14;
}

#clouds {
    padding: 200px 0;
    background: #c9dbe9;
    background: -webkit-linear-gradient(top, #c9dbe9 0%, #fff 100%);
    background: -linear-gradient(top, #c9dbe9 0%, #fff 100%);
    background: -moz-linear-gradient(top, #c9dbe9 0%, #fff 100%);
}

body.dark-mode #clouds {
    padding: 200px 0;
    background: #000e14;
    background: -webkit-linear-gradient(top, #000e14 0%, #00111a 100%);
    background: -linear-gradient(top, #000e14 0%, #00111a 100%);
    background: -moz-linear-gradient(top, #000e14 0%, #00111a 100%);
}

#selectedfiletext {
    color: #000e14;
    letter-spacing: 1.3px;
    font-size: 16px;
}

body.dark-mode #selectedfiletext {
    color: #000e14;
}

.cloud {
    width: 200px;
    height: 60px;
    background: #fff;

    border-radius: 200px;
    -moz-border-radius: 200px;
    -webkit-border-radius: 200px;

    position: relative;
}

.cloud:before,
.cloud:after {
    content: "";
    position: absolute;
    background: #fff;
    width: 100px;
    height: 80px;
    position: absolute;
    top: -15px;
    left: 10px;

    border-radius: 100px;
    -moz-border-radius: 100px;
    -webkit-border-radius: 100px;

    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    -moz-transform: rotate(30deg);
}

.cloud:after {
    width: 120px;
    height: 120px;
    top: -55px;
    left: auto;
    right: 15px;
}

.x1 {
    -webkit-animation: moveclouds 15s linear infinite;
    -moz-animation: moveclouds 15s linear infinite;
    -o-animation: moveclouds 15s linear infinite;
}

.x2 {
    left: 200px;

    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 0.6;

    -webkit-animation: moveclouds 25s linear infinite;
    -moz-animation: moveclouds 25s linear infinite;
    -o-animation: moveclouds 25s linear infinite;
}

.x3 {
    left: -250px;
    top: -200px;

    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0.8;

    -webkit-animation: moveclouds 20s linear infinite;
    -moz-animation: moveclouds 20s linear infinite;
    -o-animation: moveclouds 20s linear infinite;
}

.x4 {
    left: 470px;
    top: -250px;

    -webkit-transform: scale(0.75);
    -moz-transform: scale(0.75);
    transform: scale(0.75);
    opacity: 0.75;

    -webkit-animation: moveclouds 18s linear infinite;
    -moz-animation: moveclouds 18s linear infinite;
    -o-animation: moveclouds 18s linear infinite;
}

.x5 {
    left: -150px;
    top: -150px;

    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0.8;

    -webkit-animation: moveclouds 20s linear infinite;
    -moz-animation: moveclouds 20s linear infinite;
    -o-animation: moveclouds 20s linear infinite;
}

@-webkit-keyframes moveclouds {
    0% {
        margin-left: 600px;
    }

    100% {
        margin-left: -600px;
    }
}

@-moz-keyframes moveclouds {
    0% {
        margin-left: 600px;
    }

    100% {
        margin-left: -600px;
    }
}

@-o-keyframes moveclouds {
    0% {
        margin-left: 600px;
    }

    100% {
        margin-left: -600px;
    }
}

.glass-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    padding: 10px 20px 20px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(4px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cardglass-header {
    text-align: center;
    padding-top: 10px;
}

.cardglass-header h2,
.cardglass-header p {
    margin: 0;
    line-height: 16px;
}

.garis {
    margin: 6px 0 12px 0;
    background: #b1b1b15f;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    height: 1.5px;
    border-radius: 100px;
}

.uploadarea {
    position: relative;
    width: 100%;
    height: 200px;
    border: 2px dashed #000e145e;
    background: #f5f5f5;
    border-radius: 6px;
}

.uploadarea:hover {
    background: #fff;
    cursor: pointer;
    border: 2px dashed #000e14ce;
}

.hidden {
    display: none;
}

.container_uploadarea {
    width: 70%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.toastify {
    border-radius: 10px !important;
    padding: 8px 10px !important;
}

.range {
    position: relative;
}

.range input[type="range"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    width: 100%;
    height: 22px;
    cursor: pointer;
    display: block;
}

.range input[type="range"]:focus {
    outline: none;
}

.range input[type="range"][disabled] {
    opacity: 0.3;
    cursor: default;
}

.range .rangeslider {
    position: relative;
    height: 22px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.range .rangeslider:before {
    box-sizing: border-box;
    width: 100%;
    height: 4px;
    background: #e6e6e6;
    border-radius: 100px;
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.range input::-webkit-slider-runnable-track {
    box-sizing: border-box;
    width: 100%;
    height: 4px;
    background: #e6e6e6;
    border-radius: 100px;
    margin: 11px 0;
}

.range input::-moz-range-track {
    box-sizing: border-box;
    width: 100%;
    height: 4px;
    background: #e6e6e6;
    border-radius: 100px;
    margin: 11px 0;
}

.range input::-ms-track {
    box-sizing: border-box;
    width: 100%;
    height: 4px;
    background: #e6e6e6;
    border-radius: 100px;
    color: transparent;
    padding: 11px 0;
    background: transparent;
    border-color: transparent;
}

.range input::-ms-fill-lower,
.range input::-ms-fill-upper {
    box-sizing: border-box;
    width: 100%;
    height: 4px;
    background: #e6e6e6;
    border-radius: 100px;
}

.range input::-ms-fill-lower {
    background: #60cd18;
}

.range .rangeslider-fill-lower {
    background-color: #60cd18;
    border-radius: 100px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    will-change: width;
}

.range input::-webkit-slider-thumb {
    box-sizing: border-box;
    box-shadow: 0px 4px 25px rgba(96, 205, 24, 0.276);
    border: 4px solid #fff;
    height: 16px;
    width: 16px;
    border-radius: 100px;
    background: #333940;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transform: translateY(-50%);
    margin-top: 2px;
}

.range input::-moz-range-thumb {
    box-sizing: border-box;
    box-shadow: 0px 4px 25px rgba(96, 205, 24, 0.276);
    border: 4px solid #fff;
    height: 16px;
    width: 16px;
    border-radius: 100px;
    background: #333940;
    cursor: pointer;
}

.range input::-ms-thumb {
    box-sizing: border-box;
    box-shadow: 0px 4px 25px rgba(96, 205, 24, 0.276);
    border: 4px solid #fff;
    height: 16px;
    width: 16px;
    border-radius: 100px;
    background: #333940;
    cursor: pointer;
}

.range .rangeslider-thumb {
    box-sizing: border-box;
    box-shadow: 0px 4px 25px rgba(96, 205, 24, 0.276);
    border: 4px solid #fff;
    height: 16px;
    width: 16px;
    border-radius: 100px;
    background: #60cd18;
    cursor: pointer;
    position: absolute;
    touch-action: pan-x;
    top: 50%;
    transform: translateY(-50%);
    will-change: left;
}

.range .range-output {
    position: absolute;
    left: 6px;
    top: 6px;
    transform-origin: 0 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.range .range-output .output {
    display: block;
    position: absolute;
    height: 30px;
    line-height: 30px;
    min-width: 14px;
    padding: 0 14px;
    top: -22px;
    transform: translate(-50%, -100%);
    background: #60cd18;
    color: #fff;
    border-radius: 100px;
    white-space: nowrap;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
}

.range .range-output .output:before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    border: 10px solid #60cd18;
    border-bottom: none;
    border-left-color: transparent;
    border-right-color: transparent;
    transform: translateX(-50%);
}

.rangecontainers {
    position: relative;
    margin-top: 16px;
}

.rangecontainers span {
    position: absolute;
    bottom: 15px;
    font-size: 12px;
}

.btntrycompressagain {
    margin-bottom: -2px;
    display: inline-block;
    width: 97%;
    text-decoration: none;
    margin-top: 8px;
    background: #2b2f31;
    color: #fff;
    padding: 6px 10px;
    border: 2px solid #2b2f31;
    border-radius: 8px;
    font-size: 12px;
    text-align: center;
}

.btntrycompressagain:hover,
.btntrycompressagain:active,
.btntrycompressagain:focus {
    cursor: pointer;
    outline: none;
    background: #000e14;
    border: 2px solid #000e14;
    color: #fff;
}

.btndownload {
    margin-bottom: -2px;
    display: inline-block;
    width: 88%;
    text-decoration: none;
    margin-top: 8px;
    background: #60cd18;
    color: #fff;
    padding: 6px 10px;
    border: 2px solid #60cd18;
    border-radius: 8px;
    font-size: 12px;
    text-align: center;
}

.btndownload:hover,
.btndownload:active,
.btndownload:focus {
    cursor: pointer;
    outline: none;
    background: #51af12;
    border: 2px solid #51af12;
    color: #fff;
}

.buttonuploads {
    margin-top: 8px;
    background: #60cd18;
    color: #fff;
    padding: 6px 16px;
    border: 2px solid #60cd18;
    border-radius: 8px;
    width: 100%;
    font-size: 16px;
    text-align: center;
}

.buttonuploads:hover,
.buttonuploads:active,
.buttonuploads:focus {
    cursor: pointer;
    outline: none;
    background: #51af12;
    border: 2px solid #51af12;
    color: #fff;
}

#resultdiv {
    width: 100%;
    text-align: center;
}

#resulthere {
    height: 250px;
    overflow-y: auto;
}

@media (min-width: 270px) and (max-width: 670px) {
    .glass-card {
        width: 80%;
    }

    .container_uploadarea {
        width: 90%;
    }
}
