.welcome-view,
.help-view {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(57,72,103,.5);
    z-index: 10000;
}

.welcome-view {
    background-color: rgba(255,255,255,.5);
}

.help-bloc {
    position: absolute;
    padding: 40px 140px;
    background-repeat: no-repeat;
	-webkit-filter: drop-shadow(0px 0px 5px #444);
    filter: drop-shadow(0px 0px 5px #444);
    display: none;
}

.help-bloc.current {
    display: block;
}

.help-bloc.top.left {
    background-position: top left;
    background-image: url('../img/help-top-left.svg');
}

.help-bloc.top.right {
    background-position: top right;
    background-image: url('../img/help-top-right.svg');
}

.help-bloc.bottom.left {
    background-position: top 65px left;
    background-image: url('../img/help-bottom-left.svg');
}

.help-bloc.bottom.right {
    background-position: top 65px right;
    background-image: url('../img/help-bottom-right.svg');
}

.help-view .help-blocs .help-bloc .text {
    width: 450px;
    padding: 5px;
    padding-bottom: 30px;
    background-color: rgba(255,255,255,1);
    /*box-shadow: 0px 0px 10px #555;*/
}

.help-view .help-blocs .help-bloc .text h1 {
    color: white;
    font-size: 20px;
    padding: 10px 10px;
    background-color: #249BEE;
    margin: 0px;
}

.help-view .help-blocs .help-bloc .text p {
    color: #777;
    text-align: justify;
    font-size: 14px;
    padding: 5px 10px;
}

.help-view .help-blocs .help-bloc button {
    height: 30px;
    width: 100px;
    color: white;
    font-size: 12px;
    text-align: left;
    padding-left: 15px;
    text-transform: uppercase;
    line-height: 30px;
    position: absolute;
	right: 155px;
    bottom: 55px;
    border: none;
    background-color: #249BEE;
    background-repeat: no-repeat;
    background-position: center right 5px;
}

.help-view .help-blocs .help-bloc button.next {
    background-image: url('../img/next.svg');
}

.help-view .help-blocs .help-bloc button.end {
    padding-left: 0px;
    text-align: center;
    background-image: none;
}

.welcome-view .welcome {
    width: 1000px;
    height: calc(100% - 200px);
    margin: 80px auto;
    padding: 20px 30px;
    background-color: rgba(36,155,238,.75);
    box-shadow: 0px 0px 10px #444;
    position: relative;
}

.welcome-view .welcome h1 {
    font-size: 40px;
    text-align: center;
}

.welcome-view .welcome .blablabla {
    height: calc(100% - 165px);
    overflow-y: auto;
}

.welcome-view .welcome .blablabla p {
    padding: 10px 20px;
}

.welcome-view .welcome button.take-a-tour {
    height: 45px;
    width: 250px;
    color: #249BEE;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 30px;
    position: absolute;
    right: 50px;
    bottom: 25px;
    border: none;
    background-color: white;
    background-repeat: no-repeat;
    background-position: center right 5px;
}