* {
    margin: 0;
    padding: 0;
    color: #fff;
}

body, html {
    height: 100%;
}

body {
    background-image: url("../img/bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

body::after{
    position:absolute; width:0; height:0; overflow:hidden; z-index:-1;
    content:url("../img/entrance.png");
}

.container {

}

.box {
    display: block;
    background: #AB1818 0% 0% no-repeat padding-box;
    border-radius: 61px;

    min-width: 520px;
    text-align: center;

    margin-top: 25px;
    box-shadow: 0px 3px 6px #00000029;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.box > .box-image {
    background-color: #fff;
    background-image: url("../img/music-notes.png");
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;

    width: 100px;
    height: 100px;

    display: block;

    position: relative;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);

    border-radius: 50%;

    box-shadow: 0px 3px 6px #00000029;
}

.box > .box-content {
    margin-top: -30px;

    margin-bottom: 30px;
}

.title {
    font-family: Lobster_Bold;
    font-size: 73px;
}

.text {
    font-family: Merriweather_Regular;
    font-size: 31px;

    padding: 60px 60px;
}

.login-button {
    /*background-color: #d13e3e;*/
    background-color: #731111;

    box-shadow: 0px 3px 6px #00000029;

    margin: 0 30px;

    border-radius: 48px;

    text-align: left;

    height: 96px;
    cursor: pointer;
}

.avatar {
    width: 96px;
    height: 96px;

    border-radius: 50%;

    display: inline-block;

}

.message {
    display: inline-block;
    position: absolute;

    left: 70px;
    right: 0;

}

.message > span {
    width: 100%;
    display: block;

    text-align: center;

    font-family: Lobster_Regular;
}

.error.box > .box-image {
    background-image: url("../img/broken-link.png");
}

.settings.box > .box-image {
    background-image: url("../img/lamp.png");
}

.settings.box2 > .box-image {
    background-image: url("../img/setting2.png");
}

.client.box {
    width: 1420px;
}

.box > .box-content > .box-split-container  {
    display: flex;
    margin-top:  -70px;
}

.box > .box-content > .box-split-container > .box-split {
    width: 50%;
}

.entrance-image {
    display: block;

    background-image: url("../img/entrance.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    height: 100%;

    width: 530px;
    margin-right: 30px;
    /*margin-top:  -20px;*/
    float: right;
    border-radius: 20px;

    box-shadow: 0px 3px 6px #00000029;
}

.client-info > .client-name {
    font-family: Lobster_Regular;
    font-size: 60px;

    text-align: left;
}

.client-info > .client-text {
    font-family: Merriweather_Regular;
    font-size: 31px;

    margin: 35px 0 70px;

    text-align: left;
}

.client-info {
    padding: 0 30px;
}

.volume-display {
    font-family: Lobster_Regular;
    font-size: 36px;
    margin-bottom: 30px;
}

.volume-background {
    text-align: left;

    background-color: #731111;

    border-radius: 48px;
    height: 96px;

    box-shadow: 0px 3px 6px #00000029;
}

.volume-background > input{
    height: 96px;
    background: none;

    position: absolute;

    margin-left: 20px;
}

input[type=range] {
    -webkit-appearance: none;
    width: 540px;
}
input[type=range]:focus {
    outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 0px 0px 0px #000000;
    background: #ffffff;
    border-radius: 5px;
    border: 0px solid #000000;
}
input[type=range]::-webkit-slider-thumb {
    box-shadow: 0px 0px 0px #000000;
    border: 0px solid #ffffff;
    height: 40px;
    width: 40px;
    border-radius: 20px;
    background: #ffffff;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -15px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
    background: #ffffff;
}
input[type=range]::-moz-range-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 0px 0px 0px #000000;
    background: #ffffff;
    border-radius: 5px;
    border: 0px solid #000000;
}
input[type=range]::-moz-range-thumb {
    box-shadow: 0px 0px 0px #000000;
    border: 0px solid #ffffff;
    height: 40px;
    width: 40px;
    border-radius: 20px;
    background: #ffffff;
    cursor: pointer;
}
input[type=range]::-ms-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    animate: 0.2s;
    background: transparent;
    border-color: transparent;
    color: transparent;
}
input[type=range]::-ms-fill-lower {
    background: #ffffff;
    border: 0px solid #000000;
    border-radius: 10px;
    box-shadow: 0px 0px 0px #000000;
}
input[type=range]::-ms-fill-upper {
    background: #ffffff;
    border: 0px solid #000000;
    border-radius: 10px;
    box-shadow: 0px 0px 0px #000000;
}
input[type=range]::-ms-thumb {
    margin-top: 1px;
    box-shadow: 0px 0px 0px #000000;
    border: 0px solid #ff0011;
    height: 40px;
    width: 40px;
    border-radius: 20px;
    background: #ffffff;
    cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
    background: #ffffff;
}
input[type=range]:focus::-ms-fill-upper {
    background: #ffffff;
}

.setting-title {
    font-size: 37px;
    font-family: Lobster_Regular;

    margin-bottom: 10px;
}

.setting-button {
    line-height: 70px;
    background-color: #731111;
    height: 70px;
    border-radius: 35px;
    width: 450px;
    font-size: 20px;
    font-family: Merriweather_Regular;

.setting-button2 {
    line-height: 70px;
    background-color: #731111;
    height: 70px;
    border-radius: 35px;
    width: 350px;
    font-size: 20px;
    font-family: Merriweather_Regular;


    position: absolute;
    top: 0;
    left: 50%;

    transform: translate(-50%, 0);

    cursor: pointer;
}

.setting-button.hue-not-found {
    cursor: auto;
}

.setting-button.hue-found {
    background-color: #339315;
}

.setting-button-container {
    height: 70px;
    position: relative;
}

.setting-hue-light {
    width: 800px;
    margin: 0 20px;
}

.setting-hue-light-container {
    display: inline-block;
    background-color: #731111;
    margin: 20px;
    padding: 10px;
    border-radius: 20px;
}

.setting-hue-light-container > select {
    width: 200px;

    background-color: #8e2929;
    padding: 6px;
    line-height: 50px;
    font-family: 'Merriweather_Regular';
    font-size: 20px;
    border: none;
    height: 40px;
    border-radius: 20px;
    outline: none;
}

.setting-hue-icon {
    background-image: url("../img/lamp.png");
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fff;
    background-size: 50px;

    display: block;
    width: 70px;
    height: 70px;
    margin: 0 auto;

    border-radius: 50%;
}

.setting-hue-text {
    font-size: 20px;
    font-family: Merriweather_Regular;

    margin: 20px;
}

option {
    color: #000;
    background-color: #fff;
}

@media screen and (max-width: 1420px) {
    .client.box {
        width: 710px;
    }

    .box-right {
        display: none !important;
    }

    .box-left {
        width: 100% !important;
    }

    .client-info > .client-name {
        text-align: center;
    }

    .client-info > .client-text {
        text-align: center;
    }

    input[type=range] {
        width: 510px;
    }

    .box > .box-content > .box-split-container {
        margin-top: -50px;
    }
}

.loader {
    width: 30px;
    height: 30px;

    vertical-align: middle;

    display: inline-block;

    background-image: url("../img/loader.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    animation-name: loader;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-direction: normal;

}

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

[data-settings-toggle] {
    position: fixed;
    top: 0;
    right: 0;

    width: 80px;
    height: 80px;

    display: block;

    background-color: #fff;

    margin: 40px;

    background-repeat: no-repeat;
    background-size: 60px;
    background-position: center;

    border-radius: 50%;

    box-shadow: 0px 3px 6px #00000029;

    cursor: pointer;

    background-image: url("../img/lamp.png");

    -webkit-transition: background-image 500ms ease;
    -moz-transition: background-image 500ms ease;
    -ms-transition: background-image 500ms ease;
    -o-transition: background-image 500ms ease;
    transition: background-image 500ms ease;

}

[data-settings-toggle="open"] {
    background-image: url("../img/close.png");
}

#hue-disconnect {
    cursor: pointer;
}
