/*------------------------------------------------------------------
[Main Stylesheet]

Author:	Cadri / 2021 / V 1.0
-------------------------------------------------------------------*/
/*
[Table of Contents]
1. IMPORTS
2. GENERAL
    2-1. HEADINGS
	2-2. CUSTOM LINKS
    2-3. CUSTOM BUTTONS
3. HEADER
	3-1. HEADER MENU
4. PAGES GENERAL SECTION STRUCTURE
	4-1. SECONDARY PAGES HEADER
	4-2. SECONDARY PAGES SUB HEADER
	4-3. BREADCRUMB  NAVIGATION
	4-4. PAGINATION
	4-5. SUBFRAME
	4-6. FITLERS HEADER
5. LANDING PAGE
    5-1. INTRO SLIDER
	5-2. LANDING PAGE ABOUT SECTIONS 
6. LOGIN | REQUEST ACCESS | FORGOT PASS
7. PAGES GENERAL FORM | ADD USERS | ADD MISSIONS | EDIT
8. DASHBOARD
	8-1. DASHBOARD HELP & SUPPORT
9. USERS MODULE
	9-1. USER PROFILE
10. MISSIONS	MODULE 
	10-1 CREATE TEAM MODAL
	10-2 MISSION DOCUMENTS
11. QUESTIONS BANK
	11-1 QUESTIONS BANK TABS	
12. REPORT
13. MODAL GENERAL
14. FOOTER 
*/
/*===============================================*/
/* 1. IMPORTS		 						 */
/*===============================================*/
@import url(../css/reset.css);
@font-face {
  font-family: 'GillSansBook';
  src: url("../assets/fonts/Gill Sans MT Book.eot");
  /* IE9 Compat Modes */
  src: url("../assets/fonts/Gill Sans MT Book.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/Gill Sans MT Book.ttf") format("truetype"); }

@font-face {
  font-family: 'GillSansBold';
  src: url("../assets/fonts/Gill Sans MT Bold.eot");
  /* IE9 Compat Modes */
  src: url("../assets/fonts/Gill Sans MT Bold.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/Gill Sans MT Bold.ttf") format("truetype"); }

@font-face {
  font-family: 'GillSansLight';
  src: url("../assets/fonts/Gill Sans MT Light.eot");
  /* IE9 Compat Modes */
  src: url("../assets/fonts/Gill Sans MT Light.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/Gill Sans MT Light.ttf") format("truetype"); }

@font-face {
  font-family: 'GillSansMedium';
  src: url("../assets/fonts/Gill Sans MT Medium.eot");
  /* IE9 Compat Modes */
  src: url("../assets/fonts/Gill Sans MT Medium.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/Gill Sans MT Medium.ttf") format("truetype"); }

.filter-bar__search, .help-support__content {
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s; }

.dashboard-card, .dashboard-card__icon, .dashboard-card__links a {
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s; }

.header--sticky {
  -webkit-box-shadow: 0px 5px 20px -13px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 5px 20px -13px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 5px 20px -13px rgba(0, 0, 0, 0.12); }

.dashboard-card:hover {
  box-shadow: 10px 15px 30px -13px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 10px 15px 30px -13px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 10px 15px 30px -13px rgba(0, 0, 0, 0.15); }

.about__image img {
  box-shadow: 10px 27px 60px -15px rgba(0, 0, 0, 0.24);
  -webkit-box-shadow: 10px 27px 60px -15px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 10px 27px 60px -15px rgba(0, 0, 0, 0.24); }

.intro-slider__slide, .section--login {
  -webkit-background-size: 100%;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  background-size: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center; }

/* -----SIZE CLASSES-------- */
.w-100 {
  width: 100%; }

.h-100 {
  height: 100%; }

/* -----DISPLAY CLASSES-------- */
.d-none {
  display: none; }

.d-block {
  display: block; }

.d-inline {
  display: inline-block; }

/* -----FLEX CLASSES-------- */
.d-flex {
  display: flex; }

.flex-wrap {
  flex-wrap: wrap; }

.align-items-center {
  align-items: center; }

.align-items-start {
  align-items: flex-start; }

.align-items-end {
  align-items: flex-end; }

.align-items-stretch {
  align-items: stretch; }

.align-content-center {
  align-content: center; }

.align-content-start {
  align-content: flex-start; }

.align-content-end {
  align-content: flex-end; }

.align-content-stretch {
  align-content: stretch; }

.justify-space {
  justify-content: space-between; }

.justify-center {
  justify-content: center; }

.justify-start {
  justify-content: flex-start; }

.justify-end {
  justify-content: flex-end; }

.grow-0 {
  flex-grow: 0; }

.grow-1 {
  flex-grow: 1; }

/* -----TEXT CLASSES-------- */
.text-center {
  text-align: center; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

.text-white {
  color: #ffffff !important; }

/* -----PADDING CLASSES-------- */
.p0 {
  padding: 0px !important; }

.p-10 {
  padding: 10px !important; }

.p-20 {
  padding: 20px !important; }

.p-40 {
  padding: 40px !important; }

.pb-0 {
  padding-bottom: 0px !important; }

.pb-10 {
  padding-bottom: 10px !important; }

.pb-20 {
  padding-bottom: 20px !important; }

.pb-40 {
  padding-bottom: 40px !important; }

.pt-0 {
  padding-top: 0px !important; }

.pt-10 {
  padding-top: 10px !important; }

.pt-20 {
  padding-top: 20px !important; }

.pt-40 {
  padding-top: 40px !important; }

.pb-40 {
  padding-bottom: 40px !important; }

.pl-0 {
  padding-left: 0px !important; }

.pl-10 {
  padding-left: 10px !important; }

.pl-20 {
  padding-left: 20px !important; }

.pl-40 {
  padding-left: 40px !important; }

.pr-0 {
  padding-right: 0px !important; }

.pr-10 {
  padding-right: 10px !important; }

.pr-20 {
  padding-right: 20px !important; }

.pr-40 {
  padding-right: 40px !important; }

/* -----MARGIN CLASSES-------- */
.m0 {
  margin: 0px !important; }

.m-10 {
  margin: 10px !important; }

.m-20 {
  margin: 20px !important; }

.m-40 {
  margin: 40px !important; }

.mb-0 {
  margin-bottom: 0px !important; }

.mb-10 {
  margin-bottom: 10px !important; }

.mb-20 {
  margin-bottom: 20px !important; }

.mb-40 {
  margin-bottom: 40px !important; }

.mt-0 {
  margin-top: 0px !important; }

.mt-10 {
  margin-top: 10px !important; }

.mt-20 {
  margin-top: 20px !important; }

.mt-40 {
  margin-top: 40px !important; }

.ml-0 {
  margin-left: 0px !important; }

.ml-10 {
  margin-left: 10px !important; }

.ml-20 {
  margin-left: 20px !important; }

.ml-40 {
  margin-left: 40px !important; }

.mr-0 {
  margin-right: 0px !important; }

.mr-10 {
  margin-right: 10px !important; }

.mr-20 {
  margin-right: 20px !important; }

.mr-40 {
  margin-right: 40px !important; }

/*===============================================*/
/* 2. GENERAL		 						 */
/*===============================================*/
html, body {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
  /*  (10 px in REM size) */ }

body {
  font-family: "GillSansBook";
  padding: 0;
  font-size: 1.9rem;
  line-height: 1.5;
  margin: 0 auto;
  color: #141515;
  background-color: #ffffff; }
  body.overflow-hidden {
    overflow: hidden; }

.clear {
  clear: both; }

p {
  padding: 0;
  margin: 0px;
  text-align: left;
  line-height: 1.5; }

a {
  text-decoration: none;
  color: #fd6925; }
  a:hover {
    color: #0fb0da; }

textarea,
input,
select {
  outline: none;
  font-family: "GillSansBook"; }

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

/* Firefox */
input[type=number] {
  -moz-appearance: textfield; }

/*---------------------------*/
/* 2-1. HEADINGS             */
/*---------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  padding: 0 0 40px 0;
  margin: 0; }

h1 {
  font-size: 40px; }

h2 {
  font-size: 30px; }

h3 {
  font-size: 22px; }

h4 {
  font-size: 20px; }

h5 {
  font-size: 18px; }

h6 {
  font-size: 16px; }

/*---------------------------*/
/* 2-2. CUSTOM LINKS             */
/*---------------------------*/
.link {
  font-size: 1.6rem;
  font-family: "GillSansMedium";
  cursor: pointer; }
  .link--red {
    color: #e83333; }
    .link--red:hover {
      color: #000; }
  .link--blue {
    color: #0fb0da; }
    .link--blue:hover {
      color: #183567; }
  .link--darkblue {
    color: #183567; }
    .link--darkblue:hover {
      color: #fd6925; }
  .link--documents {
    color: #183567;
    font-family: "GillSansBold";
    background-image: url(../assets/images/icons/documents.svg);
    background-position: 0 50%;
    background-repeat: no-repeat;
    background-size: 25px;
    padding: 5px 0 5px 30px; }
    .link--documents:hover {
      color: #fd6925; }
  .link--report {
    color: #183567;
    font-family: "GillSansMedium";
    background-image: url(../assets/images/icons/report.svg);
    background-position: 0 50%;
    background-repeat: no-repeat;
    background-size: 25px;
    padding: 5px 0 5px 30px; }
    .link--report:hover {
      color: #fd6925; }
  .link--plus {
    background-image: url(../assets/images/icons/plus-round-blue.svg);
    background-position: 10px 50%;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    padding-left: 40px; }
  .link--delete {
    color: #e83333;
    background-image: url(../assets/images/icons/delete.svg);
    background-position: 0 50%;
    background-repeat: no-repeat;
    background-size: 25px;
    padding: 5px 0 5px 25px; }
    .link--delete:hover {
      color: #000; }
  .link--underline {
    text-decoration: underline; }

/*---------------------------*/
/* 2-3. CUSTOM BUTTONS             */
/*---------------------------*/
.buttons {
  display: flex;
  align-items: center; }
  .buttons .btn {
    margin: 0 5px 0 0; }
  .buttons--centered {
    width: 100%;
    text-align: center; }

.btn {
  display: inline-block;
  padding: 18px 55px;
  font-size: 1.4rem;
  font-family: "GillSansBold";
  letter-spacing: 1px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 25px;
  flex-shrink: 0; }
  .btn--small {
    padding: 10px 30px;
    font-size: 1.3rem;
    letter-spacing: 0.5px; }
  .btn--smaller {
    padding: 8px 20px;
    font-size: 1.2rem;
    letter-spacing: 0.5px; }
  .btn.active {
    background-color: #183567;
    color: #fff; }
  .btn--blue {
    background-color: #0fb0da;
    color: #ffffff;
    border: none;
    text-transform: uppercase; }
    .btn--blue:hover {
      background-color: #183567;
      color: #ffffff; }
  .btn--lightblue {
    background-color: #e8f6f9;
    color: #183567;
    border: none;
    text-transform: uppercase; }
    .btn--lightblue:hover {
      background-color: #183567;
      color: #ffffff; }
  .btn--gray {
    background-color: #f2f6f9;
    color: #fd6925;
    border: none;
    text-transform: uppercase; }
    .btn--gray:hover {
      background-color: #183567;
      color: #ffffff; }
  .btn--green {
    background-color: #40cc9d;
    color: #ffffff;
    border: none;
    text-transform: uppercase; }
    .btn--green:hover {
      background-color: #000;
      color: #ffffff; }
  .btn--black {
    background-color: #000;
    color: #ffffff;
    border: none;
    text-transform: uppercase; }
    .btn--black:hover {
      background-color: #cfdde8;
      color: #ffffff; }
  .btn--more {
    background-image: url(../assets/images/icons/arrow-down-white.svg);
    background-position: 90% 40%;
    background-repeat: no-repeat;
    background-size: 30px 30px;
    padding-right: 45px; }
    .btn--more.active {
      color: #fff;
      background-image: url(../assets/images/icons/arrow-top-white.svg); }
      .btn--more.active:hover {
        background-image: url(../assets/images/icons/arrow-top-white.svg); }
  .btn--more-white {
    background-color: #fff;
    color: #000;
    background-image: url(../assets/images/icons/arrow-down.svg);
    background-position: 90% 40%;
    background-repeat: no-repeat;
    background-size: 30px 30px;
    padding-right: 45px; }
    .btn--more-white:hover {
      background-image: url(../assets/images/icons/arrow-down-white.svg); }
    .btn--more-white.active {
      color: #fff;
      background-image: url(../assets/images/icons/arrow-top-white.svg); }
      .btn--more-white.active:hover {
        background-image: url(../assets/images/icons/arrow-top-white.svg); }
  .btn--edit {
    background-image: url(../assets/images/icons/edit.svg);
    background-position: 84% 40%;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    padding-right: 45px; }
  .btn--edit-team {
    background-image: url(../assets/images/icons/team-edit.svg);
    background-position: 84% 40%;
    background-repeat: no-repeat;
    background-size: 35px;
    padding-right: 55px; }
  .btn--add-team-leader {
    background-color: #fff;
    background-image: url(../assets/images/icons/team-leader.svg);
    background-position: 15px 40%;
    background-repeat: no-repeat;
    background-size: 35px;
    padding-left: 65px;
    color: #183567; }
    .btn--add-team-leader:hover {
      color: #fff;
      background-color: #183567;
      background-image: url(../assets/images/icons/team-edit.svg); }
  .btn--add-subteam {
    background-color: #fff;
    background-image: url(../assets/images/icons/team-subteam.svg);
    background-position: 15px 40%;
    background-repeat: no-repeat;
    background-size: 35px;
    padding-left: 65px;
    color: #fd6925; }
    .btn--add-subteam:hover {
      color: #fff;
      background-color: #183567;
      background-image: url(../assets/images/icons/team-edit.svg); }
  .btn--plus {
    background-image: url(../assets/images/icons/plus-round.svg);
    background-position: 10px 50%;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    padding-left: 45px; }
  .btn--plus-orange {
    background-image: url(../assets/images/icons/plus-round-orange.svg);
    background-position: 10px 50%;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    padding-left: 45px; }
  .btn--plus-green {
    background-image: url(../assets/images/icons/plus-round-green.svg);
    background-position: 10px 50%;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    padding-left: 45px; }
  .btn--close {
    background-image: url(../assets/images/icons/close-white.svg);
    background-position: 85% 45%;
    background-repeat: no-repeat;
    background-size: 14px;
    padding-right: 40px; }

.status {
  font-family: "GillSansBold";
  font-size: 1.4rem; }
  .status--green {
    color: #40cc9d; }
  .status--blue {
    color: #0fb0da; }
  .status--orange {
    color: #fd6925; }
  .status--progress {
    color: #141515; }
  .status__button {
    font-size: 1.4rem;
    padding: 12px 30px;
    border-radius: 20px;
    margin-right: 10px;
    font-family: "GillSansBold";
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer; }
    .status__button.uafreview {
      background-color: #e8f6f9;
      color: #0fb0da; }
    .status__button.uafsent {
      background-color: #f2f6f9;
      color: #183567;
      cursor: default; }
    .status__button.approved {
      background-color: #f2f6f9;
      color: #40cc9d;
      cursor: default; }

/*===============================================*/
/* 3. HEADER 	 						 */
/*===============================================*/
.header {
  width: 100%;
  background-color: #f2f6f9;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 444;
  -webkit-transition: background-color 0.5s;
  -moz-transition: background-color 0.5s;
  transition: background-color 0.5s; }
  .header__content {
    width: 1480px;
    height: 90px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    -webkit-transition: height 0.5s;
    -moz-transition: height 0.5s;
    transition: height 0.5s; }
  .header--sticky .header__content {
    height: 70px; }
  .header__logo {
    padding: 0px;
    margin: 0px; }
    .header__logo a {
      display: block;
      line-height: 1; }

/*===================================*/
/* 3-1. HEADER 	 				 */
/*===================================*/
/* ELEMENT - header__menu */
.header__menu {
  text-align: right;
  margin: 0 0 0 0;
  width: 100%; }
  .header__menu ul li {
    display: inline;
    position: relative;
    padding: 0 0 0 30px; }
    .header__menu ul li a {
      color: #141515;
      font-size: 1.6rem;
      font-family: "GillSansMedium";
      display: inline;
      margin: 0;
      position: relative;
      overflow: hidden;
      -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
      -webkit-tap-highlight-color: transparent; }
      .header__menu ul li a:hover {
        color: #fd6925; }
    .header__menu ul li.selected a {
      color: #fd6925; }

.header-login {
  flex-shrink: 0;
  color: #141515;
  font-size: 1.6rem;
  font-family: "GillSansMedium";
  background-color: #fff;
  background-image: url(../assets/images/icons/user.svg);
  background-position: 15px 50%;
  background-repeat: no-repeat;
  background-size: 28px 28px;
  margin: 0 0 0 30px;
  padding: 12px 30px 12px 50px;
  border-radius: 25px;
  -webkit-box-shadow: 0px 5px 20px -13px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 5px 20px -13px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 5px 20px -13px rgba(0, 0, 0, 0.12); }
  .header-login::after {
    display: none; }

#mobile-menu-open {
  display: none; }

.menu-button {
  display: none; }

.language-selector {
  margin: 0 0 0 30px;
  background-color: #ffffff;
  padding: 5px 0px 8px 0px;
  border-radius: 25px;
  overflow: hidden;
  background-image: url(../assets/images/icons/drop-down.svg);
  background-position: 85% 50%;
  background-repeat: no-repeat;
  background-size: 12px 12px; }
  .language-selector select {
    border: none;
    background: none;
    font-size: 1.6rem;
    font-family: "GillSansMedium";
    padding: 0 90px 0 15px;
    height: 35px; }

.user-menu {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin: 0 0 0 30px;
  background-color: #ffffff;
  padding: 5px 15px 5px 5px;
  border-radius: 25px;
  position: relative; }
  .user-menu.active {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px; }
  .user-menu img {
    width: 45px;
    display: block;
    border-radius: 100%; }
  .user-menu span {
    display: block;
    font-size: 1.6rem;
    font-family: "GillSansMedium";
    padding: 0 15px; }
  .user-menu i {
    display: block;
    cursor: pointer;
    width: 12px;
    height: 12px;
    background-image: url(../assets/images/icons/drop-down.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 12px 12px; }
  .user-menu.active i {
    background-image: url(../assets/images/icons/drop-up.svg); }

.user-menu-dropdown {
  width: calc(100% - 25px);
  position: absolute;
  top: 55px;
  right: 0px;
  z-index: 44;
  padding: 10px 10px 20px 15px;
  background-color: #fff;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  box-shadow: 12px 18px 33px -22px rgba(0, 0, 0, 0.21);
  -webkit-box-shadow: 12px 18px 33px -22px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 12px 18px 33px -22px rgba(0, 0, 0, 0.21);
  display: none; }
  .user-menu-dropdown.show {
    display: block; }
  .user-menu-dropdown ul li {
    padding: 0 0 0 30px; }
    .user-menu-dropdown ul li a {
      font-size: 1.5rem;
      font-family: "GillSansMedium";
      color: #141515; }
      .user-menu-dropdown ul li a:hover {
        color: #fd6925; }
    .user-menu-dropdown ul li.account {
      background-image: url(../assets/images/icons/settings.svg);
      background-position: 0px 50%;
      background-repeat: no-repeat;
      background-size: 24px 24px; }
    .user-menu-dropdown ul li.logout {
      background-image: url(../assets/images/icons/logout.svg);
      background-position: 0px 50%;
      background-repeat: no-repeat;
      background-size: 24px 24px; }

/*===============================================*/
/* 4. PAGES GENERAL SECTION STRUCTURE      */
/*===============================================*/
.section {
  padding: 80px 0 0 0; }
  .section--p0 {
    padding: 0px; }
  .section--page {
    padding: 110px 0 40px 0;
    min-height: calc(100vh - 363px); }
  .section__content {
    width: 1480px;
    margin: auto;
    position: relative;
    overflow: hidden; }
  .section__title {
    width: 100%;
    text-align: center;
    font-weight: 700;
    font-size: 3rem;
    padding: 0 0 40px 0;
    letter-spacing: -1px; }
  .section__description {
    width: 70%;
    text-align: center;
    margin: 0 auto 80px auto; }

/*==========================================*/
/* 4-1. SECONDARY PAGES HEADER	 */
/*==========================================*/
.page-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px; }
  .page-header__left {
    display: flex;
    align-items: center; }
  .page-header__right {
    display: flex;
    align-items: center; }
    .page-header__right .btn {
      margin-left: 10px; }
  .page-header__title {
    font-size: 3rem;
    padding: 0px;
    letter-spacing: -1px;
    font-family: "GillSansMedium"; }
    .page-header__title span {
      color: #0fb0da;
      font-family: "GillSansLight"; }
    .page-header__title i {
      display: block;
      line-height: 1;
      font-size: 2rem;
      font-style: normal;
      color: #183567; }
  .page-header__role {
    background-color: #f2f6f9;
    color: #183567;
    font-size: 1.3rem;
    padding: 5px 15px;
    border-radius: 20px;
    margin-left: 20px;
    font-family: "GillSansMedium";
    letter-spacing: 0.5px; }

/*==========================================*/
/* 4-2. SECONDARY PAGES SUB HEADER	 */
/*==========================================*/
.page-subheader {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px; }
  .page-subheader__left {
    display: flex;
    align-items: center; }
  .page-subheader__right {
    display: flex;
    align-items: center; }
  .page-subheader__title {
    font-size: 2rem;
    padding: 0px;
    letter-spacing: -0.5px;
    font-family: "GillSansLight";
    color: #183567; }
    .page-subheader__title strong {
      font-family: "GillSansMedium"; }
    .page-subheader__title span {
      color: #fd6925;
      font-family: "GillSansBold"; }

/*==========================================*/
/* 4-3. BREADCRUMB  NAVIGATION	 */
/*==========================================*/
.breadcrumb-nav {
  display: flex;
  align-items: center;
  font-family: "GillSansMedium"; }
  .breadcrumb-nav a {
    display: block;
    color: #141515;
    background-image: url(../assets/images/icons/arrow-forward.svg);
    background-repeat: no-repeat;
    background-position: 100% 50%;
    background-size: 24px;
    padding: 0 25px 0 0;
    margin: 0 5px 0 0; }
    .breadcrumb-nav a:hover {
      color: #fd6925; }
  .breadcrumb-nav span {
    display: block;
    color: #0fb0da; }

/*===============================================*/
/* 4-4. PAGINATION	 						 */
/*===============================================*/
.pagination {
  width: 100%;
  text-align: center;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center; }
  .pagination a {
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 5px;
    color: #183567;
    font-family: "GillSansMedium";
    font-size: 2rem; }
    .pagination a:hover {
      border-radius: 100%;
      background-color: #e8f6f9; }
  .pagination__selected {
    border-radius: 100%;
    background-color: #e8f6f9; }
  .pagination__arrow {
    border-radius: 100%;
    background-color: #e8f6f9;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; }
    .pagination__arrow img {
      display: block;
      width: 30px; }
    .pagination__arrow:hover {
      background-color: #0fb0da !important; }

/*==========================================*/
/* 4-5. SUBFRAME	 */
/*==========================================*/
.subframe {
  display: flex;
  align-items: center;
  padding: 0 0 0 20px; }
  .subframe__select {
    display: block;
    padding: 0;
    flex-shrink: 0;
    margin: 0 10px 0 0;
    overflow: hidden;
    border-radius: 20px;
    background-color: #f2f6f9;
    background-image: url(../assets/images/icons/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    background-size: 24px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }
    .subframe__select select {
      padding: 10px 40px 5px 20px;
      width: 100%;
      margin: 0 0 5px 0;
      border: none;
      box-shadow: none;
      font-weight: 500;
      font-size: 1.7rem;
      font-family: "GillSansMedium";
      background-color: transparent;
      background-image: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none; }
    .subframe__select.hide {
      display: none; }
  .subframe__text {
    font-size: 1.6rem;
    color: #183567; }
    .subframe__text span {
      color: #fd6925;
      font-family: "GillSansBold"; }

/*==========================================*/
/* 4-6. FITLERS HEADER	 */
/*==========================================*/
.filter-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px; }
  .filter-header__bar {
    width: 100%; }
  .filter-header__buttons {
    flex-shrink: 0; }

.filter-bar {
  display: flex;
  align-items: center; }
  .filter-bar__form {
    width: calc(100% - 50px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #e8f6f9;
    border-radius: 25px;
    padding: 10px 20px 10px 10px;
    margin: 0 20px 0 0; }
    .filter-bar__form--full {
      width: calc(100% - 30px);
      margin: 0; }
    .filter-bar__form--medium {
      width: calc(80% - 50px); }
    .filter-bar__form--large {
      width: calc(90% - 50px); }
  .filter-bar__row {
    width: 100%;
    display: flex;
    align-items: center; }
    .filter-bar__row.hide {
      display: none; }
  .filter-bar__input {
    width: 100%;
    background-color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    margin: 0 10px 0 0;
    height: 30px;
    font-size: 1.7rem;
    font-family: "GillSansMedium"; }
    .filter-bar__input::-webkit-input-placeholder {
      /* Chrome/Opera/Safari */
      color: #141515;
      opacity: 1; }
    .filter-bar__input::-moz-placeholder {
      /* Firefox 19+ */
      color: #141515;
      opacity: 1; }
    .filter-bar__input:-ms-input-placeholder {
      /* IE 10+ */
      color: #141515;
      opacity: 1; }
    .filter-bar__input:-moz-placeholder {
      /* Firefox 18- */
      color: #141515;
      opacity: 1; }
  .filter-bar__select {
    display: block;
    padding: 0;
    flex-shrink: 0;
    margin: 0 10px 0 0;
    overflow: hidden;
    border-radius: 20px;
    background-color: #ffffff;
    background-image: url(../assets/images/icons/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    background-size: 24px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }
    .filter-bar__select select {
      padding: 14px 40px 7px 20px;
      width: 100%;
      margin: 0 0 5px 0;
      border: none;
      box-shadow: none;
      font-weight: 500;
      font-size: 1.7rem;
      font-family: "GillSansMedium";
      background-color: transparent;
      background-image: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none; }
    .filter-bar__select.hide {
      display: none; }
  .filter-bar__tags-container {
    width: 100%; }
  .filter-bar__tags-label {
    width: 120px;
    flex-shrink: 0;
    font-size: 1.8rem;
    font-family: "GillSansMedium";
    padding: 0 20px 5px 20px;
    line-height: 1.3; }
  .filter-bar__search {
    flex-shrink: 0;
    display: block;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 100%;
    background-color: #0fb0da;
    background-image: url(../assets/images/icons/search.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 30px;
    cursor: pointer;
    overflow: hidden;
    text-indent: -100px; }
    .filter-bar__search:hover {
      background-color: #183567; }
  .filter-bar__clear {
    flex-shrink: 0;
    color: #141515;
    font-size: 1.6rem;
    margin: 0 0 0 10px;
    font-family: "GillSansMedium"; }

/*===============================================*/
/* 5. LANDING PAGE     						 */
/*===============================================*/
/*=============================*/
/* 5-1. INTRO SLIDER 	 */
/*==============================*/
.intro-slider {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 80px 0 0 0; }
  .intro-slider__slide {
    width: 100%;
    height: 600px; }
  .intro-slider__content {
    width: 1480px;
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start; }
  .intro-slider__caption {
    width: 50%; }
    .intro-slider__caption-title {
      margin: auto;
      font-size: 4.8rem;
      padding: 0px;
      margin: 0px;
      line-height: 1.1;
      letter-spacing: -1px;
      color: #ffffff; }
      .intro-slider__caption-title span {
        font-family: "GillSansBold";
        color: #fd6925; }
    .intro-slider__caption-button {
      width: 100%;
      margin-top: 40px; }
  .intro-slider__pagination.swiper-pagination-bullets {
    bottom: 10px; }
  .intro-slider__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #ffffff;
    opacity: 1;
    margin: 0 3px !important; }
    .intro-slider__pagination .swiper-pagination-bullet-active {
      background: #fd6925; }
  .intro-slider .swiper-button-next {
    width: 40px;
    height: 40px;
    background-image: url(../assets/images/icons/next.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    right: 20px;
    left: auto; }
  .intro-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
    background-image: url(../assets/images/icons/prev.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    left: 20px;
    right: auto; }
  .intro-slider .swiper-button-disabled {
    opacity: 0; }

/*=========================================*/
/* 5-2. LANDING PAGE ABOUT SECTIONS 	 */
/*=========================================*/
.about {
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .about__text {
    width: 40%;
    padding: 0 5%; }
    .about__text h4 {
      font-size: 3.6rem;
      letter-spacing: -0.5px;
      font-family: "GillSansMedium";
      color: #183567;
      margin: 0;
      padding: 0 0 20px 0;
      display: inline-block;
      line-height: 1.5; }
    .about__text p a {
      font-size: 1.6rem;
      font-family: "GillSansBold"; }
  .about__image {
    width: 50%;
    text-align: center;
    padding: 10px 0 60px 0; }
    .about__image img {
      display: block;
      max-width: 420px;
      border-radius: 100%;
      margin: auto;
      text-align: center; }
  .about__divider {
    display: block;
    width: 40px;
    height: 10px;
    margin: 20px 0 0 0;
    background-color: #fd6925; }

.go-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s; }
  .go-top.active {
    opacity: 0.5; }
  .go-top img {
    display: block;
    max-width: 100%; }
  .go-top:hover {
    opacity: 0.7; }

/*===============================================*/
/* 6. LOGIN | REQUEST ACCESS | FORGOT PASS				 */
/*===============================================*/
.section--login {
  background-image: url(../assets/images/bg-login.jpg);
  padding: 150px 0 100px 0; }

.login {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center; }
  .login__title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    padding: 0 0 20px 0; }

.login-form {
  width: 420px;
  background-color: #e8f6f9;
  border-radius: 25px;
  padding: 40px; }
  .login-form__row {
    width: 100%;
    padding: 0 0 20px 0;
    position: relative; }
  .login-form__label {
    width: calc(100% - 15px);
    padding: 0 0 5px 15px;
    display: block;
    font-size: 1.6rem;
    font-family: "GillSansMedium"; }
  .login-form__value {
    padding: 10px 15px; }
  .login-form__input {
    width: calc(100% - 40px);
    background-color: #fff;
    border: 1px #fff solid;
    border-radius: 25px;
    height: 30px;
    padding: 10px 20px;
    font-size: 1.6rem;
    font-family: "GillSansMedium"; }
    .login-form__input:focus {
      border: 1px #a7cae2 solid; }
  .login-form__textarea {
    width: calc(100% - 40px);
    background-color: #fff;
    border: 1px #fff solid;
    border-radius: 25px;
    height: 80px;
    padding: 10px 20px;
    font-size: 1.6rem;
    font-family: "GillSansMedium"; }
    .login-form__textarea:focus {
      border: 1px #a7cae2 solid; }
  .login-form__submit {
    float: right; }
  .login-form__link {
    width: 70%;
    font-size: 1.8rem;
    font-family: "GillSansBold";
    display: block;
    padding: 0 0 5px 0; }
    .login-form__link--blue {
      color: #0fb0da; }
    .login-form__link:hover {
      color: #183567; }
  .login-form__info {
    clear: both;
    padding: 40px 0 0 0; }
  .login-form__subinfo {
    display: block;
    font-size: 1.6rem;
    line-height: 1.3;
    padding: 0 10px 10px 10px; }
  .login-form label.error {
    color: #e83333;
    font-size: 1.6rem;
    margin: 5px 0 0 15px;
    line-height: 1.5 !important;
    display: block; }
  .login-form-message label {
    display: none;
  }
  .login-form-message textarea {
    border: none;
  }

/*===============================================*/
/* 7. PAGES GENERAL FORM | ADD USERS | ADD MISSIONS | EDIT	 	 */
/*===============================================*/
.page-form {
  width: 100%;
  padding: 10px 0; }
  .page-form__row {
    width: 100%;
    margin-bottom: 5px; }
  .page-form__fieldset {
    width: calc(100% - 42px);
    padding: 20px;
    margin: 10px 0 20px 0;
    border-radius: 20px;
    border: 1px #e7e7e7 solid; }
  .page-form__label {
    width: 100%;
    margin-bottom: 5px;
    font-size: 1.6rem; }
  .page-form__input {
    width: calc(100% - 32px);
    padding: 15px;
    background-color: #fff;
    border-radius: 20px;
    font-size: 1.6rem;
    border: 1px #e7e7e7 solid; }
  .page-form__select {
    width: calc(100% - 20px);
    background-color: #fff;
    border-radius: 20px;
    border: 1px #e7e7e7 solid;
    height: 30px;
    padding: 8px 10px;
    background-image: url(../assets/images/icons/arrow-down.svg);
    background-position: 99% 50%;
    background-repeat: no-repeat;
    background-size: 32px 32px; }
    .page-form__select select {
      display: inline-block;
      width: 100%;
      cursor: pointer;
      padding: 0;
      outline: 0;
      font-size: 1.6rem;
      border: none;
      border-radius: 0;
      background-color: transparent;
      color: #000;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none; }
  .page-form__textarea {
    width: calc(100% - 32px);
    padding: 15px;
    background-color: #fff;
    border-radius: 20px;
    border: 1px #e7e7e7 solid;
    resize: none; }
  .page-form__info {
    width: 100%;
    text-align: right;
    color: #506e8b;
    font-size: 1.6rem;
    font-family: "GillSansMedium"; }

.user-message {
  width: 900px;
  margin: auto;
  background-color: #e8f6f9;
  background-image: url(../assets/images/icons/user-profile.svg);
  background-position: 30px center;
  background-repeat: no-repeat;
  background-size: 80px;
  padding: 25px 25px 25px 140px;
  margin-bottom: 20px;
  border-radius: 20px;
  position: relative; }
  .user-message__title {
    font-size: 2.4rem; }
    .user-message__title span {
      font-family: "GillSansBold"; }
  .user-message__text span {
    font-family: "GillSansBold";
    color: #0fb0da; }
  .user-message__hide {
    position: absolute;
    top: 10px;
    right: 15px;
    z-index: 333;
    background-image: url(../assets/images/icons/close.svg);
    background-position: 100% center;
    background-repeat: no-repeat;
    background-size: 12px;
    padding: 0 15px 0 0;
    font-size: 1.6rem;
    cursor: pointer; }

/* FORM CONTAINER	 */
.form-container {
  width: 900px;
  margin: auto; }
  .form-container--full {
    width: 100%; }
  .form-container__title {
    font-size: 3rem;
    font-family: "GillSansMedium";
    padding: 0 0 20px 0; }
  .form-container__fieldset {
    width: calc(100% - 60px);
    padding: 40px 30px;
    background-color: #e8f6f9;
    border-radius: 25px; }
  .form-container__row {
    width: 100%;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    position: relative; }
  .form-container__right-content {
    width: 100%;
    display: flex;
    align-items: center; }
  .form-container__hrow {
    width: calc(50% - 20px);
    display: flex;
    align-items: center;
    position: relative; }
    .form-container__hrow:nth-child(2) {
      margin-left: 40px; }
  .form-container__label {
    width: 125px;
    flex-shrink: 0;
    font-size: 1.6rem;
    line-height: 1.2;
    text-align: right;
    padding: 0 15px 0 0;
    font-family: "GillSansMedium"; }
    .form-container__label span {
      color: #e83333; }
  .form-container__info {
    font-size: 1.5rem;
    margin: -10px 0 15px 140px; }
    .form-container__info span {
      color: #e83333; }
  .form-container__mission-info {
    width: 80%;
    margin: auto;
    text-align: center;
    font-size: 1.8rem;
    padding: 20px 0 40px 0;
    color: #183567; }
    .form-container__mission-info span {
      font-family: "GillSansBold";
      color: #fd6925; }
    .form-container__mission-info strong {
      font-family: "GillSansBold"; }
  .form-container__avatar {
    margin-right: 10px; }
    .form-container__avatar img {
      display: block;
      width: 100px;
      border-radius: 100%; }
  .form-container__link {
    color: #0fb0da;
    font-size: 1.6rem;
    font-family: "GillSansBold";
    border-bottom: 1px solid #0fb0da; }
    .form-container__link:hover {
      color: #183567;
      border-bottom: 1px solid #183567; }
  .form-container__input {
    width: calc(100% - 40px);
    background-color: #fff;
    border: 1px #fff solid;
    border-radius: 25px;
    height: 30px;
    padding: 7px 20px;
    font-size: 1.6rem;
    font-family: "GillSansMedium"; }
    .form-container__input--date {
      background-image: url(../assets/images/icons/calendar.svg);
      background-position: 95% center;
      background-repeat: no-repeat;
      background-size: 18px 18px; }
    .form-container__input--gray {
      background-color: #f2f6f9; }
    .form-container__input:focus {
      border: 1px #a7cae2 solid; }
  .form-container__textarea {
    width: calc(100% - 40px);
    background-color: #fff;
    border: 1px #fff solid;
    border-radius: 25px;
    height: 60px;
    padding: 10px 20px;
    font-size: 1.7rem;
    font-family: "GillSansBook"; }
    .form-container__textarea:focus {
      border: 1px #a7cae2 solid; }
  .form-container__select {
    width: calc(100% - 40px);
    background-color: #fff;
    border-radius: 25px;
    height: 30px;
    padding: 8px 20px;
    background-image: url(../assets/images/icons/arrow-down.svg);
    background-position: 98% 50%;
    background-repeat: no-repeat;
    background-size: 32px 32px; }
    .form-container__select select {
      display: inline-block;
      width: 100%;
      cursor: pointer;
      padding: 0;
      outline: 0;
      font-size: 1.6rem;
      border: none;
      border-radius: 0;
      background-color: transparent;
      color: #000;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none; }
      .form-container__select select:disabled {
        opacity: 0.5; }
  .form-container__select-search {
    width: 100%; }
  .form-container__submit {
    text-align: right; }
  .form-container label.error {
    color: #e83333;
    font-size: 1.4rem;
    line-height: 1.5 !important;
    display: block; }
  .form-container__input-file input[type="file"] {
    display: none; }
  .form-container__input-file .custom-file-upload {
    -webkit-appearance: none; }
  .form-container__divider {
    width: calc(100% - 140px);
    margin-left: 140px;
    margin-bottom: 15px;
    height: 1px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .form-container label.error {
    display: block;
    position: absolute;
    right: 10px;
    bottom: 12px; }

.foq-row {
  width: calc(100% - 80px);
  padding: 20px 20px 0 20px;
  margin: 0 0 40px 40px;
  border: 1px #bfd8dd solid;
  border-radius: 25px;
  position: relative; }
  .foq-row .form-container__label {
    width: 80px;
    padding: 0 30px 0 0; }
  .foq-row__delete {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 100%;
    position: absolute;
    top: -20px;
    right: -10px;
    display: flex;
    align-items: center;
    justify-content: center; }

.soq-rows {
  width: calc(100% - 80px);
  padding: 20px 20px 0 20px;
  margin: 0 0 20px 40px;
  border: 1px #bfd8dd solid;
  border-radius: 25px; }

/* ----------Switch normal---------------- */
label.switch {
  position: relative;
  display: block;
  vertical-align: top;
  width: 110px;
  height: 35px;
  padding: 0;
  background-image: none;
  margin: 0;
  border-radius: 18px;
  cursor: pointer; }
  label.switch--larger {
    width: 135px; }

.switch-input {
  width: 110px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0; }
  .switch-input--larger {
    width: 135px; }

.switch-label {
  position: relative;
  display: block;
  height: inherit;
  font-size: 1.4rem;
  font-family: "GillSansMedium";
  text-transform: uppercase;
  border-radius: inherit;
  background-color: #9c9c9c;
  box-shadow: none;
  color: #fff; }

.switch-label:before, .switch-label:after {
  position: absolute;
  top: 50%;
  margin-top: -.5em;
  line-height: 1;
  -webkit-transition: inherit;
  -moz-transition: inherit;
  -o-transition: inherit;
  transition: inherit; }

.switch-label:before {
  content: attr(data-off);
  right: 12px; }

.switch-label:after {
  content: attr(data-on);
  left: 20px;
  opacity: 0; }

.switch-input:checked ~ .switch-label {
  background-color: #40cc9d; }

.switch-input:checked ~ .switch-label:before {
  opacity: 0; }

.switch-input:checked ~ .switch-label:after {
  opacity: 1; }

.switch-handle {
  position: absolute;
  border-radius: 100%;
  top: 6px;
  left: 8px;
  background: #fff;
  width: 22px;
  height: 22px;
  box-shadow: none; }

.switch-handle:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -6px 0 0 -6px;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: #fff; }

.switch-input:checked ~ .switch-handle {
  left: 80px;
  background: #fff;
  box-shadow: none; }

.switch-input--larger:checked ~ .switch-handle--larger {
  left: 105px;
  background: #fff;
  box-shadow: none; }

.switch-label, .switch-handle {
  transition: All 0.3s ease;
  -webkit-transition: All 0.3s ease;
  -moz-transition: All 0.3s ease;
  -o-transition: All 0.3s ease; }

.radio-custom {
  text-align: left;
  line-height: 16px;
  margin: 0 15px 0 0; }

.radio-custom label {
  cursor: pointer;
  font-size: 1.6rem; }

.radio-custom input[type="radio"] {
  display: none; }

.radio-custom input[type="radio"] + label:before {
  border: none;
  content: "\00a0";
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 900;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  margin: 0 5px 0 0;
  line-height: 18px;
  vertical-align: center;
  border: none;
  background-color: #cbd6de; }

.radio-custom input[type="radio"]:checked + label:before {
  color: #fff;
  content: "\2713";
  border: none;
  text-align: center;
  background-color: #0fb0da; }

.radio-custom input[type="radio"]:checked + label:after {
  font-weight: bold; }

.radio-custom input[type="radio"] + label:before, input[type="radio"]:checked + label:before {
  background-color: #cbd6de; }

.checkbox-custom-large {
  text-align: left;
  line-height: 16px;
  margin: 0 15px 0 0; }

.checkbox-custom-large label {
  cursor: pointer;
  font-size: 1.6rem; }

.checkbox-custom-large input[type="checkbox"] {
  display: none; }

.checkbox-custom-large input[type="checkbox"] + label:before {
  border: none;
  content: "\00a0";
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 900;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  margin: 0;
  line-height: 35px;
  vertical-align: center;
  border: none;
  background-color: #cbd6de; }

.checkbox-custom-large input[type="checkbox"]:checked + label:before {
  color: #fff;
  content: "\2713";
  border: none;
  text-align: center;
  background-color: #40cc9d; }

.checkbox-custom-large input[type="checkbox"]:checked + label:after {
  font-weight: bold; }

.checkbox-custom-large input[type="checkbox"] + label:before, input[type="checkbox"]:checked + label:before {
  background-color: #cbd6de; }

/*===============================================*/
/* SELECT2 OVERWRITES 	 						 */
/*===============================================*/
.select2-container {
  z-index: 99999; }

.filter-bar .select2-container {
  z-index: 999 !important; }

/* Select2 Single input where you search */
.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: none;
  border-radius: 20px;
  cursor: text;
  padding: 10px 10px 0 15px;
  position: relative;
  width: 100%;
  height: 42px;
  font-size: 1.6rem; }

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 5px;
  right: 25px;
  width: 20px; }

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #141515;
  line-height: 24px; }

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: none;
  height: 32px;
  left: 0;
  margin-left: 0px;
  margin-top: 0px;
  position: absolute;
  top: 0;
  width: 32px;
  background-image: url(../assets/images/icons/arrow-down.svg);
  background-position: 98% 50%;
  background-repeat: no-repeat;
  background-size: 32px 32px; }

/* Select2 Multiple input where you search */
.select2-container--default .select2-selection--multiple {
  background-color: #fff;
  border: none;
  border-radius: 20px;
  cursor: text;
  padding: 10px 10px 0 0;
  position: relative;
  width: 100%; }

.taxonomy-tags .select2-container--default .select2-selection--multiple {
  background-color: transparent;
  padding: 0 0 0 0;
  width: 100%; }

/* Select2 input focus */
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: none;
  outline: 0; }

/* Select2 selected tags inner text li */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #f0f5f8;
  border: none;
  border-radius: 20px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 2px;
  margin-top: 0px;
  margin-bottom: 5px;
  padding: 5px 35px 5px 15px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
  font-size: 1.6rem;
  font-family: "GillSansMedium"; }

.taxonomy-tags .select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #fff;
  margin-bottom: 2px;
  margin-top: 0px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right-color: currentcolor;
  border-right-style: none;
  border-right-width: medium;
  border-right: none;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: auto;
  right: 10px;
  top: 7px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 0px;
  padding-right: 20px;
  font-size: 1.7rem; }

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 0px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 30px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all; }

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
  font-size: 1.6rem; }
  .select2-container--default .select2-search--inline .select2-search__field::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #000;
    opacity: 1;
    /* Firefox */ }

.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: #0fb0da;
  color: #fff; }
  .select2-container--default .select2-results__option[aria-selected="true"]:hover {
    color: #000; }

.select2-results__option {
  font-size: 1.6rem; }

/*===============================================*/
/* DATEPICKER OVERWRITES 	 						 */
/*===============================================*/
.ui-datepicker {
  z-index: 999999999 !important; }

.ui-widget-header {
  border: 1px solid #dddddd;
  background: #f2f6f9;
  color: #000;
  font-weight: bold; }

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #e8f6f9;
  font-weight: normal;
  color: #183567; }

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  background: #fd6925;
  color: #fff; }

/*===============================================*/
/* 8. DASHBOARD 	 						 */
/*===============================================*/
.dashboard {
  width: 100%; }
  .dashboard__menu {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch; }

.dashboard-card {
  width: calc(33.333% - 80px);
  margin-right: 30px;
  margin-bottom: 30px;
  padding: 30px 30px 60px 30px;
  background-color: #e8f6f9;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  font-size: 1.8rem; }
  .dashboard-card:nth-child(3n+3) {
    margin-right: 0px; }
  .dashboard-card__title {
    width: 80%;
    font-size: 2.4rem;
    font-family: "GillSansBold";
    letter-spacing: -0.5px;
    color: #183567;
    padding-bottom: 30px; }
  .dashboard-card__icon {
    position: absolute;
    top: 15px;
    right: 30px;
    z-index: 33; }
    .dashboard-card__icon img {
      display: block;
      width: 70px; }
  .dashboard-card__row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px; }
  .dashboard-card__info {
    color: #506e8b;
    font-size: 1.8rem;
    display: flex;
    align-items: center; }
    .dashboard-card__info strong {
      font-size: 4.4rem;
      font-family: "GillSansBold";
      color: #0fb0da;
      letter-spacing: -4px;
      line-height: 1; }
    .dashboard-card__info p {
      padding: 0px;
      line-height: 1;
      padding: 0 10px; }
      .dashboard-card__info p b {
        color: #fd6925;
        font-family: "GillSansBook"; }
    .dashboard-card__info span {
      width: 32px;
      height: 32px;
      line-height: 32px;
      background-color: #40cc9d;
      color: #fff;
      font-size: 1.8rem;
      border-radius: 100%;
      text-align: center;
      font-family: "GillSansBold"; }
  .dashboard-card__links {
    position: absolute;
    bottom: 20px;
    right: 30px;
    z-index: 33;
    text-align: right; }
    .dashboard-card__links a {
      display: inline-block;
      margin: 0 0 0 15px;
      color: #183567;
      border-bottom: 1px #0fb0da solid;
      font-family: "GillSansBold";
      font-size: 1.6rem;
      line-height: 1.2; }
      .dashboard-card__links a:hover {
        color: #fd6925;
        border-bottom: 1px #fd6925 solid; }
      .dashboard-card__links a.remove {
        margin-right: 15px;
        color: #e83333;
        border-bottom: 1px #e83333 solid; }
        .dashboard-card__links a.remove:hover {
          color: #183567;
          border-bottom: 1px #183567 solid; }
    .dashboard-card__links--countries {
      bottom: 20px;
      left: 20px;
      width: calc(100% - 50px);
      display: flex;
      justify-content: space-between; }
  .dashboard-card:hover {
    background-color: #f2f9fb; }
    .dashboard-card:hover .dashboard-card__icon {
      right: 30px;
      transform: scale(1.1); }

/*===============================================*/
/* 8-1. DASHBOARD HELP & SUPPORT 	 	 */
/*===============================================*/
.help-support {
  width: 100%; }
  .help-support__header {
    width: calc(100% - 60px);
    padding: 10px 30px;
    background-color: #f2f6f9;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 22; }
  .help-support__title {
    display: flex;
    align-items: center; }
    .help-support__title h3 {
      font-size: 2.4rem;
      font-family: "GillSansBold";
      letter-spacing: -0.5px;
      color: #183567;
      padding: 0px; }
  .help-support__icon {
    padding: 0 0 0 30px; }
    .help-support__icon img {
      display: block;
      width: 60px; }
  .help-support__content {
    visibility: hidden;
    opacity: 0;
    height: 0px;
    background-color: #f8fcff;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    top: -20px;
    position: relative;
    z-index: 11; }
    .help-support__content.active {
      visibility: visible;
      opacity: 1;
      height: auto; }
  .help-support__inner {
    width: calc(100% - 60px);
    padding: 40px 30px 20px 30px; }
    .help-support__inner h4 {
      font-size: 1.8rem;
      color: #fd6925;
      font-family: "GillSansBold";
      padding: 10px 0 10px 50px;
      margin: 0 0 10px 0; }
      .help-support__inner h4.missions {
        background-image: url(../assets/images/icons/dashboard/missions.svg);
        background-repeat: no-repeat;
        background-position: 0 40%;
        background-size: 35px; }
      .help-support__inner h4.users {
        background-image: url(../assets/images/icons/dashboard/users.svg);
        background-repeat: no-repeat;
        background-position: 0 40%;
        background-size: 35px; }
      .help-support__inner h4.question-bank {
        background-image: url(../assets/images/icons/dashboard/question-bank.svg);
        background-repeat: no-repeat;
        background-position: 0 40%;
        background-size: 35px; }

/* ------Toggle Titles---------- */
.toggle-title {
  width: 100%;
  margin: 0 auto 0 auto; }
  .toggle-title__intro {
    padding-bottom: 20px; }
  .toggle-title__item {
    position: relative;
    width: 100%;
    overflow: hidden; }
  .toggle-title__input {
    position: absolute;
    opacity: 0;
    z-index: -1; }
  .toggle-title__label {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 0px; }
  .toggle-title__content {
    height: 0;
    overflow: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease; }
  .toggle-title__input:checked ~ .toggle-title__content {
    height: auto; }
  .toggle-title__label strong {
    background-color: #0fb0da;
    color: #fff;
    font-size: 1.3rem;
    font-weight: normal;
    padding: 8px 15px;
    border-radius: 25px;
    margin-left: 20px; }
  .toggle-title__input[type=checkbox]:checked + .toggle-title__label strong {
    background-color: #183567; }

/* ------Toggle---------- */
.toggle {
  width: 100%;
  margin: 0 auto 0 auto; }
  .toggle__item {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #e8f6f9;
    margin-bottom: 10px;
    border-radius: 25px; }
  .toggle__input {
    position: absolute;
    opacity: 0;
    z-index: -1; }
  .toggle__label {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 10px 10px 10px 20px;
    font-size: 1.7rem;
    font-family: "GillSansBold";
    color: #183567;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease; }
  .toggle__content {
    height: 0;
    overflow: hidden;
    background-color: #fff;
    font-size: 1.6rem;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease; }
    .toggle__content .video-embed {
      width: calc(100% - 40px);
      padding: 20px; }
  .toggle__input:checked ~ .toggle__content {
    height: auto; }
  .toggle__input:checked ~ .toggle__label, .toggle .toggle__label:hover {
    background-color: #fff; }
  .toggle__label span {
    position: absolute;
    right: 20px;
    top: 35%;
    display: block;
    width: 16px;
    height: 16px;
    text-align: center;
    background-image: url(../assets/images/icons/plus.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100%;
    -webkit-transition: all .35s;
    -o-transition: all .35s;
    transition: all .35s; }
  .toggle__input[type=checkbox]:checked + .toggle__label span {
    background-image: url(../assets/images/icons/minus.svg); }

.faq-content {
  padding: 0 20px 20px 20px; }
  .faq-content h3 {
    padding: 20px 0 10px 0;
    color: #0fb0da;
    font-weight: 700;
    font-size: 1.8rem; }
  .faq-content img {
    display: block;
    max-width: calc(100% - 10px);
    padding: 5px;
    margin: 10px 0;
    background-color: #ddd; }
  .faq-content ol {
    list-style-type: decimal;
    margin: 10px 0 10px 25px; }

/*===============================================*/
/* 9. USERS	MODULE 						 */
/*===============================================*/
.users {
  width: 100%;
  padding: 0 0 20px 0; }

.user {
  width: calc(100% - 20px);
  background-color: #e8f6f9;
  border-radius: 25px;
  margin: 0 0 10px 0;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .user__info-left {
    display: flex;
    align-items: center; }
  .user__info-right {
    display: flex;
    align-items: center; }
  .user__avatar {
    margin-right: 15px; }
    .user__avatar img {
      display: block;
      width: 65px;
      border-radius: 100%; }
  .user__name {
    margin-right: 10px;
    font-size: 2rem;
    color: #183567;
    font-family: "GillSansMedium"; }
    .user__name a {
      color: #183567; }
      .user__name a:hover {
        color: #0fb0da; }
  .user__role {
    background-color: #fff;
    color: #183567;
    font-size: 1.3rem;
    padding: 5px 15px;
    border-radius: 20px;
    margin-right: 10px;
    font-family: "GillSansMedium";
    letter-spacing: 0.5px; }
  .user__countries {
    padding: 15px 0 15px 35px;
    background-image: url(../assets/images/icons/dashboard/globe.svg);
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-size: 30px;
    font-size: 1.7rem; }
  .user__login-info {
    font-size: 1.6rem;
    margin-right: 15px;
    padding: 5px 0 0 0; }
  .user__delete {
    margin-right: 15px; }
    .user__delete img {
      display: block;
      width: 25px; }

/*===============================================*/
/* 9-1. USER PROFILE	 						 */
/*===============================================*/
.profile-container {
  width: 900px;
  margin: auto; }
  .profile-container__header {
    display: flex;
    padding-bottom: 20px; }
  .profile-container__avatar {
    width: 40%; }
    .profile-container__avatar img {
      display: block;
      width: 90%;
      border-radius: 100%; }
  .profile-container__user-details {
    width: calc(60% - 40px);
    padding-left: 40px; }
  .profile-container__name {
    font-size: 3rem;
    font-family: "GillSansMedium";
    padding: 0 0 20px 0;
    color: #183567;
    display: flex;
    align-items: center; }
    .profile-container__name b {
      font-family: "GillSansMedium";
      font-weight: 400; }
    .profile-container__name span {
      background-color: #f2f6f9;
      color: #183567;
      font-size: 1.3rem;
      padding: 5px 15px;
      border-radius: 20px;
      margin-left: 20px;
      font-family: "GillSansMedium";
      letter-spacing: 0.5px; }
  .profile-container__description {
    padding: 20px 0; }
  .profile-container__last-login {
    font-size: 1.4rem; }
  .profile-container__status {
    display: inline-block;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    margin: 20px 0 0 0;
    font-size: 1.4rem;
    font-family: "GillSansMedium";
    letter-spacing: 0.5px; }
    .profile-container__status--active {
      background-color: #40cc9d; }
    .profile-container__status--inactive {
      background-color: #cfdde8; }
  .profile-container__info {
    width: 100%;
    padding-bottom: 20px; }
    .profile-container__info-row {
      display: flex; }
      .profile-container__info-row label {
        display: block;
        width: 40%;
        min-height: 1px;
        text-align: right;
        color: #183567;
        font-family: "GillSansMedium"; }
        .profile-container__info-row label.smaller {
          font-size: 1.5rem; }
      .profile-container__info-row p {
        width: calc(60% - 40px);
        padding-left: 40px; }

/*===============================================*/
/* 10. MISSIONS	MODULE 						 */
/*===============================================*/
.missions {
  width: 100%;
  padding: 0 0 20px 0; }

.mission {
  width: calc(100% - 20px);
  background-color: #e8f6f9;
  border-radius: 25px;
  margin: 0 0 10px 0;
  padding: 10px; }
  .mission--passed {
    background-color: #f2f6f9; }
  .mission__header {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .mission__header-left {
      display: flex;
      align-items: center; }
    .mission__header-right {
      display: flex;
      align-items: center; }
  .mission__content {
    display: none; }
    .mission__content--active {
      display: block; }
  .mission__name {
    padding-left: 10px;
    margin-right: 10px;
    font-size: 1.8rem;
    color: #183567;
    font-family: "GillSansMedium"; }
    .mission__name span {
      color: #fd6925; }
  .mission--passed .mission__name span {
    color: #183567; }
  .mission__type {
    background-color: #fff;
    color: #0fb0da;
    font-size: 1.6rem;
    padding: 5px 15px;
    border-radius: 20px;
    margin-right: 10px;
    font-family: "GillSansMedium";
    letter-spacing: -0.5px; }
  .mission__more {
    margin-left: 10px; }
  .mission__content {
    width: 100%;
    padding: 10px 0; }
  .mission__row {
    width: calc(100% - 40px);
    padding: 20px;
    background-color: #ffffff;
    border-radius: 25px; }
    .mission__row--team {
      margin: 40px 0 20px 0; }
  .mission-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .mission-buttons__left {
      display: flex;
      align-items: center; }
    .mission-buttons__right {
      display: flex;
      align-items: center; }
    .mission-buttons .btn {
      margin-left: 5px; }
  .mission-team {
    position: relative; }
    .mission-team__row {
      display: flex;
      align-items: center;
      padding: 5px 0; }
      .mission-team__row--sleader {
        background-image: url(../assets/images/icons/team-divider.png);
        background-repeat: no-repeat;
        background-position: 20px bottom;
        padding-bottom: 15px; }
      .mission-team__row--smaller {
        margin-left: 40px; }
    .mission-team__headers {
      position: absolute;
      top: -40px;
      left: 5px;
      z-index: 333;
      display: flex; }
    .mission-team__title {
      background-color: #cfdde8;
      color: #183567;
      border-radius: 25px;
      font-family: "GillSansMedium";
      padding: 5px 30px;
      font-size: 1.8rem;
      margin-right: 10px; }
    .mission-team__avatar {
      margin-right: 15px; }
      .mission-team__avatar img {
        display: block;
        width: 45px;
        border-radius: 100%; }
    .mission-team__name {
      margin-right: 10px;
      font-size: 1.8rem;
      color: #183567;
      font-family: "GillSansMedium"; }
      .mission-team__name a {
        color: #183567; }
        .mission-team__name a:hover {
          color: #0fb0da; }
    .mission-team__role {
      background-color: #f2f6f9;
      color: #183567;
      font-size: 1.3rem;
      padding: 5px 15px;
      border-radius: 20px;
      margin-right: 10px;
      font-family: "GillSansMedium";
      letter-spacing: 0.5px; }
    .mission-team__specializations {
      font-size: 1.4rem; }
    .mission-team__line {
      height: 5px;
      border-bottom: 1px #ddd solid;
      flex-grow: 1;
      margin: 0 10px; }
    .mission-team__status {
      font-size: 1.3rem;
      padding: 8px 15px;
      border-radius: 20px;
      margin-right: 10px;
      font-family: "GillSansBold";
      letter-spacing: 0.5px;
      border: none; }
      .mission-team__status.progress {
        color: #183567; }
      .mission-team__status.review {
        color: #fd6925; }
      .mission-team__status.approved {
        color: #40cc9d; }
    .mission-team__uaf {
      background-color: #0fb0da;
      color: #fff;
      font-size: 1.3rem;
      padding: 5px 15px;
      border-radius: 20px;
      margin-right: 10px;
      font-family: "GillSansBold";
      letter-spacing: 0.5px; }
      .mission-team__uaf:hover {
        background-color: #183567;
        color: #fff; }
      .mission-team__uaf--disabled {
        background-color: #f2f6f9;
        color: #183567;
        cursor: default; }
        .mission-team__uaf--disabled:hover {
          background-color: #f2f6f9;
          color: #183567; }
    .mission-team__delete {
      background-color: #f2f6f9;
      padding: 5px 8px;
      margin-left: 10px;
      border-radius: 100%;
      cursor: pointer; }
      .mission-team__delete:hover {
        background-color: #fff; }
      .mission-team__delete img {
        display: block;
        width: 25px; }
  .mission__delete {
    margin-right: 15px; }
    .mission__delete img {
      display: block;
      width: 25px; }

/*===============================================*/
/* 10-1 CREATE TEAM MODAL	 			 */
/*===============================================*/
.create-team {
  display: flex;
  justify-content: space-between; }
  .create-team__list {
    width: calc(50% - 40px);
    background-color: #e8f6f9;
    border-radius: 25px;
    padding: 10px; }
  .create-team__filter-bar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .create-team__drag-container {
    width: calc(50% - 20px); }
    .create-team__drag-container h3 {
      font-size: 1.8rem;
      color: #183567;
      font-family: "GillSansMedium";
      padding: 0 0 10px 0; }
  .create-team__info-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px 0 10px;
    font-size: 1.6rem;
    color: #183567;
    font-family: "GillSansMedium"; }
  .create-team__info-users span {
    color: #fd6925; }

.sortable-users {
  margin: 10px 0;
  max-height: 435px;
  overflow-y: scroll; }

.sortable-user {
  background-color: #fff;
  border-radius: 25px;
  width: calc(100% - 20px);
  padding: 5px 10px;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  position: relative; }
  .sortable-user__avatar {
    margin-right: 15px; }
    .sortable-user__avatar img {
      display: block;
      width: 40px;
      border-radius: 100%; }
  .sortable-user__name {
    margin-right: 10px;
    font-size: 1.8rem;
    color: #183567;
    font-family: "GillSansMedium"; }
    .sortable-user__name a {
      color: #183567; }
      .sortable-user__name a:hover {
        color: #0fb0da; }
  .sortable-user__role {
    background-color: #f2f6f9;
    color: #183567;
    font-size: 1.2rem;
    padding: 5px 15px;
    border-radius: 20px;
    margin-right: 10px;
    font-family: "GillSansMedium";
    letter-spacing: 0.5px; }
  .sortable-user__delete {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 55;
    display: none; }

.create-team__drag-container .sortable-user__delete {
  display: block; }

.selected-users {
  width: calc(100% - 20px);
  padding: 10px;
  background-color: #f2f6f9;
  margin-bottom: 20px;
  border-radius: 25px; }
  .selected-users--blue {
    background-color: #e8f6f9; }
  .selected-users span {
    color: #7988a2;
    font-size: 1.8rem;
    padding: 20px;
    display: block; }
    .selected-users span b {
      font-size: 1.6rem;
      display: block; }
  .selected-users__alert {
    background-color: #e83333;
    color: #fff;
    padding: 5px 10px;
    margin: 5px 0;
    font-size: 1.4rem;
    border-radius: 25px;
    display: none; }
  .selected-users li.placeholder {
    background-color: #c2d7dc;
    width: calc(100% - 20px);
    min-height: 25px;
    border-radius: 25px;
    padding: 10px; }

/*===============================================*/
/* 10-2 MISSION DOCUMENTS	 			 */
/*===============================================*/
.mission-documents {
  width: 100%;
  padding: 10px 0 20px 0; }
  .mission-documents__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 5px 0; }
  .mission-documents__line {
    height: 5px;
    border-bottom: 1px #ddd solid;
    flex-grow: 1;
    margin: 0 10px; }

/*===============================================*/
/* 11. QUESTIONS BANK	 						 */
/*===============================================*/
.questions {
  width: 100%;
  padding-bottom: 20px; }
  .questions--with-checkboxes {
    width: 100%;
    height: 200px;
    overflow-y: scroll;
    margin: 20px 0;
    padding: 0px; }
  .questions__row {
    width: 100%; }
  .questions__group {
    display: none; }
    .questions__group.open {
      display: block; }
    .questions__group-buttons {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 0 5px 0; }
      .questions__group-buttons--foq {
        width: calc(100% - 25px);
        margin-left: 25px; }
      .questions__group-buttons--soq {
        width: calc(100% - 50px);
        margin-left: 50px; }
  .questions__toggle-content {
    display: none; }
  .questions__toggle-link {
    display: block;
    margin-left: 60px;
    padding: 5px 0 10px 0;
    color: #0fb0da;
    font-family: "GillSansBold";
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.4rem; }
    .questions__toggle-link:hover {
      color: #183567; }
  .questions .soq-total {
    color: #183567;
    flex-shrink: 0;
    margin-left: 20px;
    font-size: 1.6rem;
    font-family: "GillSansBold"; }
    .questions .soq-total span {
      color: #fd6925; }

.question {
  border-radius: 20px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 5px; }
  .question--caq {
    width: calc(100% - 20px);
    padding: 5px 10px;
    background-color: #e8f6f9;
    color: #183567; }
    .question--caq .question__title span {
      background-color: #0fb0da;
      color: #fff;
      border-radius: 25px;
      padding: 0 5px;
      display: inline-block;
      margin-right: 5px;
      font-size: 1.1rem;
      font-family: "GillSansBold";
      letter-spacing: 0.5px; }
    .question--caq .question__title {
      width: calc(100% - 250px); }
      .question--caq .question__title--checkbox {
        width: calc(100% - 35px); }
      .question--caq .question__title--has-group {
        background-image: url(../assets/images/icons/arrow-down-round.svg);
        background-position: 0 50%;
        background-repeat: no-repeat;
        background-size: 20px;
        padding-left: 25px;
        cursor: pointer; }
        .question--caq .question__title--has-group:hover {
          color: #0fb0da; }
        .question--caq .question__title--has-group.active {
          background-image: url(../assets/images/icons/arrow-up-round.svg); }
  .question--foq {
    width: calc(100% - 45px);
    padding: 5px 10px;
    margin-left: 25px;
    background-color: #fdf4f0;
    color: #141515; }
    .question--foq .question__title span {
      background-color: #fd6925;
      color: #fff;
      border-radius: 25px;
      padding: 0 5px;
      display: inline-block;
      margin-right: 5px;
      font-size: 1.1rem;
      font-family: "GillSansBold";
      letter-spacing: 0.5px; }
    .question--foq .question__title {
      width: calc(100% - 250px); }
      .question--foq .question__title--checkbox {
        width: calc(100% - 35px); }
      .question--foq .question__title--has-group {
        background-image: url(../assets/images/icons/arrow-down-round-orange.svg);
        background-position: 0 50%;
        background-repeat: no-repeat;
        background-size: 20px;
        padding-left: 25px;
        cursor: pointer; }
        .question--foq .question__title--has-group:hover {
          color: #fd6925; }
        .question--foq .question__title--has-group.active {
          background-image: url(../assets/images/icons/arrow-up-round-orange.svg); }
  .question--soq {
    width: calc(100% - 75px);
    padding: 5px 10px 5px 15px;
    margin-left: 50px;
    background-color: #f2f6f9;
    color: #141515; }
    .question--soq .question__title span {
      background-color: #4b4644;
      color: #fff;
      border-radius: 25px;
      padding: 0 5px;
      display: inline-block;
      margin-right: 5px;
      font-size: 1.1rem;
      font-family: "GillSansBold";
      letter-spacing: 0.5px; }
    .question--soq .question__title {
      width: calc(100% - 250px); }
      .question--soq .question__title--checkbox {
        width: calc(100% - 35px); }
      .question--soq .question__title--has-group {
        background-image: url(../assets/images/icons/arrow-down-round.svg);
        background-position: 0 50%;
        background-repeat: no-repeat;
        background-size: 20px;
        padding-left: 30px;
        cursor: pointer; }
        .question--soq .question__title--has-group:hover {
          color: #0fb0da; }
        .question--soq .question__title--has-group.active {
          background-image: url(../assets/images/icons/arrow-up-round.svg); }
  .question__buttons {
    width: 200px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row-reverse; }
  .question__edit {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: #0fb0da;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px; }
    .question__edit img {
      display: block;
      width: 18px; }
    .question__edit:hover {
      background-color: #183567; }
  .question__save {
    display: block;
    border-radius: 15px;
    background-color: #40cc9d;
    background-image: url(../assets/images/icons/checked-white-small.svg);
    background-position: 5px center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding: 4px 20px 4px 30px;
    margin-left: 10px;
    color: #fff;
    font-family: "GillSansMedium"; }
    .question__save:hover {
      background-color: #0fb0da;
      color: #fff; }
  .question__delete {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center; }
    .question__delete img {
      display: block;
      width: 28px; }
    .question__delete:hover {
      opacity: 0.7; }
  .question__row {
    width: calc(100% - 60px);
    padding: 5px 30px;
    display: flex;
    align-items: center; }
  .question__scoring {
    margin-right: 10px; }
  .question__justification {
    margin-right: 10px; }
    .question__justification.active {
      font-family: "GillSansBold"; }
  .question__recommendations {
    margin-right: 10px; }
    .question__recommendations.active {
      font-family: "GillSansBold"; }

.question-set-title {
  background-color: #f2f6f9;
  color: #fd6925;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  margin: 20px 0;
  font-family: "GillSansMedium"; }

.question-source {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  padding: 0 0 10px 0; }
  .question-source__user {
    display: flex;
    align-items: center; }
    .question-source__user img {
      display: block;
      width: 35px;
      border-radius: 100%; }
    .question-source__user a {
      padding: 0 0 0 10px;
      color: #183567; }
      .question-source__user a:hover {
        color: #fd6925; }
  .question-source__mission {
    padding: 0 10px; }

.scoring-radio {
  display: inline-block;
  padding: 0;
  margin: 0 5px 0 0;
  font-size: 1.4rem;
  cursor: pointer;
  font-family: "GillSansBold"; }

.scoring-radio label {
  cursor: pointer;
  display: block;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 100%;
  background-color: #fff; }

.scoring-radio input[type="radio"] {
  display: none; }

.scoring-radio:nth-child(1) input[type="radio"]:checked + label {
  color: #fff;
  background-color: #f13010; }

.scoring-radio:nth-child(2) input[type="radio"]:checked + label {
  color: #fff;
  background-color: #ffa302; }

.scoring-radio:nth-child(3) input[type="radio"]:checked + label {
  color: #fff;
  background-color: #efd000; }

.scoring-radio:nth-child(4) input[type="radio"]:checked + label {
  color: #fff;
  background-color: #74e124; }

.scoring-radio:nth-child(5) input[type="radio"]:checked + label {
  color: #fff;
  background-color: #4bb000; }

.question-checkbox {
  text-align: left;
  line-height: 16px;
  margin: 0 5px 0 0; }

.question-checkbox label {
  cursor: pointer;
  font-size: 1.6rem; }

.question-checkbox input[type="checkbox"] {
  display: none; }

.question-checkbox input[type="checkbox"] + label:before {
  border: none;
  content: "\00a0";
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 900;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  margin: 0;
  line-height: 20px;
  vertical-align: center;
  border: none;
  background-color: #cbd6de; }

.question-checkbox input[type="checkbox"]:checked + label:before {
  color: #fff;
  content: "\2713";
  border: none;
  text-align: center;
  background-color: #0fb0da; }

.question-checkbox input[type="checkbox"]:checked + label:after {
  font-weight: bold; }

.question-checkbox input[type="checkbox"] + label:before, input[type="checkbox"]:checked + label:before {
  background-color: #cbd6de; }

.caf-selected-tags {
  width: calc(100% - 40px);
  padding: 20px 20px 10px 20px;
  background-color: #f2f6f9;
  border-radius: 25px;
  margin-bottom: 20px; }
  .caf-selected-tags__row {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 5px; }
  .caf-selected-tags__label {
    width: 120px;
    flex-shrink: 0;
    font-size: 1.8rem;
    font-family: "GillSansMedium";
    padding: 0 20px 5px 20px; }
  .caf-selected-tags__list {
    display: flex;
    align-items: center; }
    .caf-selected-tags__list li {
      background-color: #40cc9d;
      color: #fff;
      padding: 5px 15px;
      border-radius: 20px;
      font-size: 1.6rem;
      font-family: "GillSansMedium";
      margin: 0 5px 5px 0; }

.assign-caf-link {
  color: #183567;
  font-family: "GillSansMedium";
  font-size: 1.6rem;
  background-image: url(../assets/images/icons/assign-user.svg);
  background-position: 0px center;
  background-repeat: no-repeat;
  background-size: 35px;
  padding: 5px 0 5px 40px;
  cursor: pointer;
  margin: 0 10px 0 0; }
  .assign-caf-link--all {
    background-image: url(../assets/images/icons/assign-user-gray.svg); }
  .assign-caf-link:hover {
    color: #fd6925; }

.assigned-caf-user {
  margin: 0 5px 0 0; }
  .assigned-caf-user img {
    display: block;
    width: 30px;
    border-radius: 100%; }

.edit-caf-link {
  color: #183567;
  font-family: "GillSansMedium";
  font-size: 1.6rem;
  cursor: pointer;
  margin: 0 10px 0 0; }
  .edit-caf-link:hover {
    color: #fd6925; }

.assigned-caf-user-tooltip {
  display: none;
  position: absolute;
  font-family: "GillSansMedium";
  font-size: 1.8rem;
  padding: 5px 12px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 10px 1px rgba(0, 0, 0, 0.2); }

/*===============================================*/
/* 11-1 QUESTIONS BANK TABS	 						 */
/*===============================================*/
.tabs {
  display: flex;
  flex-wrap: wrap;
  width: 100%; }
  .tabs__label {
    order: 1;
    display: block;
    cursor: pointer;
    background-color: #fff;
    text-align: center;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    font-size: 2rem;
    font-family: "GillSansMedium";
    width: auto;
    padding: 10px 30px;
    color: #183567; }
    .tabs__label--capacity {
      font-size: 1.8rem;
      padding: 5px 30px; }
  .tabs__content {
    order: 99;
    flex-grow: 1;
    width: 100%;
    display: none;
    padding-top: 10px;
    border-top: 1px #ddd solid; }
  .tabs input[type="radio"].tabs__radio {
    display: none; }
  .tabs input[type="radio"].tabs__radio:checked + label.tabs__label {
    background-color: #40cc9d;
    color: #fff; }
  .tabs input[type="radio"].tabs__radio:checked + label.tabs__label--capacity {
    background-color: #0fb0da; }
  .tabs input[type="radio"].tabs__radio:checked + label.tabs__label + .tabs__content {
    display: block; }

/*===============================================*/
/* 12. REPORT 						 */
/*===============================================*/
.report {
  width: 100%;
  padding: 10px 0; }
  .report__content {
    padding: 20px; }
  .report h3 {
    font-size: 1.8rem;
    font-family: "GillSansBold";
    padding: 10px; }
  .report p {
    font-size: 1.6rem;
    font-family: "GillSansMedium";
    padding: 0 0 10px 0; }
  .report__title {
    width: calc(100% - 40px);
    padding: 10px 20px;
    border-radius: 20px;
    background-color: #e8f6f9;
    font-size: 2rem;
    font-family: "GillSansBold";
    color: #183567; }
  .report__toggle-title {
    width: calc(100% - 40px);
    padding: 10px 20px;
    margin-bottom: 10px;
    border-radius: 20px;
    background-color: #e8f6f9;
    background-image: url(../assets/images/icons/arrow-down-round.svg);
    background-position: 99% center;
    background-repeat: no-repeat;
    background-size: 25px;
    font-size: 2rem;
    font-family: "GillSansBold";
    color: #183567;
    cursor: pointer; }
    .report__toggle-title:hover {
      background-color: #f2f6f9; }
    .report__toggle-title--child1 {
      width: calc(100% - 60px);
      margin-left: 20px;
      margin-bottom: 4px;
      font-size: 1.6rem;
      padding: 6px 20px;
      background-color: #f2f6f9; }
    .report__toggle-title.active {
      background-color: #0fb0da;
      background-image: url(../assets/images/icons/arrow-up-round-lblue.svg);
      color: #fff; }
  .report__toggle-content {
    display: none; }
    .report__toggle-content--child1 {
      width: calc(100% - 20px);
      margin-left: 20px;
      margin-bottom: 10px; }
      .report__toggle-content--child1 .report__toggle-content {
        width: calc(100% - 20px);
        margin-left: 20px;
        margin-bottom: 10px; }
  .report__subtitle {
    width: calc(100% - 40px);
    padding: 10px 20px;
    border-radius: 20px;
    background-color: #f2f6f9;
    font-size: 1.8rem;
    font-family: "GillSansBold";
    color: #fd6925; }
  .report__diagram {
    width: 100%;
    text-align: center;
    padding: 20px 0; }
  .report__user {
    display: flex;
    align-items: center; }
    .report__user img {
      display: block;
      width: 30px;
      border-radius: 100%;
      margin-right: 10px; }
    .report__user span {
      font-size: 1.6rem;
      font-family: "GillSansMedium";
      color: #183567;
      margin-right: 10px; }
  .report__container-gray {
    width: calc(100% - 40px);
    padding: 20px;
    border-radius: 20px;
    background-color: #f2f6f9; }
  .report__caq {
    font-size: 1.8rem;
    color: #183567;
    font-family: "GillSansMedium"; }
  .report__hazard {
    width: calc(100% - 40px);
    padding: 10px 20px;
    border-radius: 20px;
    background-color: #f2f6f9;
    display: flex;
    margin-bottom: 5px; }
    .report__hazard label {
      font-size: 1.6rem;
      color: #183567;
      font-family: "GillSansBold";
      width: 200px;
      display: block;
      flex-shrink: 0; }

.notice--assign {
  background-color: #feeef1;
  color: #e83333;
  font-size: 1.6rem;
  padding: 5px 20px 5px 40px;
  border-radius: 25px;
  margin-right: 20px;
  background-image: url(../assets/images/icons/alert.svg);
  background-position: 15px center;
  background-repeat: no-repeat;
  background-size: 18px; }

.notice--form {
  background-color: #feeef1;
  color: #e83333;
  font-size: 1.6rem;
  padding: 5px 20px 5px 40px;
  border-radius: 25px;
  margin: 0 0 10px 140px;
  background-image: url(../assets/images/icons/alert.svg);
  background-position: 15px center;
  background-repeat: no-repeat;
  background-size: 18px; }

/*===============================================*/
/* 13. MODAL GENERAL 		 */
/*===============================================*/
.modal {
  position: fixed;
  z-index: 10000;
  /* 1 */
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: scroll; }

.modal.modal--visible {
  visibility: visible; }

.modal__overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s; }

.modal.modal--visible .modal__overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s; }

.modal__wrapper {
  position: relative;
  z-index: 9999;
  width: 600px;
  margin: auto;
  background-color: #fff;
  border-radius: 10px; }
  .modal__wrapper--large {
    width: 1480px; }

.modal-transition {
  -webkit-transition: all 0.3s 0.02s;
  -moz-transition: all 0.3s 0.02s;
  transition: all 0.3s 0.02s;
  transform: translateY(10%);
  opacity: 0; }

.modal.modal--visible .modal-transition {
  transform: translateY(0);
  opacity: 1; }

.modal__body {
  position: relative;
  padding: 10px 20px 20px 20px; }
  .modal__body--warning {
    padding: 40px 20px; }

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .modal__header-title {
    font-size: 2.2rem;
    font-weight: 700;
    padding: 10px 0 20px 0; }

.modal__icon {
  width: 100%;
  text-align: center;
  padding: 0 0 20px 0; }
  .modal__icon img {
    display: block;
    width: 64px;
    margin: auto; }

.modal__title {
  width: 100%;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  padding: 10px 0 20px 0; }

.modal__title--no-padding {
  padding: 10px 0 5px 0; }

.modal__text {
  text-align: center;
  padding: 0 0 20px 0; }

.modal__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 0 0; }
  .modal__buttons--right {
    justify-content: flex-end; }
  .modal__buttons .btn {
    margin: 0 10px; }

.modal__form {
  background-color: #e8f6f9;
  padding: 5px;
  border-radius: 25px;
  margin: 20px 0; }

.modal__row {
  width: 100%; }

.modal__label {
  width: 100%;
  display: block;
  padding: 0 0 5px 0;
  font-size: 1.4rem;
  font-weight: 600; }

.modal__form label.error {
  padding: 10px 0 0 0;
  font-size: 14px;
  color: #d11d69;
  width: 100%;
  display: block; }

.modal__input {
  width: calc(100% - 30px);
  padding: 5px 15px;
  display: block;
  background-color: #fff;
  border: none;
  height: 35px;
  margin: 0;
  border-radius: 20px;
  font-size: 1.6rem; }

.modal__submit {
  width: 100%;
  margin: 20px auto 0 auto;
  border: none;
  border-radius: 15px;
  color: #fff;
  display: block;
  font-size: 1.6rem;
  padding: 15px 0;
  font-weight: 600;
  text-align: center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  box-shadow: none;
  -webkit-box-shadow: none;
  -webkit-appearance: none;
  font-family: 'Assistant', sans-serif; }

.modal__submit:hover {
  background-color: #000; }

.modal__content {
  width: 100%;
  height: 0;
  visibility: hidden;
  position: relative;
  transform: translate(-100%);
  overflow: hidden; }

.modal__content--success, .modal__content--error {
  text-align: center; }

.modal__content.modal__content--visible {
  visibility: visible;
  transform: translate(0);
  width: 100%;
  height: 100%; }

.modal__close {
  width: 16px;
  height: 16px;
  background-image: url(../assets/images/icons/close.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 16px;
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 999999;
  cursor: pointer; }

.modal__close:hover {
  opacity: 0.5; }

.page-not-found {
  width: 100%;
  text-align: center; }
  .page-not-found h2 {
    padding: 0 0 5px 0;
    font-family: "GillSansMedium"; }
  .page-not-found p {
    text-align: center; }
  .page-not-found img {
    padding: 20px 0 0 0; }

/*===============================================*/
/* 14. FOOTER 	 						 */
/*===============================================*/
.footer {
  background-color: #f8fcff;
  padding: 40px 0;
  font-size: 1.4rem;
  text-align: center;
  overflow: hidden; }
  .footer__content {
    width: 1480px;
    margin: auto; }
  .footer__logo {
    display: inline-block;
    padding: 0px;
    margin: 0px; }
  .footer__menu {
    width: 100%;
    text-align: center;
    padding: 20px 0; }
    .footer__menu ul li {
      display: inline-block;
      font-size: 1.6rem;
      padding: 0 10px; }
      .footer__menu ul li a {
        color: #183567; }
        .footer__menu ul li a::after {
          content: '';
          display: block;
          width: 0;
          height: 1px;
          background: #fd6925;
          transition: width .3s; }
        .footer__menu ul li a:hover::after {
          width: 100%; }
        .footer__menu ul li a:hover {
          color: #fd6925; }
      .footer__menu ul li.selected a {
        color: #fd6925; }
  .footer__copyrights {
    width: 100%;
    text-align: center;
    font-size: 1.6rem; }
    .footer__copyrights span {
      font-weight: 700; }
      
/*===============================================*/
/* OVERWRITES 						 */
/*===============================================*/	  
.form-container__row .js-form-item {
    width: 100%;
}
.form-container__row #edit-members .js-form-item,
.form-container__row #edit-geographical-coverage .js-form-item {
  width: auto;
}
.form-container__label span {
  color: #e83333;
}
.form-container__info span {
  color: #e83333;
}
