#flipfull {
	overflow-y: scroll !important;
}

.flipbook-title {
    margin: auto;
    width: 27%;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid lightgray;

}

.flipbook-title h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 19pt;
}

.flipbook-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15pt;
    color: gray;
}

.flipbook-title p {
    font-family: 'Montserrat', sans-serif;
    color: gray;
    text-align: justify;
}

.controls-pdf {
    position: absolute;
    top: 100px;
    right: 49px;
    z-index: 1000;            
    background-color: rgba(255,255,255,0.6);
    padding: 4px 10px 2px;
    border-radius: 12px;   
}

nav {
	background-color: #20b0c0;
}
.menu,
.submenu {   
    list-style-type: none;
	font-family: 'Montserrat', sans-serif;
	z-index:1001;
}
ul.submenu {
	padding-inline-start: 0px;
}
.logo {
    font-size: 20px;
    padding: 7.5px 10px 7.5px 0;
}
.logo-backs {
    position: absolute;
    top:50;
    left: 0;
    width: 100%;
    opacity: 0.4;
    background-image: url('/files/backgrounds/back1.svg');
    background-repeat: no-repeat;
    height: 100%;
    background-position: center left;
    background-size: cover;
}
.item {
    padding: 10px;
}
.item.button {
    padding: 9px 5px;
}
.item:not(.button) a:hover,
.item a:hover::after {
    color: #ccc;
}
/* Mobile menu */
.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
	margin-block-start: 0;
    margin-block-end: 0;
}
.menu li a {
    display: block;
    padding: 15px 5px;
	text-decoration: none;
	cursor: pointer;
	color: #fff;
}
.menu li.subitem a {
    padding: 15px;
}
.toggle {
    order: 1;
    font-size: 20px;
}
.item.button {
    order: 2;
}
.item {
    order: 3;
    width: 100%;
    text-align: center;
    display: none;
}
.active .item {
    display: block;
}
.button.secondary { /* divider between buttons and menu links */
    border-bottom: 1px #444 solid;
}
.submenu {
    display: none;
}
.submenu-active .submenu {
   display: block;
}
.has-submenu i {
    font-size: 12px;
}
.has-submenu > a::after {
    font-family: "Font Awesome 5 Free";
    font-size: 12px;
    line-height: 16px;
    font-weight: 900; 
    content: "\f078";
    color: white;
    padding-left: 5px;
}
.subitem a {
    padding: 10px 15px;
}
.submenu-active {
    background-color: #111;
    border-radius: 3px;
}


.modal {
	display: none;
	position: fixed;
	z-index: 1001;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.4);
  }

  .modal-title {
	color: #666
  }

  .modal-content {
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	width: 40%;
	box-shadow: 0px 0px 14px 3px gray;
	font-family: 'Montserrat', sans-serif;
	font-size: 11pt;
  }

  .close {
	color: #aaaaaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
  }

  .close:hover,
  .close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
  }

/* Tablet menu */
@media all and (min-width: 700px) {
    .menu {
        justify-content: center;
    }
    .logo {
        flex: 1;
    }
    .item.button {
        width: auto;
        order: 1;
        display: block;
    }
    .toggle {
        flex: 1;
        text-align: right;
        order: 2;
    }
    /* Button up from tablet screen */
    .menu li.button a {
        padding: 10px 15px;
        margin: 5px 0;
    }
    .button a {
        background: #0080ff;
        border: 1px royalblue solid;
		text-decoration: none;
		cursor: pointer;
    }
    .button.secondary {
        border: 0;
    }
    .button.secondary a {
        background: transparent;
        border: 1px #0080ff solid;  
    }
    .button a:hover {
        text-decoration: none;
    }
    .button:not(.secondary) a:hover {
        background: royalblue;
        border-color: darkblue;
    }
}
/* Desktop menu */
@media all and (min-width: 960px) {
    .menu {
        align-items: flex-start;     
        flex-wrap: nowrap;
        background: none;
    }
    .logo {
        order: 0;
    }
    .item {
        order: 1;
        position: relative;
        display: block; 
        width: auto;
    }
    .button {
        order: 2;
    }
    .submenu-active .submenu {
        display: block;
        position: absolute;
        left: 0;
        top: 68px;
        background: #111;
    }
    .toggle {
        display: none;
    }
    .submenu-active {
        border-radius: 0;
    }
}
