@import 'variables.css?v=4';
@import 'parts.css?v=19';
@import 'parts-intra.css?v=8';
@import 'nav-intra.css';
@import 'forms.css?v=6';
@import 'advertising.css?v=5';
@import 'attestation.css?v=3';
@import 'evaluation.css?v=3';
@import 'my-account.css?v=3';
@import "abroad-internships-portal.css";
@import "prispevky.css?v=3";

/*------------------------------------------------*/

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 140%;
    margin: 0;
    padding: 0;
    top: 0;
    text-align: left;
    height: 100%;
    color: #fff;
    background-color: var(--intra-bg-blue);
    display: flex;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

/*------------------------------------------------*/

.box {
    position: relative;
    width: 100%;
}

.box-content {
    box-sizing: border-box;
    width: 95%;
    max-width: 1330px;
    padding: 50px 0;
    margin: 0 auto 0 0;
}

.box:first-of-type .box-content {
    padding-bottom: 0;
}

/*----------------------------------------------*/

#header {
    display: none;
    width: 243px;
    height: calc(100vh + 200px);
    position: fixed;
    background-color: var(--blue);
    padding: 15px 20px;
}

#content {
    padding-left: 243px;
    width: 100%;
}

#content-header {
    height: 67px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 0 2.5%;
}

#content-header .user-name {
    display: flex;
    align-items: center;
    margin: 3px 25px 0 25px;
}

#content-header .user-name, #content-header .user-name:hover, #content-header .user-name:visited {
    font-weight: 500;
    font-size: 19px;
    text-decoration: none;
    color: var(--intra-nav-text-blue);
}

#content-header .user-name svg {
    margin-top: -3px;
    margin-left: 10px;
}

#content-content {
    padding-left: 60px;
}

#header .logo{
    width: 100%;
}

#header .logo img {
    width: 100%;
}

/*--------------------------------------------------------*/

#portal-mobile-user-nav, #mobile-header {
    display: none;
}

#mobile-header {
    background-color: var(--blue);
    justify-content: space-between;
    width: 100%;
    z-index: 10000;
    align-items: center;
    height: 67px;
    border-bottom: 2px solid var(--intra-bg-blue);
    padding: 0 2.5%;
    color: var(--intra-nav-text-blue);
}

#mobile-header a {
    display: flex;
}

#portal-mobile-user-nav {
    border-top: 1px solid rgba(255,255,255,.1);
    flex-direction: column;
    align-items: center;
    font-size: 16px;
}

#portal-mobile-user-nav .user-name {
    display: flex;
    align-items: center;
    padding: 20px 0;
}

#portal-mobile-user-nav .user-name svg {
    width: 25px;
    margin-top: -2px;
    margin-left: 10px;
}

#portal-mobile-user-nav a{
    text-decoration: none;
    color: var(--intra-nav-text-blue);
}

/*--------------------------------------------------------*/

.created-by {
    text-align: center;
    border-top: 1px solid rgba(255,255, 255,0.2);
    padding: 20px 0;
    font-size: 16px;
    margin-top: 30px;
    margin-left: -60px;
    max-width: 8000px !important;
    width: calc(100% + 60px) !important;
}

.created-by *{
    color: rgba(255,255,255,0.7) !important;
}

/*--------------------------------------------------------*/

h1 {
    font-size: 30px;
    display: flex;
    line-height: 1.2;
    align-items: center;
    font-weight: 500;
    color: var(--intra-nav-text-blue);
    margin: 0;
}

h1 img {
    height: 24px;
    margin-top: -2px;
    width: auto;
    margin-right: 15px;
}

h2 {
    margin: 20px 0 20px 0;
    font-size: 37px;
    line-height: 1.3;
    font-weight: 500;
    vertical-align: middle;
}

h3 {
    margin: 20px 0 20px 0;
    font-size: 22px;
    line-height: 1.3;
    font-weight: normal;
}

a, a:hover, a:visited {
    color: #009098;
}

/*---------------------------------------------------------------------*/


.responsive-table {
    padding-bottom: 30px;
    width: 100%;
    overflow-x: auto;
}

table.styled-table {
    overflow: auto;
    width: 100% !important;
    display: block;
    height: auto !important;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 12px;
    border: none;
}

/* width */
.responsive-table::-webkit-scrollbar, table::-webkit-scrollbar {
    height: 10px;
    border-radius: 7px;
}

/* Track */
.responsive-table::-webkit-scrollbar-track, table::-webkit-scrollbar-thumb {
    background-color: var(--intra-grey-blue);
    margin: 60px;
    border-radius: 7px;
}

/* Handle */
.responsive-table::-webkit-scrollbar-thumb, table::-webkit-scrollbar-thumb {
    background-color: var(--intra-bg-blue);
    border: 2px solid var(--intra-grey-blue);
    border-radius: 7px;
}

/* Handle on hover */
.responsive-table::-webkit-scrollbar-thumb:hover, table::-webkit-scrollbar-thumb:hover {
    background: var(--blue);
}

table.styled-table {
    padding-bottom: 15px;
}

table.styled-table tbody, table.styled-table thead {
    width: 100%;
    display: table;
    min-width: 600px;
}

table.styled-table tbody {
    margin-top: 30px;
}

table.styled-table tbody tr:not(:first-of-type) td {
    border-bottom: 1px solid var(--light-blue);
}

.part-2 table.styled-table tbody tr:not(:first-of-type) td {
    border-bottom: 1px solid rgba(248,211,72,.4);
}

table.styled-table td, table.styled-table th {
    padding: 10px 8px;
    line-height: 1.2;
    height: 31px;
    vertical-align: middle;
}

table.styled-table th {
    font-size: 18px;
}

table.styled-table td {
    font-size: 16px;
    background-color: transparent;
}

table.styled-table tbody tr:not(:first-of-type):hover td{
    background-color: rgba(255,255,255,.1);
}

table.styled-table th {
    background-color: var(--light-blue);
    color: var(--blue);
}

.part-2 table.styled-table th{
    background-color: var(--yellow);
}

table.styled-table th:first-of-type{
    border-radius: 5px 0 0 5px;
}

table.styled-table th:last-of-type{
    border-radius: 0 5px 5px 0;
}

table.styled-table td:first-of-type{
    padding-left: 0;
}

table.styled-table td:last-of-type{
    padding-right: 0;
}

table.styled-table img {
    width: 21px;
    height: 21px;
    margin-top: 2px;
}
