input[type="range"] {
    height: 15px;
    -webkit-appearance: none;
    width: 100%;
    background: #1f2336;
    border-radius: 50px;
    padding: 0px;
    border: none;
}
input[type="range"]:focus {
    outline: none;
}
input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 15px;
    cursor: pointer;
    box-shadow: 0px 0px 0px #000000;
    background: #0e1118;
    border-radius: 100px;
}
input[type="range"]::-webkit-slider-thumb {
    box-shadow: 0px 0px 0px #000000;
    border: 0px solid #000000;
    height: 15px;
    width: 55px;
    border-radius: 100px;
    background: #ffff11;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: 1.5px;
}
input[type="range"]:focus::-webkit-slider-runnable-track {
    background: #0e1118;
}
input[type="range"]::-moz-range-track {
    width: 100%;
    height: 15px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 0px 0px 0px #000000;
    background: #0e1118;
    border-radius: 100px;
}
input[type="range"]::-moz-range-thumb {
    box-shadow: 0px 0px 0px #000000;
    border: 0px solid #000000;
    height: 15px;
    width: 55px;
    border-radius: 100px;
    background: #ffff11;
    cursor: pointer;
}
input[type="range"]::-ms-track {
    width: 100%;
    height: 15px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
}
input[type="range"]::-ms-fill-lower {
    background: #0e1118;
    border: 0px solid #000000;
    border-radius: 56px;
}
input[type="range"]::-ms-fill-upper {
    background: #0e1118;
    border: 0px solid #000000;
    border-radius: 56px;
}
input[type="range"]::-ms-thumb {
    border: 0px solid #000000;
    height: 5px;
    width: 55px;
    border-radius: 100px;
    background: #ffff11;
    cursor: pointer;
}
input[type="range"]:focus::-ms-fill-lower {
    background: #0e1118;
}
input[type="range"]:focus::-ms-fill-upper {
    background: #0e1118;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
}
.tabcontent {
    display: none;
}
.input {
    position: absolute;
    opacity: 0;
}
.label {
    width: auto;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px 5px 0 0;
    color: #276897;
    margin-top: 10px;
}

.label:active {
    color: #fff;
}

.input:focus + .label {
    z-index: 1;
}

.input:checked + .label {
    color: #daddff;
}

.panel {
    display: none;
    order: 99;
    height: 170px;
    padding: 10px 20px 0px 20px;
}

.input:checked + .label + .panel {
    display: block;
}

.scrollable {
    overflow-y: scroll;
}
.scroll-box {
    overflow-y: scroll;
    height: 150px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 220px;
    overflow: auto;
    right: 0;
    z-index: 1;
    margin-top: 20px;
}

.show {
    display: block;
}

.profile a,
.profile a:hover {
    text-decoration: none;
}

.avatar img {
    width: 37px;
    height: 37px;
    margin-right: 20px;
    border-radius: 100px;
    background-color: #0e1118;
}

.avatar .name-only {
    padding: 8px 0;
}

input::-moz-focus-inner,
input::-moz-focus-outer {
    border: none;
}
input:focus {
    outline: none;
}
button::-moz-focus-inner,
input::-moz-focus-outer {
    border: none;
}
button:focus {
    outline: none;
}
textarea::-moz-focus-inner,
input::-moz-focus-outer {
    border: none;
}
textarea:focus {
    outline: none;
}
