body{
    margin: 0px;
    font-family: "Roboto";
    font-size: 18px;
    height: 100vh;
    background: #212121;
}

a{
    text-decoration: none;
}

p{
    height: auto;
    margin: 0px;
    padding: 0px;
}

@font-face {
    font-family: 'spdr';
    src: url('spdr.TTF');
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}

input:focus, textarea:focus, button:focus, a:focus{
    outline: none;
}

#bg-img{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 100;
    background-image: url('images/london_3.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(5px);
}

.menu-fade{
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    background: rgba(0, 0, 0, 0.8);
    transition: all 200ms ease-in-out;
    z-index: 1999;
    pointer-events: none;
    opacity: 0;
}

#menuOnOff:checked ~ .menu-fade{pointer-events: stroke; opacity: 1;}

.header{
    background: rgba(0, 0, 0, 0.2);
    color: white;
    font-family: "spdr";
    font-size: 45px;
    width: 100%;
    height: 60px;
    line-height: 60px;
    position: fixed;
    left: 0px;
    top: 0px;
    text-align: center;
    z-index: 1000;
}

/*.header:before{
    content: "";
    position: absolute;
    left: calc(50% - 55px);
    bottom: -27px;
    width: 110px;
    height: 20px;
    background-image: url('images/deco_1.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 500;
}*/

#subname{
    position: absolute;
    left: calc(50% - 125px);
    bottom: -11px;
    height: 20px;
    line-height: 20px;
    width: 250px;
    color: white;
    font-size: 16px;
    font-family: "Playfair Display";
    font-weight: 300;
    text-shadow: 0px 1px 5px black;
    text-align: center;
    display: block;
}

#loginBTN{
    position: absolute;
    right: 10px;
    top: 10px;
    height: 40px;
    width: 40px;
    font-size: 15px;
    background: transparent;
    color: white;
    line-height: 30px;
    border-radius: 2px;
    font-family: "Roboto";
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0);
    transition: all 200ms;
}

#loginBTN:hover{
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
}

.loginBTN-icon{
    height: 26px;
    width: 26px;
    position: absolute;
    right: 7px;
    top: 7px;
    background-image: url('images/login.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#login-checkbox{display: none;}
#login-checkbox:checked ~ .login{display: block;}

.more-login-menu-button{
    position: absolute;
    right: 10px;
    top: 10px;
    height: 40px;
    width: 40px;
    font-size: 13px;
    background: transparent;
    color: white;
    line-height: 30px;
    border-radius: 2px;
    font-family: "Roboto";
    transition: all 100ms;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0);
}

.more-login-menu-button:hover{
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
}

.more-login-menu-button-icon{
    height: 4px;
    width: 4px;
    border-radius: 100%;
    background: white;
    position: absolute;
    left: 18px;
    top: 18px;
}

.more-login-menu-button-icon:before{
    content: "";
    height: 4px;
    width: 4px;
    border-radius: 100%;
    background: white;
    position: absolute;
    left: 0px;
    top: -8px;
}

.more-login-menu-button-icon:after{
    content: "";
    height: 4px;
    width: 4px;
    border-radius: 100%;
    background: white;
    position: absolute;
    left: 0px;
    top: 8px;
}

.more-login-menu{
    width: 227px;
    padding: 5px;
    background: #333;
    color: #eee;
    font-size: 13px;
    font-weight: bold;
    border-radius: 2px;
    border-left: 3px solid #3498db;
    position: absolute;
    right: 0px;
    top: 50px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
    display: none;
}

.more-login-menu:before{
    content: "";
    position: absolute;
    right: 13px;
    top: -13px;
    height: 0px;
    width: 1px;
    border: 7px solid transparent;
    border-bottom-color: #333;
}

.more-login-menu-button input:checked ~ .more-login-menu{display: block;}

.more-login-menu-li{
    height: 30px;
    padding-left: 5px;
    font-size: 13px;
    text-align: left;
    display: block;
    color: #eee;
    line-height: 30px;
    font-family: "Roboto";
    vertical-align: top;
    word-break: keep-all;
    border-top: 1px solid #222;
}

.more-login-menu-li .checkbox-2{margin: 9px 3px;}
.more-login-menu-li:hover{background: #444;}
.more-login-menu-li:last-child{border-bottom: 1px solid #222;}

.login{
    width: 270px;
    background: #333;
    position: absolute;
    right: 10px;
    top: 60px;
    border-radius: 2px;
    border-left: 3px solid #2ecc71;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
    font-family: "Roboto";
    font-size: 17px;
    display: none;
}

.login:before{
    content: "";
    position: absolute;
    right: 13px;
    top: -13px;
    height: 0px;
    width: 1px;
    border: 7px solid transparent;
    border-bottom-color: #333;
}

.login input[type="text"],input[type="password"]{
    color: #999;
    border: none;
    background: white;
    border-radius: 2px;
    height: 30px;
    width: 230px;
    line-height: 30px;
    padding-left: 10px;
    margin: 15px;
    margin-bottom: 5px;
    font-size: 14px;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.login .UI-button-1{width: 240px; border: none; font-size: 17px;}
.login .UI-button-1:focus{background: #3498db;}
.wrong-login{border-left: 3px solid #e74c3c; color: #e74c3c;}

#menuBTN{
    position: fixed;
    left: 10px;
    top: 10px;
    z-index: 2002;
    height: 40px;
    width: 40px;
    background: transparent;
    color: white;
    border-radius: 3px;
    font-size: 60px;
    transition: all 100ms;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0);
}

#menuBTN:hover{
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
}

.menuLI{
    position: absolute;
    left: 5px;
    top: 19px;
    height: 2px;
    width: 30px;
    background: white;
    border-radius: 1px;
}

.menuLI:before{
    content: "";
    position: absolute;
    left: 0px;
    top: -8px;
    height: 2px;
    width: 30px;
    background: white;
    border-radius: 1px;
}

.menuLI:after{
    content: "";
    position: absolute;
    left: 0px;
    bottom: -8px;
    height: 2px;
    width: 30px;
    background: white;
    border-radius: 1px;
}

.menu{
    background: rgb(32, 32, 32);
    box-shadow: 1px 0px 7px 0px rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 22px;
    font-weight: bold;
    width: 250px;
    height: calc(100% - 60px);
    padding-top: 60px;
    position: fixed;
    left: -300px;
    top: 0px;
    text-align: left;
    z-index: 2000;
    white-space: nowrap;
    overflow: hidden;
    transition: all 200ms ease-in-out;
}

.menu-button-holder{
    height: calc(100% - 150px);
    width: 300px;
    display: block;
    overflow-y: auto;
}

.menu-image{
    height: 150px;
    width: 300px;
    background-image: url(images/menu.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#menuOnOff{display: none;}
#menuOnOff ~ .menu{left: -300px;}
#menuOnOff:checked ~ .menu{left: 0px;}

.headerBTN{
    display: block;
    color: white;
    height: 30px;
    line-height: 30px;
    padding: 5px;
    padding-left: 40px;
    font-size: 13px;
    font-weight: bold;
    position: relative;
    transition: all 100ms;
}

.headerBTN:hover{
    color: #34495e;
}

.headerBTN-icon{
    height: 20px;
    width: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 10px;
    top: 10px;
}

#welcome-text-bg{
    width: 100%;
    display: block;
    text-align: center;
    height: 120px;
    padding-top: calc(50vh - 60px);
    padding-bottom: calc(50vh - 60px);
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 101;
    font-size: 0px;
}

.welcome-text-holder{
    height: 100px;
    width: 300px;
    display: inline-block;
    text-align: left;
    padding: 10px;
    position: relative;
}

.welcome-text-image{
    height: 100px;
    width: 100px;
    vertical-align: top;
    position: absolute;
    left: 0px;
    top: -80px;
    z-index: 1;
    font-size: 200px;
    color: #ccc;
    opacity: 0.6;
    line-height: 20px;
    letter-spacing: -15px;
    font-family: "Playfair Display";
}

.welcome-text{
    width: 270px;
    line-height: 28px;
    color: #eee;
    text-align: left;
    margin-left: 5px;
    font-size: 26px;
    font-family: "Playfair Display";
    position: absolute;
    left: 30px;
    top: 13px;
    z-index: 2;
    text-shadow: 0px 2px 7px black;
}

.content{
    width: 80%;
    min-width: 300px;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 40vh;
    transition: all 200ms ease-in-out;
    float: right;
    font-size: 0px;
    position: relative;
    z-index: 101;
}

.add-button{
    height: 60px;
    width: 60px;
    border-radius: 100%;
    background: #1abc9c;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 110;
    box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 1);
    transition: all 150ms ease-out;
}
.add-button:hover{box-shadow: 0px 1px 20px -5px rgba(0, 0, 0, 1);}

.add-button input{display: none;}
.add-button input:checked ~ .add-action-list{display: block;}

.add-button-icon{
    height: 20px;
    width: 20px;
    background-image: url('images/add.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 20px;
    top: 20px;
    border-radius: 1px;
}

.add-action-list{
    width: 227px;
    padding: 5px;
    background: #333;
    color: #eee;
    font-size: 13px;
    font-weight: bold;
    border-radius: 2px;
    border-left: 3px solid #3498db;
    position: absolute;
    right: 50px;
    bottom: 50px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
    display: none;
}

.add-action-li{
    height: 30px;
    line-height: 30px;
    border-top: 1px solid #222;
    display: block;
    transition: background 50ms ease-out;
    overflow: hidden;
    padding-left: 5px;
}

.add-action-li:last-child{
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.add-action-li:hover{
    background: #444;
}

.edit-div{
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 2;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    transition: all 100ms;
    opacity: 0;
    font-size: 0px;
    border-radius: 2px;
}

.edit-div:hover{opacity: 1;}

.edit-button{
    height: 40px;
    width: 40px;
    background: #000;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    border-radius: 3px;
    display: inline-block;
    border: 1px solid white;
    margin: 10px;
    opacity: 0.7;
    vertical-align: top;
    box-sizing: border-box;
}
.edit-button:hover{
    opacity: 1;
    transform: scale(1.2);
}
.edit-button-disabled{
    height: 40px;
    width: 40px;
    background: #000;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    border-radius: 3px;
    display: inline-block;
    border: 1px solid white;
    margin: 10px;
    opacity: 0.3;
    vertical-align: top;
    box-sizing: border-box;
}

.popup-fade{
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    background: rgba(0, 0, 0, 0.9);
    transition: all 200ms ease-in-out;
    z-index: 1900;
    text-align: center;
    pointer-events: none;
    opacity: 0;
}
#popupOnOff-1:checked ~ #popup-fade-1{pointer-events: stroke; opacity: 1;}
#popupOnOff-2:checked ~ #popup-fade-2{pointer-events: stroke; opacity: 1;}
#popupOnOff-3:checked ~ #popup-fade-3{pointer-events: stroke; opacity: 1;}
#popupOnOff-4:checked ~ #popup-fade-4{pointer-events: stroke; opacity: 1;}

.popup{
    height: calc(100% - 90px);
    max-width: 700px;
    min-width: 300px;
    background: #111;
    color: #eee;
    border-radius: 3px;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 20px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    padding-top: 40px;
    position: relative;
}

.popup-headline{
    position: absolute;
    left: 0px;
    top: 0px;
    height: 40px;
    width: 100%;
    line-height: 40px;
    text-align: center;
    color: #eee;
    background: #111;
    font-weight: bold;
    font-size: 18px;
    display: block;
}

.popup-close{
    position: fixed;
    right: 10px;
    top: 10px;
    z-index: 1901;
    height: 40px;
    width: 40px;
    background: black;
    color: white;
    border-radius: 3px;
    font-size: 60px;
    transition: all 100ms;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0);
}
.popup-close:hover{
    background: black;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
}
.popup-close:before{
    content: "";
    position: absolute;
    left: 19px;
    top: 4px;
    height: 33px;
    width: 2px;
    background: white;
    border-radius: 1px;
    transform: rotate(45deg);
}
.popup-close:after{
    content: "";
    position: absolute;
    left: 19px;
    top: 4px;
    height: 33px;
    width: 2px;
    background: white;
    border-radius: 1px;
    transform: rotate(-45deg);
}

.footer{
    display: inline-block;
    height: 50px;
    width: calc(100% - 30px);
    color: #9a9a9a;
    font-size: 14px;
    font-weight: 400;
    line-height: 15px;
    padding: 15px;
    margin-top: 40px;
    text-align: center;
    background: #212121;
    position: relative;
    z-index: 101;
}

.footer label{color: white;}
.footer label:hover{color: #ddd;}

#contactOnOff:checked ~ #contact-fade{pointer-events: stroke; opacity: 1;}
#legalOnOff:checked ~ #legal-fade{pointer-events: stroke; opacity: 1;}

/*////////////////////////////////////////*/
.h1{
    min-height: 30px;
    padding: 10px;
    padding-left: 0px;
    color: white;
    font-size: 27px;
    font-weight: bold;
    font-family: "Roboto";
    display: block;
    text-align: center;
}

.Container{
    display: inline-block;
    font-size: 18px;
    width: calc(50% - 20px);
    padding: 0px 10px;
    padding-bottom: 10px;
    font-family: "Roboto";
    text-align: left;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    vertical-align: top;
}

.TEXT{
    width: calc(100% - 20px);
    min-height: 50px;
    color: white;
    margin: 20px 0px;
    padding: 10px;
    font-size: 18px;
    font-family: "Roboto";
    position: relative;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.3);
    background: #212121;
    border-radius: 2px;
}

.TEXT:after {
    content: "";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

.TXT{
    vertical-align: top;
}

.VIDEO{
    width: 100%;
    min-height: 50px;
    color: white;
    margin: 20px 0px;
    text-align: center;
    position: relative;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.3);
    background: #212121;
    border-radius: 2px;
    padding: 10px 0px;
}

.VID{
    width: calc(50% - 20px);
    min-width: 200px;
    margin-left: 10px;
    margin-right: 10px;
    color: white;
    font-size: 18px;
    vertical-align: top;
}

.AUDIO{
    width: 100%;
    color: white;
    margin: 20px 0px;
    font-size: 18px;
    position: relative;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.3);
    background: #212121;
    border-radius: 2px;
    padding: 10px 0px;
}

#AUDIOimg{
    width: 50px;
    height: 50px;
    margin: 13px;
    background-image: url(images/audio.png);
    background-size: cover;
    border: 3px solid transparent;
    box-shadow: 0px 0px 0px 2px white;
    border-radius: 100%;
    vertical-align: middle;
    display: inline-block;
}

.AUDIO .white{
    border-radius: 3px;
    background: #313131;
    box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.5);
    display: inline-block;
    margin: 0px 10px;
    text-align: center;
}

.AUD{
    vertical-align: middle;
    margin: auto;
    position: relative;
    z-index: 1;
}

.IMAGE{
    width: 100%;
    min-height: 50px;
    color: white;
    margin: 20px 0px;
    text-align: center;
    position: relative;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.3);
    background: #212121;
    border-radius: 2px;
    padding: 10px 0px;
}

img{
    width: calc(50% - 20px);
    min-width: 200px;
    margin: 10px;
    color: white;
    vertical-align: top;
}



@media screen and (max-width: 900px){
    .content{
        width: 100%;
        margin: 0px;
        margin-top: 100vh;
    }
}

@media screen and (max-width: 550px){

    .header{
        font-size: 39px;
        line-height: 55px;
    }

    #subname{bottom: -7px;}

    .Container{width: calc(100% - 20px);}

    .VID{width: calc(100% - 20px);}

    img{width: calc(100% - 20px);}

    #menuOnOff:checked ~ .content{width: 100%;}
}
