/* You can add global styles to this file, and also import other style files */
html, body {
    background: #fff;
    color: #000;
    font-family: Arial, Verdana, sans-serif;
    font-size: 15px;
    padding: 0;
    margin: 0;
    border: 0;
    min-height: 100vh;
    width: 100%;
    line-height: 20px;
    zoom: 1;
    transform-origin: 0 10px;
    overflow-x: hidden;
}

/*-- up null style --*/
a, a:link, a:focus, a:hover, a:active {
    outline: none;
    text-decoration: none;
    color: rgba(31, 148, 166, 1);
}

ul, ol {
    padding: 0;
    margin: 0;
}

p {
    margin: 0 0 10px;
}

* {
    box-sizing: border-box;
}

span, p {
    max-width: 100%;
    word-wrap: break-word;
}

img {
    max-width: 100%;
}


/*-- container --*/
.container {
    margin: 0 auto;
    padding: 0;
}

/* -- Header - Fixed - Top -- */
.header_fixed {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    height: 63px;
    overflow: hidden;
    z-index: 99;
    box-shadow: 0 0 5px #aaa;
}

.header_fixed > .container {
    position: relative;
    height: 100%;
    display: flex;
}

.header_fixed > .container:after,
.header_fixed > .container:before {
    height: 100%;
    width: 100%;
    background: #fff;
    content: '';
    position: absolute;
    top: 0;
}

.header_fixed > .container:before {
    right: 100%;
}

.header_fixed > .container:after {
    left: 100%;
}

/*-- Logo --*/
.logo a {
    display: block;
    width: 172px;
}

/*-- Top menu --*/
.top_menu {
    background: #fff;
    width: calc(100% - 172px);
}

.top_menu ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 63px;
    width: 100%;
    list-style: none;
}

.top_menu ul li {
    margin-right: 20px;
}

.top_menu ul li a {
    color: #000;
    font-size: 17px;
    padding: 0 30px 0 10px;
    height: 27px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    transition: color 0.3s linear;
}

.top_menu ul li.dashboard-menu-item a {
    background: url("../img/dashboard_icn.png") no-repeat right bottom;
}

.top_menu ul li.user-menu-item a {
    background: url("../img/user_icon.png") no-repeat right bottom;
}

.top_menu ul li.logout-menu-item a {
    background: url("../img/logout_icon.png") no-repeat right bottom;
}

.top_menu ul .studentenpas a {
    background: url("../img/bilet.png") no-repeat right bottom;
    padding-right: 35px;
    transform: translateY(-2px);
}

.top_menu ul .studentenpas a:hover {
    background-position: right bottom !important;
}

.top_menu ul li.active:first-child a,
.top_menu ul li.active:nth-child(2) a,
.top_menu ul li.active:last-child a,
.top_menu ul li:first-child a:hover,
.top_menu ul li:nth-child(2) a:hover,
.top_menu ul li:last-child a:hover {
    background-position: right top;
    color: #dc5915;
}

.secondary_menu {
    transition: all 0.3s linear;
    transform: rotate(90deg);
    cursor: pointer;
    font-weight: bold;
    color: #000;
    margin-top: 6px;
}

.secondary_menu:hover {
    color: #dc5915;
}

/*-- After - Header Menu - Second LvL --*/
.after-header {
    position: fixed;
    top: -50px;
    transition: all 0.5s linear;
    height: 50px;
    width: 100%;
}

.after-header.open {
    position: fixed;
    background: #ebebeb;
    top: 63px;
    z-index: 98;
    display: flex;
    align-items: center;
}

.second_menu > ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.second_menu a {
    color: #000;
    padding: 0 15px;
}

.second_menu a:hover {
    color: #dc5915;
}

/* -- Footer -- */

.footer {
    background: #ebebeb;
    width: 100%;
}

.footer > .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 0;
}

.footer .nav-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.menu-bottom ul {
    display: flex;
    flex-direction: column;
    list-style: none;
}

.menu-bottom ul li a {
    margin: 5px 0;
    display: block;
    font-size: 16px;
    color: #656565;
    padding: 5px 0;
    opacity: 0.8;
}

.menu-bottom ul li a:hover {
    color: #333;
    opacity: 1;
}

.socials {
    width: 25%;
    display: flex;
    justify-content: space-between;
}

.socials p {
    width: 100%;
}

.socials a {
    color: transparent;
    width: 24px;
    opacity: 0.8;
    display: inline-block;
    height: 24px;
    margin: 0 15px;
}

.socials a.soc_f {
    background-position: -52px center;
}

.socials a.soc_yt {
    background-position: -106px center;
}

.socials a.soc_in {
    background-position: -158px center;
}

.socials a.soc_tw {
    background-position: -208px center;
}

.socials a:hover {
    opacity: 1;
}

.socials a:last-child {
    margin-right: 0;
}

.socials p {
    display: flex;
    justify-content: space-around;
}

.socials a {
    background-image: url("../img/footer_soc.png");
    margin: 0;
}

/*-- copyright --*/
.copyright {
    width: 100%;
    text-align: right;
    font-size: 16px;
    color: #adadad;
}


/*-- responce --*/
@media (min-width: 1700px) {
    .container {
        width: 1700px;
    }
}

@media (min-width: 1200px) and (max-width: 1699px) {
    .container {
        width: 1190px;
    }

    .top_menu ul li {
        margin-left: 0;
        margin-right: 0;
    }

    .top_menu ul li a {
        font-size: 17px;
        padding: 0 15px;
        background: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        width: calc(100% - 30px);
    }

    .top_menu ul li {
        margin-left: 0;
        margin-right: 0;
    }

    .top_menu ul li a {
        padding: 0 10px;
        font-size: 16px;
        background: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .container {
        width: calc(100% - 30px);
    }

    .top_menu ul li {
        margin-left: 0;
        margin-right: 0;
    }

    .top_menu ul li a,
    .top_menu ul .studentenpas a {
        padding: 0 6px;
        font-size: 15px;
        background: none !important;
    }
}

@media (max-width: 767px) {
    .top_menu ul li a {
        font-size: 0;
    }

    .socials, .socials p {
        width: 70px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .socials a {
        margin: 5px;
        background-repeat: no-repeat;
    }
}


