/**
 * CSS VARIABLES
 */

html {
  --top-menu-height: 180px;
  --top-menu-sidebar-width: 350px;
  --nav-chevron-width: 52px;
  --input-field-height: 60px;
  --dashboard-input-height: 34px;
  --default-border-width: 1px;
}

/****************************************/

/*Select color*/
::selection {
  background: #018fbf;
  color: #fff;
}

a,
a:hover,
a:focus {
  transition: 0.3s ease all;
  text-decoration: none;
  color: inherit;
}

@media print {
  .footer {
    display: none !important;
  }

  body {
    background: #fff !important;
    font-size: 11px;
    color: #000 !important;
  }

  .page-section-full, .page-section2 {
    padding: 1px !important;
  }

  table tr td {
    font-size: 11px !important;
    padding: 1px !important;
  }
}

h1 a, h2 a, h3 a, h4 a, h5 a {
  color: #028cbb;
  text-decoration: underline;
}

a {
  color: #028cbb;
}

form input {
  font-family: "Roboto", Arial, sans-serif !important;
}

label {
  display: block;
}

form label {
  font-weight: 700;
}

input:focus,
textarea:focus {
  outline: none;
}

strong {
  color: inherit;
  font-weight: 700;
}

body {
  font-size: 14px;
  color: #202020;
  font-weight: 400;
  font-family: "Roboto", "Trebuchet MS", sans-serif !important;
  background: #fcfcfc;
  margin: 0;
}

body p {
  font-family: "Roboto", sans-serif !important;
  font-size: 14px;
  margin-bottom: 20px;
  color: #000;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

/*Base List*/
ul {
  margin-left: 20px;
  margin-bottom: 20px;
  padding-left: 0;
}

ol {
  padding-left: 0;
  margin-bottom: 20px;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 48px;
  color: #fff;
  text-transform: uppercase;
}

h2, .h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2c3740;
}

h3, .h3 {
  font-size: 32px;
  font-weight: 700;
  color: #2c3740;
}

h1, h2, h3, h4, h5 {
  color: black;
  margin-bottom: 20px;
}

h4, .h4 {
  font-size: 24px;
  color: #2c3740;
}

h5, .h5 {
  font-size: 18px;
  color: #2c3740;
}

h6, .h6 {
  font-size: 14px;
  font-weight: 700;
  color: #2c3740;
}

ol {
  margin-left: 20px;
}

ol li {
  margin-bottom: 10px;
}

ol li ol {
  list-style-type: lower-latin;
  margin-bottom: 10px;
  margin-left: 17px;
}

ol li ol li {
  margin-bottom: 3px;
}

.table {
  margin-bottom: 0;
  font-size: 13px;
}

.table thead {
  background: #242a30;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}

.table thead tr {
  border: none !important;
}

.table tbody tr {
  font-size: 13px;
}

.table tbody tr:hover {
  background: #FCFCFC;
}

.table tbody tr td {
  border-bottom: 1px solid #e7e7e7;
  padding: 10px;
}

@media (max-width: 1662px) {
  .table tbody tr td {
    padding: 4px;
  }
}

.table tbody tr:nth-of-type(2n) {
  background: #FCFCFC;
}

.table tbody tr:nth-of-type(2n):hover {
  background: #F8F8F8;
}

.table tbody tr td {
  border-bottom: 1px solid #EAEAEA;
}

.logo {
  width: 90px;
  display: inline-block;
  margin-right: 10px;
}


/* Home page */
/* ToDo: re-write normal-section with new classes because this is confusing and really old code */

.normal-section.slider2.js-offset {
  background-position: right, 0;
}

.normal-section.slider2 {
  min-height: calc(100vh - var(--top-menu-height));
  position: relative;
  background-image: url(../svg/kaz-map-dotted.svg"), linear-gradient(to bottom, #067CBE 8%, #3FDDE7 60%, #3fdde785 75%, white);
  background-repeat: no-repeat;
  background-position: right -150px center, 0 0; /* multiple: svg, gradient */
  background-blend-mode: soft-light;
  display: flex;
  flex-direction: column;
  transition: 1s background-position ease-out;
}

.normal-section__cta {
  margin-top: auto;
  margin-bottom: 40px;
  transition: 1s all ease-out;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transform-origin: 50% 50%;
}

.nav-slider__slide {
  opacity: 0;
  visibility: hidden;
  transition: 0.6s ease all;
  display: none;
}

.nav-slider__slide.active {
  opacity: 1;
  visibility: visible;
  display: block;
}


.nav-title {
  padding-bottom: 7px;
  margin-bottom: 25px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 45px; /* fixed height prevents menu from jumping when there is no subtitle */
}

.nav-title__main,
.nav-title__sub,
.nav-title__icon {
  margin: 0;
  color: inherit;
}

.nav-title__sub {
  margin-top: 15px;
}

.nav-title__icon {
  color: #347bbe;
  font-size: 24px;
  cursor: pointer;
  min-width: 45px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00497C;
  border-radius: 150px;
  line-height: 45px;
  margin-left: 20px;
}

.nav-title__icon:hover {
  color: white;
  background-color: #003459;
}

.nav-title--secondary {
  border-bottom-width: 1px;
  margin-top: 30px;
  font-weight: 500;
}

.nav-title--tertiary {
  padding: 10px 20px;
  margin: 0;
  background-color: #00375F;
}

.nav-slider {
  width: 100%;
  position: relative;
  z-index: 2;
}

.nav-slider--secondary {
  position: absolute;
  right: 0;
  background-color: #067CBE;
  z-index: 11;
  min-height: calc(100vh - var(--top-menu-height));
  transform: translateY(-150%);
  transition: .35s all ease-out, .5s padding-left ease-out;
  background-image: url("../svg/kaz-map-dotted.svg");
  background-repeat: no-repeat;
  background-position: -33% 105%;
  background-size: 60%;
  background-blend-mode: soft-light;
  padding: 50px 15px;
}

@media screen and (min-width: 1280px) {
  .nav-slider--secondary {
    padding-left: var(--top-menu-sidebar-width);
  }
}

.nav-slider--secondary.slide-in {
  transform: translateY(0);
}

.nav-slider__button {
  color: white;
  padding: 10px 15px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  height: 89px;
  text-decoration: none;
  background-color: rgba(255, 255, 255, .15);
  margin-left: 2px;
  margin-bottom: 2px;
  transition: .3s background-color ease-in;
}

.nav-slider__button:focus,
.nav-slider__button:visited {
  color: white;
}

.c-accordion-link {
  color: white;
  display: flex;
  align-items: center;
  padding: 0 var(--nav-chevron-width) 0 20px;
}

.tab-pane .tab-pane .c-accordion-link {
  padding-left: 40px;
}

.c-accordion-link:hover {
  color: #FCD039;
}

.c-accordion-link__icon {
  margin-right: 10px;
}

.c-accordion-link__text {
  height: 100%;
  flex: 1;
  padding: 20px 0;
  line-height: 1.3;
  display: flex;
  align-items: center;
}

.c-accordion-link:not(:last-of-type) .c-accordion-link__text {
  border-bottom: 1px solid #0063AB;
}

@media screen and (min-width: 1024px) {
  .nav-slider__button {
    font-size: 16px;
  }
}

.nav-slider--secondary .nav-slider__button {
  height: 55px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  border-radius: 5px;
  color: white;
  background-color: #005089;
  padding: 0 0 0 20px;
  margin-left: 0;
  transition: margin-bottom 0s !important;
}

.nav-chevron {
  font-size: 12px;
  text-align: center;
  margin-left: auto;
  line-height: 55px;
  min-width: var(--nav-chevron-width);
  width: var(--nav-chevron-width);
  background-color: #00497C;
  color: #51A4D2;
  border-radius: 0 5px 5px 0;
}

li.active .nav-slider__button {
  color: white;
  background-color: #004170;
  margin-bottom: 0;
  border-bottom-left-radius: 0;
  box-shadow: inset 0 -1px 0 0 #003459;
}

li.active {
  margin-bottom: 10px;
}

li.active .nav-chevron {
  transform: rotate(180deg);
  border-radius: 0 0 0 5px;
  background-color: #003459;
  color: white;
}

.nav-slider__button:hover {
  background-color: rgba(255, 255, 255, .3);
  color: white;
}

.nav-slider__button.active,
.nav-slider__button.active:hover {
  background-color: #153766;
  color: white;
}

li.active .nav-slider__button:hover {
  background-color: #004170;
  color: white;
}

.nav-slider--secondary .nav-slider__button:hover {
  background-color: #004170;
}

.nav-slider--secondary .nav-slider__button:hover .nav-chevron {
  background-color: #003459;
  color: white;
}

.nav-slider__button .image {
  filter: brightness(10); /* This is a hacky solution which doesn't work on IE, but it was the easiest to do because SVG is used as a background-image. */
}

/* Nested button */
.tab-pane.active .nav-slider__button {
  box-shadow: inset 0 1px 0 0 #003459;
  border-radius: 0;
}

.tab-pane.active .nav-slider__button .nav-chevron {
  background-color: transparent;
  transform: rotate(0);
}

/* Nested active button */
.tab-pane.active .active .nav-slider__button {
  box-shadow: inset 0 1px 0 0 #003459, inset 0 -1px 0 0 #003459;
  background-color: #035590;
}

.tab-pane.active .active .nav-slider__button .nav-chevron {
  transform: rotate(180deg);
}

.nav-slider .text {
  flex: 1;
  height: 65px;
  display: flex;
  align-items: center;
  font-size: 13px;
  transition: .3s font-size ease-out;
}

.nav-slider__button .image {
  width: 35px;
  height: 35px;
  margin-right: 12px;
  transition: .3s all ease-out;
}

@media screen and (min-width: 1386px) {
  .nav-slider__button .image {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }

  .nav-slider .text {
    font-size: 15px;
  }
}

/* TODO: refactor home page in such a way that we don't depend on Bootstrap classes and JS */
.fade {
  height: 0;
  visibility: hidden;
}

.fade.in {
  height: auto;
  visibility: visible;
}

.nav-slider__dropdown {
  background-color: #004170;
  border-radius: 0 0 5px 5px;
}

.c-dropdown-link {
  height: 55px;
  background: #005089;
  border-radius: 5px;
  padding: 20px;
  color: white;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.c-dropdown-link:hover {
  color: #FCD039;
}

.c-dropdown-link .fa {
  margin-right: 10px;
}


.js-offset .normal-section__cta {
  opacity: 0;
  visibility: hidden;
  transform: scale(.7);
}

.js-offset .welcome-text {
  margin-top: 25%;
}

.welcome-text {
  font-size: 30px;
  font-weight: 400;
  text-transform: none;
  color: white;
  margin-top: 60px;
  width: 100%;
  transition: 1s margin-top ease-out;
  text-align: center;
}

@media (min-width: 1440px) {
  .welcome-text {
    font-size: 36px;
    margin-top: 80px;
  }
}

@media (max-width: 1000px) {
  .welcome-text {
    font-size: 25px;
    padding: 15px 0;
    text-align: center;
    margin-bottom: 10px;
  }
}


/************************************
 *              PAGES               *
 ************************************/

/** COMMON PAGES
 *
 *  Left over styles used only sporadically on front-pages.
 *  It will soon be safe to delete them all together.
 *
 *  TODO:
      1. Clean up remaining `page-section` styles from front-pages
      2. Delete the following styles
 */

@media all {
  .page-section {
    height: auto;
    width: 100%;
    display: block;
    text-align: left;
  }

  .page-section .page-content {
    padding: 0 80px 0 50px;
    color: #707070;
    font-size: 15px;
  }

  @media (max-width: 1000px) {
    .page-section .page-content {
      padding: 30px;
    }
  }

  .page-section .page-content p,
  .page-section .page-content ul {
    color: #707070;
    font-size: 15px;
  }

  .page-section2 {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    padding: 200px 40px 40px;
    background: rgba(255,255,255,0.8);
    box-shadow: 0 0 8px rgba(0,0,0,0.12);
    position: relative;
    min-height: 100vh;
  }

  .page-section-full {
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    padding: 200px 40px 40px;
    background: rgba(255,255,255,0.8);
    box-shadow: 0 0 8px rgba(0,0,0,0.12);
    position: relative;
    min-height: 100vh;
  }

  .page-section2 p,
  .page-section2 p strong,
  .page-section2 h4,
  .page-section2 h3,
  .page-section2 h5,
  .page-section2 ul {
    color: #202020;
  }

  .page-section2 p a {
    text-decoration: underline;
    color: #45d0ff;
  }

  .page-section2 ol li {
    color: #202020;
    margin-bottom: 4px;
  }

  .page-section2 p a:hover {
    text-decoration: underline;
    color: #202020;
  }

  .page-section2 ul li a {
    text-decoration: underline;
  }

  .page-section2 ul li a:hover {
    color: #202020;
  }

  .page-section2 h3 {
    font-size: 23px;
  }

  .page-section2 h4 {
    font-size: 16px;
    font-weight: 700;
  }

  .page-section2 h5 {
    font-size: 14px;
    font-weight: 700;
  }

  .page-title h3 {
    color: #202020;
    padding-bottom: 6px;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    margin-bottom: 40px;
    text-transform: uppercase;
  }

  .page-title h3:after {
    width: 60%;
    content: '';
    position: absolute;
    bottom: -10px;
    display: block;
    height: 3px;
    left: 0;
    background: #202020;
  }
}
/* END OF COMMON PAGES*/




/************* DATA TABLES - REGISTRIES PAGES **************
 *
 * These styles are used on the dashboard, but it is relatively easy
 * to abandon them for Registries pages and use something else instead.
 *
 * TODO:
    1. Apply new design to Registries tables
    2. Delete `kaz-table` styles afterwards
 */
@media all {

  /**
 *  In order to override PrimeFaces' icons and to use FontAwesome, we need some visual hacks.
 *
 *  1. FontAwesome is used as absolutely positioned pseudo-element in this case, so the main class needs to be relative
 *  2. PrimeFaces is using letters F, P, N, E that it was hiding with text-indent (we reset it here)
 *  3. In order to hide letters, we need to use the same colour as for the background (ui-state-default)
 */
  .ui-icon {
    position: relative; /* [1] */
    display: inline-block;
    vertical-align: middle;
    margin-top: -.25em;
    text-indent: initial; /* [2] */
    overflow: hidden;
    background-repeat: no-repeat;
    color: #f6f6f6; /* [3] */
  }

  .o-dashboard .ui-button .ui-icon,
  .o-dashboard .ui-selectonemenu-trigger .ui-icon {
    display: flex;
    align-items: center;
    margin: 0 !important;
    height: 100%;
    text-align: center;
    justify-content: center;
    background-image: none !important;
    top: 0; /* resets primefaces default stylesheet which cannot be excluded */
  }

  .ui-selectonemenu-trigger .ui-icon {
    background-image: none;
    height: 100%;
    margin: 0 !important;
  }

  .ui-icon::before,
  .ui-icon::after {
    position: relative;
    margin: 0;
    padding: 0;
    transform: initial;
  }

  .ui-datatable table,
  .ui-datatable-scrollable table {
    border-collapse: separate;
    border-spacing: 0 5px;
  }

  .kaz-data-table .ui-datatable-tablewrapper {
    overflow: auto;
  }

  .kaz-data-table .ui-inputfield:not(.ui-selectonemenu-label) {
    margin-top: 3px !important;
    display: block;
    background-color: #fff !important;
    color: black;
  }

  .kaz-data-table table thead tr {
    background-color: #203179 !important;
  }

  .kaz-data-table table thead tr th {
    border: 0 !important;
    padding: 10px;
    text-align: left;
    border-radius: 0 !important;
    font-size: 12px;
    vertical-align: middle;
  }

  .kaz-data-table table thead tr th.ui-filter-column {
    vertical-align: bottom;
  }

  .kaz-data-table table thead tr th:first-child {
    border-top-left-radius: 5px !important;
  }

  .kaz-data-table table thead tr th:last-child {
    border-top-right-radius: 5px !important;
  }

  .kaz-data-table table thead tr th span {
    font-weight: 500;
    color: #fff !important;
    text-shadow: none !important;
  }

  .kaz-data-table .ui-datatable-tablewrapper table thead tr th {
    border: none;
    text-align: left;
  }

  .kaz-data-table table tbody tr {
    background-color: #f7fafd;
  }

  .kaz-data-table table tbody tr.new-app-row-list {
    background-color: #e4f2ff;
  }

  .kaz-data-table table tbody tr.ui-state-hover {
    background-color: rgba(4, 114, 193, .05);
  }

  .kaz-data-table table tbody tr td {
    border: 0 !important;
    font-size: 13px;
    padding: 20px;
    font-weight: 400;
    color: #1d3f5c;
  }

  .ui-dialog .kaz-data-table tr.ui-state-highlight td {
    color: white;
  }

  .kaz-data-table table tbody tr.new-app-row-list td {
    font-weight: 500;
    color: #015986;
  }

  .kaz-data-table table tbody tr td:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }

  .kaz-data-table table tbody tr td:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }

  .kaz-data-table table tbody tr td .ui-button-icon-only {
    padding: 2px;
  }

  .kaz-data-table.ui-datatable .ui-column-filter {
    margin: 0;
    width: 100%;
  }

  .kaz-data-table .ui-icon.fa-pencil {
    color: #203179;
  }

  .ui-sortable-column-icon.ui-icon.ui-icon-carat-2-n-s::before,
  .ui-sortable-column-icon.ui-icon.ui-icon-triangle-1-n::before {
    content: "\f0dc";
    font-family: "FontAwesome";
    color: white;
    font-size: 16px;
    margin-left: 10px;
  }

  .ui-autocomplete-panel {
    background-color: white;
  }

  .ui-autocomplete-panel .ui-icon {
    color: white;
    cursor: pointer;
  }
}

.ui-dialog,
.ui-selectcheckboxmenu-panel {
  background-color: white;
}

.ui-dialog .ui-dialog-titlebar {
  background-color: #203179 !important; /* !important is needed only until we completely remove theme.css dependency */
  color: white;
}

.ui-dialog .ui-dialog-titlebar,
.ui-dialog .ui-dialog-content {
  padding: 15px;
}

.ui-dialog-titlebar-icon.ui-dialog-titlebar-close,
.ui-dialog-titlebar-icon.ui-dialog-titlebar-close.ui-state-hover {
  background-color: transparent;
}

.ui-dialog-titlebar-icon.ui-dialog-titlebar-close .ui-icon-closethick {
  overflow: visible;
  background-image: none;
}

.ui-dialog-titlebar-icon.ui-dialog-titlebar-close .ui-icon-closethick::before {
  content: "\f00d";
  font-family: "FontAwesome";
  color: white;
  font-size: 16px;
}

/**
 *  List all CPC applications now have warning colors for apps that were not opened for 20 and 30 days.
 *  Todo: Instead of !important, we should chain two classes (row + namespaced state)
 */
.is-warning  {
  background-color: #FDE8BA !important;
}

.is-expired {
  background-color: #FFDCE2 !important;
}

/******************END OF REGISTRIES ******************/


/* LOGIN PAGE, SELF-REGISTRATION, RESET PASSWORD... */
.login-page {
  background: transparent !important;
}

.login-holder .input-group-addon {
  background: transparent;
  color: #203179;
  border: none;
}

.login-holder .login-link {
  color: #505E98;
}

.login-holder {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 15px;
  transform: translate(-50%, -50%);
  height: auto;
  background: white;
  width: 535px;
  transition: 0.3s ease all;
  min-height: 300px;
  padding: 40px;
  z-index: 9999;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.12);
  text-align: center;
}

.login-holder__text {
  color: #63799f;
}

.login-holder:hover {
  box-shadow: 0 10px 20px -6px #aac4f866;
}

.login-holder h4, /* I need to keep this one for the compatibility reasons, until I clean every last instance of it */
.login-holder__title {
  color: #015986;
  text-transform: uppercase;
  font-size: 24px;
  width: 100%;
  font-weight: 700;
  margin: 19px auto 30px;
}

.login-holder__subtitle {
  text-transform: uppercase;
  font-size: 18px;
  color: #8c95a0;
  margin-bottom: 40px;
  font-weight: 400;
}

.login-holder input {
  border: none;
  border-bottom: 1px solid rgba(0,0,0, .1);
  background: #e8f0fe;
  display: block;
  outline: none;
  box-shadow: none;
  padding: 21px 21px 21px 16px;
  color: #192b42;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  transition: 0.3s ease all;
}

.login-holder input:focus {
  border: none;
  outline: none;
  border-bottom: 1px solid rgba(0,0,0, .4);
  box-shadow: none;
  padding-left: 16px;
}

.login-holder input:hover {
  border-color: rgba(0,0,0, .4);
  background: transparent;
}

.login-holder input::placeholder {
  color: #192b42;
  opacity: .3;
}

.login-holder input:hover::placeholder,
.login-holder input:focus::placeholder {
  opacity: .5;
}

.login-holder input[type="submit"],
.login-submit-btn {
  width: 100%;
  color: #fff;
  border: 0;
  outline: none;
  background: #015986;
  font-size: 16px;
  display: block;
  text-shadow: none;
  border-radius: 10px;
  margin: 20px auto 15px;
  padding: 15px;
  transition: 0.3s ease all;
  font-weight: 500;
  cursor: pointer;
}

.login-holder input[type="submit"]:hover,
.login-submit-btn:hover {
  background: #153766;
}

.login-holder .forgot-p {
  margin-top: 10px;
  text-align: left;
}

.login-holder .forgot-p a {
  color: #fff;
  text-decoration: none;
}

.login-holder .forgot-p a:hover {
  color: #f2f2f2;
  text-decoration: underline;
}

.login-link {
  display: inline-block;
  width: 100%;
  text-align: right;
}

.login-submit-btn .ui-button-text {
  padding: 0;
  margin: 0;
}

.login-btn-holder {
  display: flex;
  justify-content: space-between;
}

.login-btn-glass {
  color: #203179;
  background: #DFE7F5;
  border: 0;
  border-radius: 8px;
  text-align: center;
  padding: 15px;
  flex: 1;
}

.login-btn-glass:not(:last-child) {
  margin-right: 15px;
}

.login-btn-glass:hover,
.login-btn-glass:active,
.login-btn-glass:focus {
  color: #203179;
  text-decoration: none;
  background: #D2DAE8;
}

.lang-ru .login-holder .login-btn-glass {
  font-size: 13px;
}

.under-cons-button-back > a {
  width: 100%;
  float: none;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.body-login {
  background-image: url("../svg/kaz-map-dotted.svg"), linear-gradient(to bottom, #067CBE 8%, #3FDDE7 60%, #3fdde785 75%, white);
  background-repeat: no-repeat;
  background-size: 90%, 100%;
  background-position: 120%, center;
  min-height: 100vh;
  background-attachment: fixed;
}

/************ END OF LOGIN, SELF-REGISTER PAGES ************/


/* CONTACT US PAGE */
#map-single {
  height: 100vh;
  width: 100%;
  position: relative;
}

.contact-info-holder {
  width: 400px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 23%;
  left: 60px;
}

.contact-info-holder p {
  font-size: 14px;
}

.contact-info-holder h3 {
  color: #028cbb;
  font-weight: 700;
}

.contact-info-holder h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 959px) {

  .contact-info-holder {
    width: 400px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 22%;
    left: 60px;
  }

  .map-page {
    min-height: 900px;
  }
}
/*********** END OF CONTACT US *****************/


/**
 *  HACK classes
      - temporary, shame code
 *
 *  Namespaced with an underscore `_` as per this article:
 *  (https://csswizardry.com/2015/03/more-transparent-ui-code-with-namespaces/)
 */

._temp-button-fix.ui-button-icon-only {
  width: 100%;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin: 0;
  padding: 0;
  outline: 0;
}

._temp-button-fix.ui-button-icon-only .ui-icon {
  color: #b71c1c;
  font-size: 16px;
  position: relative;
  left: initial;
}

._temp-button-fix.ui-button-icon-only .ui-icon:hover {
 color: #df2d2d;
}

._temp-button-fix.ui-button-icon-only .ui-button-text {
  display: none;
}

._temp-button-fix2.ui-button-icon-only {
  width: 100%;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin: 0;
  padding: 0;
  outline: 0;
}

._temp-button-fix2.ui-button-icon-only .ui-icon {
  color: #4795b5;
  font-size: 16px;
  position: relative;
  left: initial;
}

._temp-button-fix2.ui-button-icon-only .ui-icon:hover {
  color: #00479a;
}

._temp-button-fix2.ui-button-icon-only .ui-button-text {
  display: none;
}

.ui-autocomplete-token {
  background: #f3f3f3 !important;
}

.ui-autocomplete-token-label {
  display: inline-block;
  padding: 0 1.1em 0 .5em;
  text-align: center !important;
}

.ui-autocomplete-token-icon.ui-icon.ui-icon-close {
  position: relative;
  top: 2px;
  width: 20px;
  height: 20px;
  text-align: center;
  background: #203179;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  float: right;
}

.ui-autocomplete-token-icon.ui-icon.ui-icon-close:after {
  position: absolute;
  left: 5px;
  top: 2px;
  content: 'x';
  text-align: center;
  color: #fff;
  width: 10px;
  height: 10px;
  font-size: 11px;
}

.ui-datatable-scrollable-header-box table,
.ui-datatable-scrollable-footer-box table,
.ui-datatable-scrollable-body table {
  table-layout: auto;
}

.ui-datatable-scrollable-header {
  color: white;
}

.ui-datatable-scrollable-header label {
  margin: 0;
  font-weight: normal;
}

/* ktrmApp2*/
legend {
  display: flex;
  align-items: center;
}
