@import 'variables.css?v=4';
@import 'nav.css?v=9';
@import 'parts.css?v=20';
@import 'forms.css?v=7';
@import 'advertising.css?v=5';
@import 'registration.css?v=2';
@import "abroad-internships.css?v=2";
@import "galleries.css";

/*------------------------------------------------*/

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 150%;
    margin: 0;
    padding: 0;
    top: 0;
    text-align: left;
    height: 100%;
    color: #204058;
    background-color: var(--extra-light-grey);
}

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;
}

/*------------------------------------------------*/

#header-top, #header-bottom {
    border-bottom: 1px solid var(--blue);
    background-color: var(--extra-light-grey);
}

#header-top {
    z-index: 10000;
}

#header-top .box-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

#header-bottom .box-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

#header-top .logo, #header-bottom .logo {
    width: 60%;
    max-width: 270px;
    display: flex;
}

#header-top .logo img{
    width: 100%;
}

#header-bottom .logo {
    opacity: 0;
}

#header-bottom .logo img {
    width: 100%;
    height: auto;
}

#footer {
    background-color: var(--blue);
    color: var(--light-blue);
}

#footer .box-content:first-of-type {
    padding: 60px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#footer .box-content:last-of-type {
    text-align: center;
    border-top: 1px solid rgba(164, 222, 225, 0.15);
}

#footer .box-content:last-of-type a {
    text-decoration: underline;
}

#footer .box-content:last-of-type a:hover {
    text-decoration: none;
}

#footer img {
    width: 80%;
    max-width: 270px;
}

#footer p {
    font-size: 16px;
    margin-top: 0;
    line-height: 1.3;
    margin-bottom: 0;
}

#footer p i {
    font-size: 20px;
    margin-right: 3px;
}

#footer p:not(:last-of-type) {
    margin-bottom: 30px;
}

#footer .box-content div:last-of-type {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

#footer .box-content div:last-of-type div {
    display: flex;
    flex-direction: row;
    align-items: flex-start !important;
    margin-bottom: 40px;
}

#footer .box-content div:last-of-type img{
    max-width: 109px;
}

#footer .box-content div:last-of-type p {
    margin-bottom: 0;
    text-align: right;
}

#footer .box-content div:last-of-type div p {
    max-width: 180px;
    margin-left: 15px;
    margin-top: 0;
    margin-bottom: 0;
    text-align: left;
}

#footer * {
    color: var(--light-blue);
}

#footer a, #footer a:visited {
    text-decoration: none;
}

/*----------------------------------------------------------------------*/

h1 {
    width: 100%;
    font-size: 50px;
    font-weight: 500;
    line-height: 1.2;
}

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:visited {
    color: var(--text);
    transition: 0.3s;
    text-decoration: underline;
}

a:hover {
    color: var(--text);
    text-decoration: none;
}

.link-extra-light-blue, .link-extra-light-blue:hover, .link-extra-light-blue:visited {
    color: var(--extra-light-blue);
}

p {
    margin: 15px 0;
}

hr {
    width: 100%;
    height: 1px;
    border: none;
    border-top: 1px dashed var(--blue);
    margin: 40px 0;
}

.blue-box hr {
    border-top: 1px dashed var(--light-blue);
}

ul, ol{
    margin: 20px 0;
    padding-left: 30px;
}

.stanovy-spolku ol ol {
    margin: 0;
}

ul li::marker {
    color: var(--text);
}

.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 {
    width: 10px;
    height: 10px;
    border-radius: 5px;
}

/* Track */
.responsive-table::-webkit-scrollbar-track, table::-webkit-scrollbar-thumb {
    background-color: var(--extra-light-blue);
    border-radius: 5px;
}

/* Handle */
.responsive-table::-webkit-scrollbar-thumb, table::-webkit-scrollbar-thumb {
    transition: 0.3s;
    background: var(--light-blue);
    border-radius: 5px;
}

/* 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);
}

table.styled-table td, table.styled-table th {
    padding: 2px 8px;
    line-height: 1.2;
    height: 31px;
    vertical-align: middle;
}

table.styled-table.table-content-to-top td, table.styled-table.table-content-to-top th {
    vertical-align: top;
}

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: #f7f7f7;
}

table.styled-table th {
    background-color: var(--light-blue);
}

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;
}

