/*@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap'); 

:root {
  /* main colours */
  --primary-color: #2196f3;
  --secondary-color: #dedede;
  --highlight-color: #24234C;

  /* supporting colours */
  --light-color: #ffffff;
  --other-color: #f5f5f5;
  --neutral-color-1: #eeeeee;
  --neutral-color-2: #bbbbbb;
  --neutral-color-3: #cccccc;
  --neutral-color-4: #aaaaaa;
  --neutral-color-5: #888888;

  /* text colours */
  --primary-txt-color: #212133;
  --secondary-txt-color: #ffffff;
  
  /* border radius */
  --border-radius-xs: 1px;
  --border-radius-sm: 2px;
  --border-radius-m: 4px;
  --border-radius-l: 6px;
  --border-radius-50-percent: 50%;
  --border-radius-btn: 10px;
  
  /* message boxes colours */
  --info-color: #c3e4fa;
  --success-color: #baf1cd;
  --alert-color:#fde7b3;
  --error-color: #fbd8ce;
  --dark-error-color: #c80015;

  --error-badge-color: #f55a4e;
  --alert-badge-color: #dd831e;
  --success-badge-color: #51b849;

  /* button colors*/
  --primary-btn-color: #1071D8;
  --primary-btn-hover-color: #0C5DB2;
  --secondary-btn-color: #F2F8FD;
  --secondary-btn-hover-color: #E6F0FB;
  --ghost-btn-color: #1071D8;
  --ghost-hover-btn-color: #1071D8;
}


* {
  padding: 0px;
	margin: 0px;
}

html {
  line-height: 24px;
  height: 100%;
  
}


dl, menu, ol, ul, p, pre, table, label {
    margin: 0px;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--primary-txt-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    font-size: 14px;
}

a { 
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--highlight-color);
  text-decoration: underline;
}

h2 { 
  font-size: 24px;
  padding-bottom: 15px;
  margin: 0px;
  line-height: 30px;
  color: var(--primary-txt-color);
}

h3 {
    font-size: 18px;
    padding-bottom: 10px;
    margin: 0px;
    line-height: 24px;
    color: var(--primary-txt-color);
    font-weight: bold;
}

/* container that sets the maximum width */
.limit-container {
  max-width: 1200px;
  margin: 0 auto;
}

.limit-container-scroll {
  /* subtracting the approximate width of the scroll */
  max-width:calc(1200px - 17px); 
  margin: 0 auto;
}

.logo-box {
    display: flex;
}
/***** Header Styling - START *****/
/* header area */
header {
  background: var(--light-color);
  color: var(--primary-txt-color);
  flex: 1 0 auto;
}

.easo-c-header__top {
  display: flex;
  justify-content: space-between;
}

.easo-c-header__top-logo {
    background-image: url(../images/euaa_logo.png);
    width: 166px;
    height: 80px;
    margin: 10px 0px;
    background-repeat: no-repeat;
    /*background-size: 157px 108px;*/
}
.header_app_logo {
    background-image: url(../images/cei_logo.png);
    width: 145px;
    height: 57px;
    background-repeat: no-repeat;
    background-size: 145px 57px;
    margin-top: 20px;
    margin-left: 20px;
}

.easo-c-header__top-nav {
  display: flex;
  justify-content: flex-end;
}

/* Top Navigation Links - Right Hand side - START */
.navbar-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 5px 10px;
  color: var(--primary-txt-color);
}

.navbar-top__links {
  display: flex;
  flex-direction: row;
  list-style: none;
}

ul.navbar-top__links li {
  padding: 10px 20px;
}

ul.navbar-top__links li a {
  color: var(--highlight-color);
  text-decoration: none;
  transition: 0.4s ease;
  border-bottom: 2px solid var(--secondary-txt-color);
  padding-bottom: 2px;
}

ul.navbar-top__links li a:hover {
  border-bottom: 2px solid var(--highlight-color);
  padding-bottom: 6px;
}

    ul.navbar-top__links li a.easo-btn-link:hover {
        border-bottom: none;
        padding: none;
    }
    ul.navbar-top__links li a.easo-btn-link {
        border-bottom: none;
    }
/* Top Navigation Links - Right Hand side - END */


/* Main Navigation Links - Left Hand side - START */
.easo-c-header__nav-main {
	background: var(--highlight-color);
}

.navbar-main__links {
  display: flex;
  flex-direction: row;
  list-style: none;
  padding: 5px 10px 5px 0px;
  color: var(--secondary-txt-color);
}

ul.navbar-main__links li {
  padding: 10px 20px;
}

ul.navbar-main__links li:first-child {
  padding-left: 0px;
}

ul.navbar-main__links li a {
  color: var(--secondary-txt-color);
  text-decoration: none;
  border-bottom: 2px solid var(--highlight-color);
  padding-bottom: 2px;
  transition: 0.4s ease;
}

ul.navbar-main__links li a:hover {
  color: var(--secondary-txt-color);
  text-decoration: none;
  border-bottom: 2px solid var(--secondary-txt-color);
  padding-bottom: 16px;
}

ul.navbar-main__links li a.active {
  padding-bottom: 16px;
  border-bottom: 2px solid var(--secondary-txt-color);
}
/* Main Navigation Links - Left Hand side - END */
/***** Header Styling - END *****/

.easo-c-header__page-top {
  background: var(--primary-color);
  color: var(--secondary-txt-color);
  width: auto;
  margin-top: 2px;
  padding: 40px 0px;
  font-size: 28px;
}
.easo-c-header__page-top h2 {
   color: var(--secondary-txt-color);
}

.easo-c-header__page-top-desc {
  font-size: 16px;
  padding-top: 15px;
  line-height: 26px;
  display: flex;
  align-items: center;
}


/***** Login Area Styling - START *****/
.easo-login-panel {
    display: flex;
    margin-top: 40px;
    margin-bottom: 40px;
}
    .easo-login-panel h2 {
        font-size: 32px;
        padding-bottom: 10px;
    }
    .easo-login-panel .easo-form-element {
        border: 1px solid var(--neutral-color-3);
    }
    .easo-login-panel label {
        font-weight: normal;
    }
.easo-login-panel__left {
    background: var(--neutral-color-1);
    padding: 40px;
    width: 50%;
}
.easo-login-panel__left table {
    width: 100%;
}

.easo-login-panel__right {
    background-image:url(../images/login_image.png);
    background-repeat: no-repeat;
    width: 580px;
    height: 460px;
    background-size: cover;
}
    .easo-login-panel__right.new-account {
        background-image: none;
        background-color: #cae3f0;
        height: auto;
        /*position: relative;*/
    }
        .easo-login-panel__right.new-account .new-account__image {
            background-image: url(../images/login_image_2.png);
            background-repeat: no-repeat;
            width: 580px;
            height: 682px;
            background-size: contain;
            /*position: absolute;
            bottom: 0;*/
        }
/***** Login Area Styling - END *****/


/***** Main Content Area Styling - START *****/
main {
  flex: 1 0 auto;
}
/***** Main Content Area Styling - END *****/

/***** How to Apply Area Styling - START *****/
.how-to-apply {
    background-color: var(--neutral-color-1);
    padding: 30px;
}
/***** How to Apply Area Styling - END *****/

/***** FAQ List Styling - START *****/
ul.faq-list {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}
    ul.faq-list li {
        padding: 5px 0px;
    }

.faq-list-detail {
    padding: 30px;
    background: #f7f7f7;
    margin-bottom: 20px;
}
    .faq-list-detail:last-child {
        margin-bottom: 30px;
    }

.faq-list-divider {
    border-bottom: 2px solid var(--neutral-color-1);
}

.faq-more-help {
    background: #f7f7f7;
    border-radius: 2px;
    border: 1px solid var(--neutral-color-1);
    padding: 20px;
    width: 280px;
    text-align: center;
    margin-left: auto;
    box-shadow: 0px 0px 4px 2px var(--neutral-color-1);
}
.faq-more-help__image {
    background-image: url(../images/faq_more_help.png);
    background-repeat: no-repeat;
    width: 180px;
    height: 138px;
    margin: 0 auto;
}
/***** FAQ List Styling - END *****/

/***** Profile Area Styling - START *****/
.profile-content {
    padding: 30px;
}
    .profile-content h2 {
        padding: 0px 10px 15px 5px;
    }
    .profile-content h3 {
        padding: 10px 0px 10px 5px;
        font-size: 20px;
    }
    .profile-content p {
        padding: 0px 10px 0px 5px;
    }
.profile-content--general-info {
}
.profile-content--education {
}
.profile-content--experience {
}
.profile-content--languages {
}
.profile-content--other-skills {
}
.profile-content--references {
}
/***** Profile Area Styling - END *****/


/***** Disclaimer Area Styling - START *****/
.disclaimer {
  padding: 10px 0px;
}
.disclaimer__list {
  margin: 10px 20px;
}
ul.disclaimer__list {
  list-style: none;
  padding: 0px;
}
ul.disclaimer__list li {
  padding: 5px;
}
ul.disclaimer__list li::before {
  /*content: "\2022";*/
  content: "\2BC0";
  color: var(--primary-color);
  display: inline-block;
  width: 20px;
  margin-left: -20px;
}
/***** Disclaimer Area Styling - END *****/

/***** Reserve List Area Styling - START *****/
.reserve-list {
  background: var(--neutral-color-1);
  padding: 40px 0px;
}
/***** Reserve List Area Styling - END *****/

/***** Browser Support Area Styling - START *****/
.browser-support {
    background: var(--neutral-color-3);
    padding: 40px 0px;
    margin-bottom: 40px;
}
/***** Browser Support Area Styling - END *****/


/***** Footer Area Styling - START *****/
footer {
  grid-area: footer;
  flex-shrink: 0;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  margin-top: 10px;
  height: 40px;
}

.easo-c-footer {
  padding: 10px;
  font-size: 12px;
  background-color: var(--highlight-color);
  color: var(--secondary-txt-color);
  z-index: 9999;
}

    .easo-c-footer a {
        color: var(--secondary-txt-color);
    }
/***** Footer Area Styling - END *****/




/* radiobutton styles - telerik */
.rd-btn-style span {
    display: flex;
}

    .rd-btn-style span input {
        margin-top: 5px;
    }

    .rd-btn-style span label {
        margin-right: 15px;
        font-weight: normal;
    }

.easo-section-sub-panel {
    border: 1px solid #dedede;
    padding: 20px;
    border-top: 4px solid var(--primary-color);
    border-radius: 5px;
}

.easo-application-detail-panel {
    background-color: var(--neutral-color-1);
    padding: 20px;
}

    .easo-application-detail-panel h2 {
        padding-bottom: 0px;
    }

    .easo-application-detail-panel.easo-profile-detail {
        padding-bottom: 0px;
    }

        .easo-application-detail-panel.easo-profile-detail h2 {
            padding-bottom: 90px;
        }

.button-placement {
    margin-top: -92px;
    margin-bottom: 15px;
    margin-left: 165px;
}
@-moz-document url-prefix() {
    .button-placement {
        margin-left: 170px;
    }
}

.easo-application-status-progress {
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius-l);
}

/* styles for new application panel */
.new-application h2 {
    padding-bottom: 2px;
}

.easo-panel.new-application {
    margin-top: 5px;
}

.apply-image {
    background-image: url(../images/apply_image.png);
    background-repeat: no-repeat;
    width: 134px;
    height: 131px;
    min-width: 144px;
}

/* styles for no vacancies panel */
.no-vacancies {
}

.no-vacancies__image {
    background-image: url(../images/no_vacancies.png);
    background-repeat: no-repeat;
    width: 134px;
    height: 131px;
    min-width: 144px;
}

/* styles for vacancy title */
.vacancy-title {
    margin-top: 30px;
}

    .vacancy-title h2 {
        font-weight: bold;
    }


/* styles for vacancy added - list of vacancies (applied to) */
.vacancy-added {
}
    .vacancy-added .easo-panel__btn {
        white-space: nowrap;
    }


/***** Error Page - START *****/
.easo-error-page.easo-error-page--maintenance {
    background-color: var(--neutral-color-1);
    height: calc(100vh - 140px);
}

.logo-area {
    height: 140px;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 22px;
}

.logo-area__image {
    background-image: url(../images/euaa_logo.png);
    width: 166px;
    height: 80px;
    background-repeat: no-repeat;
    background-size: 82px 64px;
    padding-right: 25px;
}

.easo-error-page.easo-error-page--maintenance .easo-error-page__container {
    width: 560px;
}

.easo-error-page {
    text-align: center;
    vertical-align: middle;
    height: 100%;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.easo-error-page__icon {
    margin: 10px auto;
    border-radius: var(--border-radius-50-percent);
    width: 140px;
    height: 140px;
    background-color: var(--secondary-color);
    line-height: 140px;
    font-size: 72px;
    color: var(--neutral-color-5);
    opacity: 0.8;
    padding-top: 34px;
}

.easo-error-page__title {
    font-size: 48px;
    line-height: 58px;
    font-weight: 500;
    color: var(--primary-txt-color);
    margin-top: 20px;
}

.easo-error-page__sub-title {
    font-size: 19px;
    line-height: 32px;
    color: var(--neutral-color-5);
    margin: 5px 0px 25px 0px;
}
/***** Error Page - END *****/


/***** Media Queries - START *****/
@media (max-width: 1400px) {
    .limit-container {
        padding: 0px 20px;
    }
}

/* screen sizes of 1200px and below  */
@media (max-width: 1200px) { 
  .limit-container {
    padding: 0px 20px;
  }
  main {
    padding: 0px 20px;
  }
    
  .how-to-apply {
    padding: 30px 10px;
   }
  .reserve-list {
    margin: 0px 0px;
    padding: 40px 0px;
  }
 }

/* screen sizes of 864px and below */
@media (max-width: 864px) {
    .easo-login-panel__left {
        width: 100%;
    }

    .easo-login-panel__right {
        display: none;
    }
 }

/* screen sizes of 768px and below */
@media (max-width: 768px) {
    .vacancy-list .easo-panel__btn {
        padding-right: 0px;
    }

    footer {
        height: 50px;
    }
}

/*Small devices (landscape phones, 576px and below)*/
@media (max-width: 576px) { 
  .easo-c-header__top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .easo-c-header__top-logo {
    justify-content: center;
    margin: 10px auto;
    width: 90px;
    height: 70px;
  }
  .easo-c-header__top-nav {
    justify-content: space-around;
  }
  .navbar-main__links {
    justify-content: center;
  }
  ul.navbar-main__links li:first-child {
    padding-left: 10px;
  }

    .easo-c-header__page-top-desc {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
        .easo-c-header__page-top-desc .easo-btn {
            width: 100%; 
            margin-top: 10px;
        }

            .easo-c-header__page-top-desc .easo-btn.u-mar-l-lg {
                margin-left: 0px;
            }

    .faq-more-help {
        width: auto;
    }

    .no-vacancies h2 {
        font-size: 18px;
        line-height: 26px;
    }
    .no-vacancies__image {
        width: auto;
        height: auto;
        background-size: contain;
        min-width: 100px;
    }

    .new-application .fg-container {
        display: block;
    }
    .new-application .u-mar-r-xl {
        margin-right: auto;
    }
    .new-application .apply-image {
        margin: 0 auto;
        width: 60px;
        height: 80px;
        min-width: 80px;
        background-size: contain;
        margin-bottom: 10px;
    }
    .new-application .easo-btn {
        width: 100%;
    }

    .easo-panel.vacancy-added {
        display: block;
    }
    .vacancy-added .easo-panel__btn {
        white-space: nowrap;
        width: 100%;
        margin-top: 20px;
        padding-right: 0px;
    }
        .vacancy-added .easo-panel__btn a.easo-btn {
            width: 100%;
            display: block;
            text-align: center;
        }

    .easo-panel.vacancy-list .fg-container {
        display: block;
    }
    .vacancy-list .easo-panel__btn {
        margin-top: 20px;
        padding-right: 0px;
        width: 100%;
    }
        .vacancy-list .easo-panel__btn .easo-btn {
            display: block;
        }
 }
/***** Media Queries - END *****/

.preview-page-style {
    background-color: #fff;
    min-height: 500px;
    width: 125%;
    padding: 10px 0px;
}
    .preview-page-style .profile-content {
        padding: 10px 20px;
    }

.preview-page-style__title {
    padding-left: 20px;
}
    .preview-page-style .easo-responsive-table td,
    .preview-page-style .easo-responsive-table th {
        font-size: 14px;
    }

.negative-margin-setup {
    margin-left: -5px;
    margin-right: -5px;
}

@-moz-document url-prefix() {
    .negative-margin-setup {
        margin-left: -12px;
        margin-right: -12px;
    }
}