@font-face {
    font-family: 'Montserrat';
    font-weight: normal;
    font-style: normal;
    src: url('../font/Montserrat-Regular.ttf');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: bold;
    src: url('../font/Montserrat-Bold.ttf');
}

@font-face {
    font-family: 'Montserrat';
    font-weight: normal;
    font-style: italic;
    src: url('../font/Montserrat-Italic.ttf');
}

@font-face {
    font-family: 'Montserrat';
    font-weight: bold;
    font-style: italic;
    src: url('../font/Montserrat-BoldItalic.ttf');
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: white;
}

::-webkit-scrollbar-thumb {
    background: #c4c4c4;
}

::-webkit-scrollbar-thumb:hover {
    background: #01cc01;
}

* {
    border-radius: 0;
    box-sizing: border-box;
}

html, body {
    font-family: "Montserrat";
    padding: 0;
    margin: 0;
    height: 100vh;
}

.tingle-modal {
    user-select: text !important;
}

/* Title page*/

.title-container {
    width: 100%;
    height: 100%;
}

#title-col1 {
    position: relative;
    height: 100%;
    background-image: url("../img/back.jpg");
    background-size: auto 100%;
    background-repeat: no-repeat;
    border-right: 5px solid white;
}

#title-col2 {
    height: 100%;
    position: relative;
    /* background: rgb(7, 14, 82); */
    background: linear-gradient(0deg, #017724 0%, #01cc01 100%);
}

#img-logo {
    position: absolute;
    top: .5rem;
    right: 1vw;
    height: 3rem;
}

#title {
    position: absolute;
    top: 5rem;
    bottom: 4rem;
    right: 1rem;
    width: 65vw;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    color: white;
    /* background-color: blue;  */
}

#title #caption {
    font-size: 6vh;
    text-align: right;
    text-transform: uppercase;
    font-weight: bold;
}

.delimeter-solid {
    width: 30vw;
    height: 5px;
    background-color: white;
    margin: 1rem 0;
}

#title #more {
    font-size: 2vh;
}

#place {
    position: absolute;
    bottom: 1.2rem;
    left: 2rem;
    color: white;
}

.title-menu {
    position: absolute;
    width: 50%;
    bottom: 10vh;
    left: 10vw;
    font-weight: bold;
    text-align: center;
    padding: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.title-menu-item {
    flex-grow: 1;
    padding: .5rem 0;
    border: 1px solid white;
    text-decoration: none;
    font-size: 3vh;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.title-menu-item:hover {
    transform: scale(1.1);
}

.title-menu-item:nth-child(1) {
    color: white;
    background-color: #edb203;
}

.title-menu-item:nth-child(2) {
    color: #2C6EDE;
    background-color: white;
}

.title-menu-item:nth-child(3) {
    color: white;
    background-color: #ed3d03;
}

/* Content page*/

#content {
    position: absolute;
    top: 4rem;
    bottom: 4rem;
    right: .5rem;
    left: .5rem;
    height: calc(100vh - 4rem - 4rem);
    width: 99vw;
    background-color: white;
    padding: .5rem;
    overflow-x: none;
    overflow-y: scroll;
    border: 2px solid #01cc01;
}

.content-menu {
    position: absolute;
    width: 60%;
    bottom: .75rem;
    right: .5rem;
    font-weight: bold;
    text-align: center;
    display: flex;
    flex-flow: row nowrap;
}

.content-menu-item {
    padding: .5rem;
    flex-grow: 1;
    border: solid 1px white;
    cursor: pointer;
}

.content-menu-item:nth-child(1) {
    color: white;
    background-color: #2C6EDE;
}

.content-menu-item:nth-child(2) {
    color: #2C6EDE;
    background-color: white;
}

.content-menu-item:nth-child(3) {
    color: white;
    background-color: #2C6EDE;
}

/* Menu */

#menu .list-group {
    margin-bottom: .5rem;
}

#menu a {
    text-decoration: none;
}

#menu a .list-group-item {
    color: black;
}

#menu a .active {
    color: white;
}

#menu a :hover {
    color: white;
}

#menu li:hover {
    background-color: #2C6EDE;
}

/* Text */

.text-block {
    text-align: justify;
    text-indent: 2rem;
		column-count: 2;
}

.text-block .header {
    font-weight: bold;
    border-bottom: 2px solid #2C6EDE;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.text-block .practice {
    margin: 2rem 0;
    border-left: .5rem solid #2C6EDE;
}

.text-block .practice p {
    text-indent: 1rem;
    padding-left: 1rem;
}

.text-block p {
    margin-bottom: 0;
}

.text-block img {
    display: block;
    margin: 2rem auto
}

/* Authors */

#authors {
	text-align: center;
}

#authors .caption {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
}

#authors hr {
    border-top: 3px solid gray;
}

#authors p {
    margin-bottom: 0;
}

#authors .names {
    font-size: x-large;
    font-weight: bold;
    color: red;
    margin: 0 auto;
}

.dropdown-menu {
    max-height: 90vh;
    overflow-y: auto;
}

.test-variant .btn {
	min-width: 4rem;
}

.lit-src {
	text-decoration: none;
}