html {
    overflow-x: hidden;
}

.gradient-background {
    background: linear-gradient( #23a6d5, #23d5ab);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.turntable {
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 800px;
    height: 600px;
    background: #EBEBEB;
    border-radius: 10%;
}

.disc {
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 460px;
    height: 460px;
    background: #2D3E4F;
    border-radius: 50%;
}

.disc::after {
    content: "";
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    background: #EBEBEB;
    border: solid 2px #DB3A3A;
}

.label {
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    background: #FFD166;
}

.label::before,
.label::after {
    content: "";
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 50%;
}

.label::before {
    width: 140px;
    height: 140px;
    background: #FFD166;
    border: solid 1px #FF4D80;
}

.label::after {
    width: 120px;
    height: 60px;
    bottom: 65px;
    background: #FF4D80;
    border-radius: 90px 90px 0 0;
}

.disc-font {
    font-family: Roboto, Arial, Sans-serif;
    font-size: 0.7em;
    text-align: center;
    z-index: 10;
    position: absolute;
    color: #331832;
}

.disc-title {
    margin: 45px;
    left: 10px;
}

.disc-group {
    top: 90px;
    left: 50px;
    width: 60px;
}

.buttons {
    position: absolute;
    margin: auto;
    left: 600px;
    bottom: 70px;
    right: 90px;
    width: 20px;
    height: 20px;
    background: #FECB2F;
    border-radius: 50%;
}

.buttons:before,
.buttons:after {
    content: "";
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.buttons:before {
    background: #FF4B3E;
    left: 25px;
}

.buttons:after {
    background: #FF784F;
    left: 50px;
}

.tone-arm {
    position: absolute;
    margin: auto;
    top: -200px;
    left: 500px;
    bottom: 220px;
    right: 0;
    width: 20px;
    height: 40px;
    background: #b7b6b6;
    border-radius: 10%;
    transform: rotate(20deg);
}

.tone-arm:before,
.tone-arm:after {
    content: "";
    position: absolute;
    margin: auto;
    background: #b7b6b6;
}

.tone-arm:before {
    left: 0;
    right: 1px;
    top: 40px;
    width: 7px;
    height: 300px;
}

.tone-arm:after {
    left: -2px;
    right: 0;
    bottom: 0;
    top: 350px;
    width: 20px;
    height: 30px;
    border-radius: 20%;
}

.spin {
    animation: spin 4s linear infinite;
}

.oscillating {
    animation: oscillating 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes oscillating {
    0% { transform: rotate(20deg); }
    30% { transform: rotate(20.5deg); }
    60% { transform: rotate(20deg); }
    90% { transform: rotate(20.5deg); }
    100% { transform: rotate(20deg); }
}

.search {
    position: relative;
    z-index: 999;
    height: 100px;
    text-align: center;
    margin: 0;
}

.search .search-container {
    height: 50%;
    width: 100%;
    margin-top: 2%;
    background: transparent;
    border: none;
    padding-left: 15px;
}

.search .search-container input[type=search] {
    margin-top: 1.7%;
    width: 50%;
    height: 80%;
    background: transparent;
    border: none;
    color: white;
    font-size: 25px;
}

.search input[type=image] {
    position: absolute;
    width: 3%;
    margin-left: -60px;
    margin-top: 1.7%;
}

.hours {
    position: absolute;
    top: 8%;
    right: 2%;
    z-index: 999;
    color: white;
    font-weight: bold;
}

#setup_button {
    display: none;
}