@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');    

* {
    font-family: Roboto, 'Sans Serif';
}

.bold {
    font-weight: bold;
}

.medium {
    font-weight: 500;
}

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);   
    text-align: center;
    overflow: hidden;
    width: auto;
}

.group {
    display: inline-block;
    width: 33%;
    max-width: 33%;
    overflow: hidden;
    vertical-align: top;
}

.title {
    margin-top: 50px;
    padding-bottom: 50px;
    font-size: 40px;
    color: #FFFFFF;
    font-weight: 1000;
}

.overlay {
    position: absolute;
    text-align: center;
    overflow: hidden;
    width: 100%;
    height: 100%;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.85);
}

.overlay .notice {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);   
    text-align: center;
    overflow: hidden;
}

.subtitle {
    font-size: 28px;
    color: #FFFFFF;
    font-weight: bold;
}

.subtitle.inline {
    padding-top: 15px;
}

.input-text:not(.login), .input-text:focus:not(.login) {
    width: 150px;
    background-color: #2C2F33;
    border: 1px solid #23272A;
    border-radius: 1000px;
    color: #99AAB5;
    height: 30px;
    padding: 5px 10px;
}

.input-button,
.input-button:hover {
    background-color: #2C2F33;
    border: 1px solid #23272A;
    border-radius: 1000px;
    color: #99AAB5;
    height: 30px;
    cursor: pointer;
}

.input-button-text {
    padding: 0 5px;
}

.input-dropdown {
    width: 100px;
    background-color: #2C2F33;
    border: 1px solid #23272A;
    color: #99AAB5;
    height: 30px;
}

select::-ms-expand {
    display: none;
}

.input-file {
    display: none;
}

.input-file-fix {
    max-height: 30px;
}

.input-file-inner {
    padding: 0 5px 0 5px;
    cursor: pointer;
    font-size: 17px;
    display: inline-block;
}

.input-file-label:focus,
.input-file-label:hover {
    cursor: pointer;
}

a:not(.nbr-section), a:not(.nbr-section):link, a:not(.nbr-section):visited, a:not(.nbr-section):hover, a:not(.nbr-section):active {
    color: #6d2aff;
    text-decoration: none;
    cursor: pointer;
}

.body {
    background-color: #2a2c30;
    color: #99AAB5;
}

.media-box {
    display: inline-block;
    margin: 10px;
    top: 0;
    bottom: 0;
}

.media-content {
    max-width: 300px;
    max-height: 168.75px;
    width: auto;
    height: auto;
    display: block;
    box-shadow: 0 0 4px 4px #23272A;
}

.media-page {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);   
    text-align: center;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-left: 250px;
    width: 80%;
}

.scroll-bar::-webkit-scrollbar {
    width: 1em;
}

.scroll-bar::-webkit-scrollbar-track {
    box-shadow: 0 0 4px #23272A;
}

.scroll-bar::-webkit-scrollbar-thumb {
    background-color: #2C2F33;
    outline: 1px solid #23272A;
}

.scroll-bar::-webkit-scrollbar-corner {
    background-color: #2C2F33;
    outline: 1px solid #23272A;
}

/* Notice boxes */
.notice {
    width: 90%;
    height: min-content;
    border-radius: 1000px;
    display: inline-block;
    line-height: 50px;
    border: 1px solid #FFFFFF;
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    margin: 15px;
}

@media screen and (max-width: 1200px) {
    .notice {
        margin-top: 100px;
    }
}

.notice.red {
    border: 1px solid #F04747;
    background-color: rgba(240, 71, 71, 0.2);
}

.notice.purple {
    border: 1px solid #6d2aff;
    background-color: rgba(109, 42, 255, 0.2);
}

.notice.green {
    border: 1px solid #43B581;
    background-color: rgba(67, 181, 130, 0.2);
}

.notice a, .notice a:hover, .notice a:active, .notice a:visited, .notice a:link { color: white !important; }

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 15px;
}

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

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #23272A;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 28px;
    width: 28px;
    left: 4px;
    bottom: -7px;
    background-color: #2C2F33;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #6d2aff;
}

input:checked + .slider:before {
    background-color: #8c60eb;
}

input:checked + .slider:before {
    -webkit-transform: translateX(24px);
    -ms-transform: translateX(24px);
    transform: translateX(24px);
}

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

.slider.round:before {
  border-radius: 50%;
}

/* Login Page Only */
.input-text.login {
    width: 250px;
    color: #99AAB5;
    height: 30px;
    background-color: transparent;
    border: 0;
    font-size: 20px;
    padding-left: 15px;
    margin: 0;
    border-bottom: 2px solid #23272A;
}

.input-text.login::placeholder {
    color: #99AAB5;
    font-size: 18px;
    transition: 0.3s;
}

.input-text.login:focus::placeholder {
    /*transform: translateY(-50px);*/
    opacity: 0;
    transition: 0.3s;
}

.input-text.login:focus {
    outline: none;
}

.input-text.login:focus + .login.icon {
    color: #6d2aff;
    transition: 0.3s;
}

.input-icons {
    position: relative;
    margin-left: 26px;
}

.login.icon {
    position: absolute;
    top: 7px;
    margin-left: -275px;
    font-size: 22px;
    transition: 0.3s;
}

.title.login {
    font-size: 50px;
    padding-bottom: 85px;
}

.input-button.login {
    margin-top: 25px;
    font-size: 18px;
    height: auto;
    padding: 2px 10px;
    border-radius: 100px;
}
/* End of login page */