/* @import url('../../keycloak/lib/zocial/zocial.css');*/

@font-face {
    font-family: 'GothamRounded-Light';
    src: url('../fonts/GothamRounded-Light.eot');
    src: local('☺'), url('../fonts/GothamRounded-Light.woff') format('woff'), url('../fonts/GothamRounded-Light.ttf') format('truetype'), url('../fonts/GothamRounded-Light.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GothamRounded-Book';
    src: url('../fonts/GothamRounded-Book.eot');
    src: local('☺'), url('../fonts/GothamRounded-Book.woff') format('woff'), url('../fonts/GothamRounded-Book.ttf') format('truetype'), url('../fonts/GothamRounded-Book.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}
/*
@font-face {
    font-family: 'GothamRounded-Book';
    src: url('../font/GothamRounded-Book.otf');
}

@font-face {
    font-family: 'GothamRounded-Bold';
    src: url('../font/GothamRounded-Bold.otf');
}

@font-face {
    font-family: 'GothamRounded-Light';
    src: url('../font/GothamRounded-Light.otf');
}*/
/* reset */
* {
    box-sizing: border-box;
}
html, body, div, span,
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
body {
  line-height: 1;
    font-family: 'GothamRounded-Book', sans-serif;
}
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
html,body {
  width: 100%;height: 100%;
}
ol, ul {
  list-style: none;
    margin: 0;
}
a,button {
    outline: none;
}
.container {
    max-width: 1364px;
    margin: 0 auto;
}
.text-center {
    text-align: center;
}
.header {
    background-color: #fff;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.d-flex {
    display: flex;
}
.justify-center {
    justify-content: center;
}
.space-between {
    justify-content: space-between;
}
.align-center {
    align-items: center;
}
.justify-end {
    justify-content: flex-end;
}
.flex-column {
    flex-direction: column;
}
.ml-05 {
    margin-left: 5px;
}
.pt-3 {
    padding-top: 30px;
}
.large {
    font-size: 3.4rem;
}
.uppercase {
    text-transform: uppercase;
}
.header__logo {
    width: 81px;
    height: 30px;
}

main {
    background-color: #F5F5F5;
    min-height: calc(100vh - 122px);
}

header .container {
    height: 62px;
    width: 100%;
    padding: 0;
}

header a {
    text-decoration: none;
    color: #000;
}

.header__nav__item{
    position: relative;
    border: 1px solid #E5E5E5;
    border-width: 0 1px 0 1px;
    height: 100%;
    display: flex;
    align-items: center;
}

.header__nav__item > a {
    position: relative;
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: background-color .25s ease-in-out;
}

.header__nav__item:not(.header__nav__item--user) > a:hover {
    background-color: #FFF4E5;
    transition: background-color .25s ease-in-out;
}

.header__nav__item--user {
    border-left-width: 0;
}

.header__nav__item--user {
    min-width: 208px;
}

.header__nav__item--user a {
    padding-left: 52px;
    width: 100%;
}

.header__nav__item--user > a::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 17px;
    background: transparent no-repeat url(../img/user.png) 100%;
    left: 20px;
    top: 34%;
}

.bold {
    font-family: 'GothamRounded-Bold', sans-serif;
    font-weight: bold;
}
.header__nav__item--user::after {
    content: "";
    background: transparent url(../img/arrow-down.svg) no-repeat 50% 50%/contain;
    width: 13px;
    height: 8px;
    position: absolute;
    right: 20px;
    bottom: 25px;
    transition: bottom .25s ease-in-out;
}

.header__nav__item:hover > .header__dropdown {
    display: block;
    height: auto;
    opacity: 1;
    transition: opacity .25s ease-in-out;
}

.header__nav__item--user:hover::after {
    bottom: 15px;
    transition: bottom .25s ease-in-out;
}

.header__nav > ul {
    height: 100%;
}

.header__nav {
    font-size: 13px;
}

.header__dropdown {
    position: absolute;
    left: 0;
    top: 62px;
    width: 100%;
    background-color: #fff;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity .25s ease-in-out;    
}

.header__dropdown__item {
    display: block;
}

.header__dropdown__item a {
    padding: 20px 15px 15px 15px;
    display: block;
    border-top: 1px solid #E5E5E5;
    transition: background-color .25s ease-in-out;
    text-align: center;
}

.header__nav__item--user .header__dropdown__item a {
    padding-left: 52px;
    text-align: left;
}


.header__dropdown__item a:hover {
    background-color: #FFF4E5;
    transition: background-color .25s ease-in-out;
}

.header__dropdown__item:last-child {
    border-bottom: 1px solid #E5E5E5;
}

.header__title {
    font-size: 22px;
    padding-left: 25px;
}

.header__dropdown ul {
    padding: 0;
}

main .container {
    padding: 70px 0;
}

h1 {
    font-size: 60px;
    line-height: 72px;
    margin-bottom: 60px;
    font-family: 'GothamRounded-Light', sans-serif;
}

p.instruction {
    margin-bottom: 1em;
}

.pathbox-row {
    flex-wrap: wrap;
    margin: 0 -15px;
}

.pathbox__wrapper {
    width: 33.3333%;
    padding: 0 15px;
    display: flex;
}

.pathbox__item {
    border-top: 5px solid #F99D1C;
    background-color: #fff;
    padding: 25px 35px 25px 0;
    display: flex;
    margin-bottom: 30px;
    justify-content: space-between;
    text-decoration: none;
    color: black;
    transition: background-color .25s ease-in-out;
}

.pathbox__item:hover {
    background-color: #FFF4E5;
    transition: background-color .25s ease-in-out;
}
.pathbox__content {
    width: 61%;
}

.pathbox__content h2 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 12px;
}

.pathbox__content p {
    color: #5D5D5D;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 25px;
}
.pathbox__image-wrapper img {
    max-width: 92px;
    height: auto;
    max-height: 92px;
}

.pathbox__image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39%
}
footer {
    background-color: #E3E3E3;
    color: #5D5D5D;
    padding: 22px;
}

.m-b-0 {
    margin-bottom: 0 !important;
}

.p-t-0 {
    padding-top: 0 !important;
}

.p-b-0 {
    padding-bottom: 0 !important;
}
.container--smaller {
    max-width: 985px;
}
.container--small {
    max-width: 470px;
}
.form-wrapper,
.form-wrapper__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}
.form-wrapper.login,
.form-wrapper.forgotten-password {
    background-color: white;
    padding: 60px 44px;
}

.form-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-row input:not(.btn) {
    max-width: 812px;
    width: 100%;
    height: 43px;
    border: 1px solid #D3D3D3;
    border-radius: 0;
    -webkit-appearance: none;
    padding: 12px;
}

.form-row input:hover,
.form-row input:focus {
    border-color: #F99D1C;
}

.form-row input:focus {
    outline: none;
    box-shadow: none;
}

.form-row label {
    font-size: 14px;
    line-height: 16px;
    padding-right: 10px;
} 

.label-wrapper,
.input-wrapper {
    display: flex;
    align-items: center;
}

.label-wrapper {
    width: 165px;
    justify-content: flex-end;
    text-align: right;
}

.input-wrapper {
    width: 100%;
    justify-content: flex-start;
}

.input-wrapper--button {
    flex-wrap: wrap;
}

.change-password .label-wrapper {
    width: 208px;
}

.login .input-wrapper,
.forgotten-password .input-wrapper {
    max-width: 248px;
}

.login .label-wrapper {
    width: 69px;
}

.forgotten-password .label-wrapper {
    width: 
}

.btn {
    font-family: 'GothamRounded-Bold', sans-serif;
    -webkit-appearance: none;
    background-color: #F99D1C;
    color: white;
    font-weight: bold;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 51px;
    box-shadow: none;
    border: 0;
    text-transform: uppercase;
    min-width: 125px;
    padding: 18px 45px 18px 32px;
    margin-top: 12px;
    cursor: pointer;
    transition: background .25s ease-in-out;
    position: relative;
    text-decoration: none;
}

.btn::after {
    content: "";
    position: absolute;
    height: 7px;
    width: 12px;
    background: transparent no-repeat url(../img/arrow-down-white.svg) 100%;
    transform: rotate(-90deg);
    right: 29px;
    top: 42%;
}

.btn:hover,
.btn:focus {
    background-color: #f8af4a;
    transition: background .25s ease-in-out;
    color: white;
    outline: none;
    box-shadow: none;
}


.link-wrapper {
    display: block;
    width: 100%;
    margin-top: 27px;
    position: relative;
    padding-left: 16px;
}

.link-wrapper::before {
    content: "";
    position: absolute;
    height: 7px;
    width: 12px;
    background: transparent no-repeat url(../img/arrow-down.svg) 100%;
    transform: rotate(90deg);
    left: 0;
    top: 38%;
}

.link-wrapper .link {
    color: black;
    font-size: 14px;
    text-decoration: underline;
}

.link-wrapper .link:hover {
    text-decoration: none;
}

.text-wrapper {
    margin-top: 40px;
}

.text-wrapper p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0;
}

.status-box {
    min-height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 30px;
    text-align: center;
    font-size: 14px;
    line-height: 18px;
    color: white;
    background: #E21E1E;
}

.alert-success {
    background: #2AB673;
}

@media (max-width: 1024px) {
    .pathbox__wrapper {
        width: 50%;
    }
}

@media (max-width: 1394px) and (min-width: 768px) {
    main .container {
        padding-right: 15px !important;
        padding-left: 15px !important;
    }

    .header__brand {
        padding-left: 15px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-wrap: wrap;
        height: auto;
    }

    .header__brand {
        width: 100%;
        justify-content: space-between;
        padding: 10px 15px;
        border-bottom: 1px solid #E5E5E5;
    }

    .header__nav > ul {
        padding: 0;
        justify-content: flex-end;
    }

    .header__nav {
        width: 100%;
    }

    .header__dropdown {
        top: 53px;
    }

    main .container {
        padding-top: 30px;
    }

    h1 {
        font-size: 35px;
        line-height: 40px;
        margin-bottom: 30px;
    }

    .form-wrapper.login, 
    .form-wrapper.forgotten-password {
        padding: 30px 15px;
    }

    .form-wrapper.change-password {
        padding: 0 15px;
    }

    .status-box {
        padding: 20px 15px;
    }

    .pathbox__wrapper {
        width: 100%;
        padding: 0;
    }

    .pathbox-row {
        margin: 0;
    }

    .pathbox__item {
        padding: 25px 15px 25px 15px;
        margin-bottom: 15px;
        flex-wrap: wrap;
    }

    .pathbox__image-wrapper,
    .pathbox__content {
        width: 100%;
    }

    .pathbox__image-wrapper {
        margin-bottom: 10px;
    }

    .pathbox__image-wrapper img {
        max-height: 60px;
    }

    .pathbox__content p {
        margin-bottom: 0;
    }

    .pathbox__content {
        text-align: center;
    }
}