html {
    height: 100%;
    width: 100%;
}
body {
    top:0px !important;
}


.skiptranslate {
    display: none !important;
}

body {
    height: 100%;
    width: 100%;
    font-family: Raleway, sans-serif;
    font-weight: 400;
    color: #181818;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgb(111,111,111);
    background: linear-gradient(0deg, rgba(111,111,111,0.5102415966386555) 0%, rgba(255,255,255,0) 50%) no-repeat;
}

.wrapper-root {
    /*width: 1580px;
    height: 100%;
    position: relative;
    margin-left: auto;
    margin-right: auto;*/

}

.wrapper-book {
    width: 1480px;
    height: 100%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
}


#book {
    position: relative;
    width: 1480px;
    height: 960px;
}

#book .shadow {
    -webkit-box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
}

.book-leftpage,
.book-rightpage {
    height: 60px;
    width: 60px;
    z-index: 200;
    display: block;
    border-radius: 50%;
    background-color: #252B4D;
    border: none;
    position: absolute;
    top: 50%;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.book-leftpage:hover,
.book-rightpage:hover {
    opacity: 0.8;
}

.book-leftpage {
    left: -90px;
    background-image: url(../img/content/arrow.svg);
    background-position: center center;
    background-repeat: no-repeat;
}

.book-rightpage {
    right: -90px;
    transform: rotate(0.5turn);
    background-image: url(../img/content/arrow.svg);
    background-position: center center;
    background-repeat: no-repeat;
}

.book-rightpage p {
    display: none;
}

.book-rightpage.first-page p{
    display: block;
}

.book-rightpage p {
    color: #252B4D;
    position: absolute;
    top: -25px;
    transform: rotate(-0.5turn);
    width: 100%;
    text-align: center;

}



.page-content {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: white;
}

.page-content:before {
    content: "";
    height: 100%;
    width: 40px;
    display: block;
    position: absolute;
    top: 0;
    z-index: 200;
}

.even .page-content:before{
    right: 0;
    background: -webkit-gradient(linear, left top, right top, color-stop(5%, rgba(0, 0, 0, 0)), color-stop(95%, rgba(0, 0, 0, 0.15)));
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0.15) 95%);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0.15) 95%);
}

.odd .page-content:before{
    left: 0;
    background: -webkit-gradient(linear, right top, left top, color-stop(5%, rgba(0, 0, 0, 0)), color-stop(95%, rgba(0, 0, 0, 0.15)));
    background: -o-linear-gradient(right, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0.15) 95%);
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0.15) 95%);
}

/*#book .p1 .page-content:before,
#book .p10 .page-content:before
{
    background:none;
}*/

.page-content-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #252B4D;
}

.pagination {
    position: absolute;
    left: 68px;
    bottom: 0;
    height: 70px;
    width: 60px;
    background: white;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border: 2px solid #252B4D;
    border-bottom: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.pagination-number {
    color: #252B4D;
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
}

.footer-namesite {
    font-size: 18px;
    line-height: 18px;
    width: 100%;
    text-align: center;
    display: block;
    font-weight: 600;
    color: white;
    text-decoration: none;
}

.page-content-header {
    height: 120px;
    background-color: #FDB815;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.header-labels {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-left: 65px;
    height: 40px;
}

.header-labels-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 100%;
    width: auto;
}

.header-labels-item + .header-labels-item {
    border-left: 2px solid white;
    padding-left: 16px;
}

.header-labels-item:last-child .header-labels-item-text {
    max-width: 152px;
}

.header-labels-item-icon {
    width: 40px;
    height: 40px;
    display: block;
    min-width: 40px;
    max-height: 40px;
}

.header-labels-item-text {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    margin-left: 10px;
    margin-right: 30px;
    max-width: 105px;
}

.logo {
    display: block;
    z-index: 10;
    margin-top: 63px;
    position: absolute;
    right: -6px;
    bottom: -25px;
    width: 280px;
    height: 104px;
}

.title-block {
    width: 100%;
    height: 54px;
    position: relative;
    z-index: 5;
    display: block;
    background: url("../img/content/titleblock-background.svg") no-repeat;
}

.title-block:before {
    content: "";
    display: block;
    width: 100%;
    height: 12px;
    background-color: #252B4D;
    position: absolute;
}


.title-block p {
    font-size: 24px;
    color: white;
    margin-left: 70px;
    line-height: 54px;
    font-weight: 600;
}

.page-content-body {
    display: block;
    position: relative;
    margin-top: 35px;
    height: 745px;
}

.delimiter {
    width: 100%;
    height: 12px;
    margin-top: 20px;
    display: block;
    background-color: #252B4D;
}

.overlay{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: rgba(0,0,0,0.7);
}

.overlay.on{
    display: block;
}

.popup-window-video{
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 200;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 800px;
    height: 450px;
    background: yellow;
}

.lang-container{
    display: block;
    position: absolute;
    top: 20px;
    right: -72px;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.lang-item{
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: black;
    font-weight: bold;
    text-align: center;
    line-height: 32px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-decoration: none;
}


.lang-item.active{
    background-color: #252B4D;
    color: white;
}