@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: #edb203;
}

::-webkit-scrollbar-thumb:hover {
    background: #ed3d03;
}

.noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

* {
    border-radius: 0;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: #2C6EDE;
    box-shadow: none;
}

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%;
}

.index-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("../img/back.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

#title-col1 {
    position: relative;
    height: 100%;
    background-image: url("../img/back.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

#title-col2 {
    height: 100%;
    position: relative;
    /* background: rgb(7, 14, 82); */
    background: linear-gradient(0deg, #0b35c0 0%, #417cfc 100%);
}

#img-logo {
    position: absolute;
    top: .5rem;
    right: 1vw;
    height: 3rem;
}

#title {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    /* background-color: blue;  */
    text-shadow: black 2px 2px;
}

#title #caption {
    font-size: 6vh;
    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 {
    font-weight: bold;
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.title-menu-item {
    flex-grow: 1;
    padding: 1rem;
    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: #2C6EDE;
}

.title-menu-item:nth-child(4) {
    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 white;
}

.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;
}

.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: 0.5rem 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;
    text-align: justify;
}

#authors .name {
    font-size: 2rem;
    font-weight: bold;
    color: red;
    margin: 0 auto;
}

#authors .job {
    font-size: 1.5rem;
    margin: 0 auto;
}

.dropdown-menu {
    max-height: 90vh;
    overflow-y: auto;
}

.list-group-item {
    margin-bottom: .5rem;
}

.list-group-item p {
    margin: 0;
    font-size: 0.9rem;
}

.list-group-item p:not(:first-child) {
    margin-left: 1rem;
}

.highlight {
    background-color: #2C6EDE;
    color: white;
}

.draggable {
    cursor: move;
    margin: 0 0.5rem;
}