/*
    Created on : October 20, 2023, 10:11:11
    Author     : bob
*/

/* Font */

/* https://fonts.google.com/specimen/Open+Sans */
/* font-family: "Open Sans", sans-serif; */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

/* https://fonts.google.com/specimen/Montserrat */
/* font-family: "Montserrat", sans-serif; */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* General */
body {
  font-family: "Montserrat", sans-serif !important;
  font-size: 0.875rem;
  font-weight: 500;
}

/* HTML */
html {
  min-height: 100%;
  position: relative;
  scroll-padding-top: calc(5rem + 3rem);
  scroll-behavior: smooth;
}

/* Focus disable dotted box on focus */
a:focus,
button:focus,
.btn:focus,
.form-control:focus,
.form-check-input:focus,
.form-select:focus,
.choices__inner:focus,
.is-focused .choices__inner,
.is-open .choices__inner,
.choices__input,
.choices__input:focus {
  outline: none !important;
  box-shadow: none !important;
}

.form-check-input:active {
  filter: brightness(100%);
}

.btn,
.btn:hover,
.btn:focus {
  border: 0 none;
}

.btn {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

/* Links */

.btn {
  text-decoration: none;
  text-underline-offset: 0.188rem;
  font-weight: 500;
}

a {
  text-decoration: underline;
  text-decoration-color: currentcolor;
  text-underline-offset: 0.188rem;
  font-weight: 700;
}

a:hover {
  text-decoration: none;
}

a.disabled,
a:disabled,
.btn.disabled,
.btn:disabled {
  pointer-events: unset;
  cursor: not-allowed;
}

a.disabled:hover,
a:disabled:hover,
.btn.disabled:hover,
.btn:disabled:hover {
  opacity: 0.65;
}

a.item-link {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

/* Material icons */
.material-symbols-outlined {
  font-variation-settings: "opsz" 20, "wght" 300, "FILL" 0, "GRAD" 0;
}

/* Image */
img {
  max-width: 100%;
  height: auto;
}

svg {
  flex-shrink: 0;
}

/* Scroll line */
.scroll-line {
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  position: fixed;
  z-index: 1040;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/* Pulse effect */
.pulse-effect {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.btn-square.pulse-effect {
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  border-radius: 0.375rem;
}

/* Badges */
.badge.badge-notification {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 100%;
  width: 1.125rem;
  height: 1.125rem;
  padding: 0;
  font-size: 0.75rem;
  line-height: unset;
  z-index: 1;
  -webkit-transform: translate(-75%, -25%);
  -moz-transform: translate(-75%, -25%);
  -ms-transform: translate(-75%, -25%);
  -o-transform: translate(-75%, -25%);
  transform: translate(-75%, -25%);
}

/* Popover */
.popover.custom-popover {
  z-index: 1011;
}

.popover.custom-popover.fade {
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.popover.popover-xs {
  min-width: 0;
}

.popover {
  min-width: 17.25rem;
  border: 0 none;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  -webkit-box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn-link {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0;
}

.btn-square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.125rem;
  padding: 0 2.5rem;
  font-weight: 600;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn-square.outline {
  border-width: 1px;
  border-style: solid;
}

/* Form */
/* Remove Arrows/Spinners */
/* 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;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
  background-image: none !important;
}

.is-invalid .invalid-feedback {
  display: block;
}

.form-title h2 {
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  position: relative;
  margin-bottom: 1.875rem;
}

.form-group label {
  font-weight: 600;
  padding-left: 0.75em;
  margin-bottom: 0.25rem;
}

.form-group label.check-label {
  display: block;
  width: 100%;
  padding-left: 0;
  margin-bottom: 0.5rem;
}

/* Post Office */
.post-office-group {
  margin-top: 0.5rem;
}

.post-office-item {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  -webkit-border-radius: 0.625rem;
  -moz-border-radius: 0.625rem;
  border-radius: 0.625rem;
}

.post-office-item .media {
  align-items: flex-start;
}

.post-office-item .media-image {
  width: 3.75rem;
  height: 3.75rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.post-office-item .media-image img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.post-office-item .media-body p {
  margin-bottom: 0;
}

.post-office-item .media-body p a {
  font-size: 0.75rem;
}

/* Form Info Button */
.form-group .form-field.with-info {
  position: relative;
  padding-right: 3.125rem;
}

.form-group .form-info {
  position: absolute;
  right: 0;
  top: 0;
}

.form-group .form-info .btn-info {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 3.125rem;
  height: 3.125rem;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.form-group .form-info .btn-info:hover {
  opacity: 1;
}

.form-group .form-info .btn-info .icon-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.form-group .form-info .btn-info svg.help {
  width: 1.75rem;
  height: 1.75rem;
}

.form-group .form-info .btn-info .material-icon {
  font-size: 1.25rem;
}

.form-control {
  height: 3.125rem;
  font-size: 0.875rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
}

.form-control:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}

.form-control {
  height: 3.125rem;
  font-size: 0.875rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
}

.form-control.input-with-icon {
  padding: 0 0.75rem 0 3rem;
  border: 0 none;
}

.invalid-feedback {
  padding-left: 0.75rem;
}

/* Select */
.form-select {
  height: 3.125rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
}

/* Form Check */
.form-check {
  margin-bottom: 0.5rem;
}

.form-check .form-check-input {
  flex-shrink: 0;
  width: 1.5em;
  height: 1.5em;
  margin-top: 0;
  margin-right: 0;
  cursor: pointer;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  border-radius: 0.25rem;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.form-check .form-check-label {
  cursor: pointer;
  padding-left: 0.625rem;
}

textarea.form-control.height-10 {
  min-height: calc(10em + (0.75rem + 2px));
}

/* Media */
.media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.media .media-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.media .media-body {
  -ms-flex: 1;
  flex: 1;
}

/* Media Info */
.media-info .media {
  align-items: flex-start;
}

.media-info .media-image {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.media-info .media-image svg {
  width: 1rem;
  height: 1rem;
}

.media-info .media-body {
  margin-top: 0.125rem;
  font-weight: 600;
}

/* Modal */
.custom-modal .modal-content {
  border: 0 none;
  -webkit-box-shadow: 0px 0px 2.5rem 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 2.5rem 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 2.5rem 0px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 0.625rem;
  -moz-border-radius: 0.625rem;
  border-radius: 0.625rem;
}

.custom-modal .modal-header {
  position: relative;
  justify-content: flex-start;
  flex-wrap: wrap;
  border-bottom: 0 none;
  padding: 1.25rem 3.75rem 1.25rem 1.25rem;
}

.custom-modal .modal-header .btn-close {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  width: 2.25rem;
  height: 2.25rem;
  background-image: none;
  opacity: 1;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.custom-modal .modal-header .btn-close svg {
  width: 0.75rem;
  height: auto;
}

.custom-modal .modal-header .btn-close:hover {
  opacity: 0.8;
}

.custom-modal .modal-header .modal-title {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 500;
  width: 100%;
}

.custom-modal .modal-header .modal-title .icon-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  margin-right: 0.625rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.custom-modal .modal-header .modal-title .icon-holder .material-icon {
  font-size: 2rem;
}

.custom-modal .modal-body {
  padding: 1.25rem;
}

.custom-modal .modal-body time {
  display: inline-block;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0.5rem 0 0.5rem 0;
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  border-radius: 0.375rem;
}

.custom-modal .modal-body .title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1.25rem 0;
}

.custom-modal .modal-body ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.custom-modal .modal-body .image-holder {
  position: relative;
  display: block;
  margin: 3rem 0;
  width: 100%;
  -webkit-border-radius: 0.625rem;
  -moz-border-radius: 0.625rem;
  border-radius: 0.625rem;
  overflow: hidden;
  z-index: 1;
}

.custom-modal .modal-body .image-holder::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.custom-modal .modal-body .image-holder .item-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.custom-modal .modal-body .video-holder {
  display: block;
  width: 100%;
  margin: 3rem 0 0 0;
  overflow: hidden;
  -webkit-border-radius: 0.625rem;
  -moz-border-radius: 0.625rem;
  border-radius: 0.625rem;
}

.custom-modal .modal-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-top: 0 none;
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  z-index: 1;
}

.custom-modal .modal-footer .btn {
  padding: 0 3rem;
  margin: 0;
}

.custom-modal .modal-footer .btn:not(:last-child) {
  margin-right: 1rem;
}

/* Choices */
.choices {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.choices__inner {
  padding: 0.375rem 0.75rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  min-height: 3.125rem;
}

.is-open .choices__inner {
  border-radius: 0.5rem 0.5rem 0 0;
}

.choices__list--dropdown,
.choices__list[aria-expanded] {
  border-radius: 0 0 0.5rem 0.5rem;
  z-index: 2;
}

.choices[data-type*="select-multiple"]::after {
  content: "";
  border: 0 none;
  position: absolute;
  right: 11.5px;
  top: 50%;
  pointer-events: none;
}

.choices[data-type*="select-one"]::after,
.choices[data-type*="select-multiple"]::after {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 0 none;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 12px 12px;
  width: 0.75rem;
  height: 0.75rem;
  margin: 0;
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  -webkit-transform: translateY(-50%) rotate(0deg);
  -moz-transform: translateY(-50%) rotate(0deg);
  -ms-transform: translateY(-50%) rotate(0deg);
  -o-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
}

.choices[data-type*="select-one"].is-open::after,
.choices[data-type*="select-multiple"].is-open::after {
  margin: 0;
  border: 0 none;
  -webkit-transform: translateY(-50%) rotate(18deg);
  -moz-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  -o-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.choices[data-type*="select-one"]
  .choices__list--dropdown
  .choices__item--selectable,
.choices[data-type*="select-one"]
  .choices__list[aria-expanded]
  .choices__item--selectable {
  padding-right: 0.625rem;
}

.is-flipped.is-open .choices__inner {
  border-radius: 0 0 0.5rem 0.5rem;
}

.is-flipped .choices__list--dropdown,
.is-flipped .choices__list[aria-expanded] {
  border-radius: 0.5rem 0.5rem 0 0;
}

.choices__input,
.choices[data-type*="select-one"] .choices__input {
  background-color: transparent;
  font-size: 0.875rem;
  height: 1.875rem;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

.choices[data-type*="select-one"] .choices__input {
  padding: 0.375rem 0.75rem;
  min-height: 3rem;
}

.choices__list--multiple .choices__item {
  display: inline-flex;
  align-items: center;
  border: 0 none;
  margin: 0.313rem 0.625rem 0.313rem 0;
  height: 1.875rem;
  font-size: 0.875rem;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  border-radius: 0.25rem;
}

.choices[data-type*="select-one"] .choices__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-right: 1.875rem;
  padding-bottom: 0.375rem;
}

.choices__list--multiple .choices__item.is-highlighted {
  border: 0 none;
}

.choices__list--multiple .choices__item[data-deletable],
.choices[data-type*="select-one"] .choices__list--single {
  padding-right: 0.625rem;
}

.choices[data-type*="select-one"] .choices__list--single {
  padding: 0;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  border-radius: 0.25rem;
}

.choices[data-type*="select-one"] .choices__list--single .choices__item {
  position: relative;
  display: block;
  align-items: center;
  border: 0 none;
  margin: 0;
  height: 1.875rem;
  padding: 0.25rem 0;
  font-size: 0.875rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  border-radius: 0.25rem;
}

.choices[data-type*="select-one"] .choices__button,
.choices[data-type*="select-multiple"] .choices__button {
  background-size: 1rem;
  width: 1rem;
  opacity: 1;
  border-left: 0 none;
  margin-right: 0;
  line-height: 1.5;
}

.choices[data-type*="select-one"] .choices__button {
  right: 0.625rem;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted::after,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted::after {
  opacity: 1;
}

.choices__list--dropdown .choices__item,
.choices__list[aria-expanded] .choices__item {
  font-size: 0.875rem;
}

.choices__list--dropdown,
.choices__list[aria-expanded] {
  word-break: break-word;
}

.choices__placeholder,
.choices__item--disabled,
.choices__item[data-id*="1"] {
  opacity: 0.7;
}

.choices__heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0;
  border: 0 none;
}

/* Upload documents */
.upload-documents {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1.875rem;
}

.upload-documents .btn {
  display: inline-flex;
  align-items: center;
  border: 0 none;
  text-decoration: none;
  text-align: left;
  word-break: break-word;
  margin: 0.313rem 0.625rem 0.313rem 0;
  padding: 0.25rem 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  border-radius: 0.25rem;
}

.upload-documents .btn svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.313rem;
}

/* Dropzone */
.dropArea {
  position: relative;
}

.dropArea::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.dropzone-holder {
  -webkit-border-radius: 0.625rem;
  -moz-border-radius: 0.625rem;
  border-radius: 0.625rem;
  padding: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.dropzone-holder:hover {
  cursor: pointer;
}

.dropzone-holder .dropzone-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1.875rem;
}

.form-group .dropzone-holder .dropzone-text label {
  display: inline-flex;
  justify-content: center;
  width: auto;
  height: 2.5rem;
  padding-left: 2.5rem;
  font-size: 0.875rem;
}

.dropzone-holder .dropzone-text h2 {
  font-size: 1rem;
  font-weight: 600;
  display: block;
  width: 100%;
  text-align: center;
  margin: 0;
}

.dropzone-holder .dropzone-text .btn {
  margin: 1.625rem 0;
}

.dropzone-holder .dropzone-text p {
  display: block;
  width: 100%;
  text-align: center;
}

.dropzone-holder .dropzone-text p:last-child {
  margin-bottom: 0;
}

/* Toast */
.toast-container {
  position: fixed;
  padding: 0 0.75rem;
  top: 12rem;
  left: 50%;
  z-index: 1070;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.toast:not(.showing):not(.show) {
  opacity: 0;
  visibility: hidden;
}

.toast {
  position: relative;
  width: 34.5rem;
  -webkit-border-radius: 0.625rem;
  -moz-border-radius: 0.625rem;
  border-radius: 0.625rem;
  padding: 0.625rem 5.625rem 0.625rem 1.375rem;
  -webkit-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
  opacity: 1;
  visibility: visible;
}

.toast .toast-body {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-basis: 100%;
  padding: 0.75rem 0;
}

.toast .toast-content {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  padding-left: 3.438rem;
}

.toast .toast-border {
  width: 0.375rem;
  min-width: 0.375rem;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  border-radius: 0.25rem;
}

.toast .toast-icon {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.toast .toast-icon svg {
  width: auto;
  height: 1.25rem;
}

.toast h3 {
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
}

.toast p {
  width: 100%;
  margin-bottom: 0;
}

.toast a {
  font-weight: 600;
}

.toast ul {
  padding-left: 0;
  margin-bottom: 0;
}

.toast ul li {
  list-style: none;
}

.toast .btn-close {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  width: 2.25rem;
  height: 2.25rem;
  position: absolute;
  top: 50%;
  right: 1.375rem;
  text-transform: uppercase;
  background-image: none;
  opacity: 1;
  z-index: 2;
  box-sizing: border-box;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  border-radius: 0.25rem;
  border: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.toast .btn-close svg {
  width: 0.75rem;
  height: auto;
}

/* Dropdown */
.dropdown-toggle-no-caret:after {
  display: none;
}

.dropdown-menu.dropdown-sm {
  min-width: 9rem;
  max-width: 9rem;
}

.dropdown-menu.dropdown-md {
  min-width: 12.5rem;
  max-width: 12.5rem;
}

.dropdown-menu.dropdown-lg {
  min-width: 17.5rem;
  max-width: 17.5rem;
}

.dropdown-menu.dropdown-xl {
  min-width: 20rem;
  max-width: 20rem;
}

.dropdown-custom.dropdown-menu {
  font-size: 0.875rem;
  border: 0 none;
  padding: 1rem;
  -webkit-border-top-left-radius: 0.625rem;
  -moz-border-radius-topleft: 0.625rem;
  border-top-left-radius: 0.625rem;
  -webkit-border-top-right-radius: 0.625rem;
  -moz-border-radius-topright: 0.625rem;
  border-top-right-radius: 0.625rem;
  -webkit-border-bottom-left-radius: 0.625rem;
  -moz-border-radius-bottomleft: 0.625rem;
  border-bottom-left-radius: 0.625rem;
  -webkit-border-bottom-right-radius: 0.625rem;
  -moz-border-radius-bottomright: 0.625rem;
  border-bottom-right-radius: 0.625rem;
  -webkit-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
}

.dropdown-custom .dropdown-content {
  padding: 0;
}

.dropdown-custom .dropdown-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  border-radius: 0.375rem;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.dropdown-custom .dropdown-item:not(:last-of-type) {
  margin-bottom: 0.313rem;
}

.dropdown-item {
  padding: 0.5rem 1rem;
  white-space: normal;
}

/* Dropdown Multilevel Menu */
.dropdown-menu.multilevel-menu li {
  position: relative;
}

.dropdown-menu.multilevel-menu .submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: -1rem;
}

.dropdown-menu.multilevel-menu .submenu.left {
  right: 100%;
  left: auto;
}

.dropdown-menu.multilevel-menu li.dropdown > a {
  padding-right: 1.875rem;
}

.dropdown-menu.multilevel-menu li.dropdown > a::after {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  line-height: 1;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.dropdown-menu.multilevel-menu li.dropdown:hover > .submenu {
  display: block;
}

/* Opacity hover 0.8 */
.btn:hover,
.search-col .media:hover .media-image img,
.btn-square:hover {
  opacity: 0.8;
}

/* Header */
.header-container {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  display: block;
  z-index: 1020;
}

.header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 5rem;
  padding: 0 1.5rem;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  -webkit-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
}

/* Top header */
.top-header-container {
  position: relative;
  display: block;
  z-index: 1021;
}

.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  padding: 0 1.5rem;
  z-index: 1021;
}

.top-header .col-top-logo .media-image {
  width: 3.5rem;
  height: 3.5rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin-right: 0.25rem;
}

.top-header .col-top-logo .media-image img {
  height: 3.5rem;
}

.top-header .col-top-logo .media-body {
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 600;
}

.top-header .col-top-logo .media-body span {
  width: 100%;
  display: block;
  text-transform: none;
  line-height: 1;
}

.top-header .col-header-options {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 0 0%;
}

.top-header .col-header-options .btn-group .dropdown-toggle {
  position: relative;
  height: 2.5rem;
  font-size: 0.875rem;
  padding: 0 2.5rem 0 1.25rem;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.top-header .col-header-options .btn-group .dropdown-menu {
  margin-top: 0.675rem !important;
}

.top-header .col-header-options .btn-group .btn-search {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  font-size: 0.875rem;
  padding: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.top-header .col-header-options .btn-group .dropdown-toggle > svg {
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.875rem;
  height: 0.875rem;
  -webkit-transform: translateY(-50%) rotate(0deg);
  -moz-transform: translateY(-50%) rotate(0deg);
  -ms-transform: translateY(-50%) rotate(0deg);
  -o-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.top-header .col-header-options .btn-group .dropdown-toggle.show > svg {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -moz-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  -o-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.top-header .col-header-options .btn-group a.top-header-link {
  display: flex;
  align-items: center;
  height: 2.5rem;
  width: 2.5rem;
  font-size: 0.875rem;
  padding: 0;
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  border-radius: 0.375rem;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.top-header .col-header-options .btn-group:not(:last-of-type) {
  margin-right: 1rem;
}

.top-header .col-header-options .btn-group .btn-language .media-image {
  margin-right: 0.625rem;
}

.top-header .col-header-options .btn-group .top-header-link .media-image,
.top-header .col-header-options .btn-group .btn-search .media-image {
  margin-right: 0;
}

.top-header .col-header-options .btn-group .popover-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
}

.top-header-popover.popover.custom-popover {
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.313rem !important;
  z-index: 1021;
}

.top-header .col-header-options .dropdown-language .dropdown-item .media-image {
  margin-right: 0.625rem;
}

.top-header .col-header-options .dropdown-language .dropdown-item {
  position: relative;
  padding-right: 2.5rem;
}

.top-header .col-header-options .dropdown-language .btn .indicator {
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 1.25rem;
  height: 1.25rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.top-header .col-header-options .dropdown-language .btn .indicator svg {
  width: 0.75rem;
  height: 0.75rem;
}

.top-header .col-header-options .dropdown-language .btn.selected:hover {
  opacity: 1;
}

.top-header .col-header-options .dropdown-language .btn.selected .indicator {
  display: flex;
}

.top-header .col-header-options .dropdown-language .dropdown-item .media-image,
.top-header .col-header-options .btn-group .media-image svg {
  width: 1.375rem;
  height: 1.375rem;
}

.top-header .col-header-options .btn-group .media-image span {
  font-size: 1.625rem;
}

.top-header .col-header-options .btn-language .media-image,
.top-header .col-header-options .btn-language .media-image .flag-icon {
  height: 1.375rem;
  width: 1.375rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.top-header .col-header-options .dropdown-language .dropdown-item .flag-icon {
  width: 1.375rem;
  height: 1.375rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.top-header .col-header-options .btn-group .btn-search:hover,
.top-header .col-header-options .btn-group .top-header-link:hover {
  opacity: 1;
}

.top-header .col-header-options .btn-group a.top-header-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  padding: 0 2rem;
  font-size: 0.875rem;
}

/* Top Header Mobile */
.top-header-mobile-container {
  position: relative;
  display: block;
  z-index: 1021;
}

.top-header-mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  padding: 0 0.75rem;
  z-index: 1021;
}

.top-header-mobile .slogan-holder {
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 500;
}

.top-header-mobile .slogan-holder span {
  width: 100%;
  display: block;
  text-transform: none;
  line-height: 1;
}

.top-header-mobile .col-header-options {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 0 0%;
}

.top-header-mobile .col-header-options .btn-group .top-header-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  padding: 0 2rem;
  font-size: 0.875rem;
}

/* Header nav */
.header .col-header-center .header-center-holder {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header .col-header-center .header-center-holder nav {
  display: block;
  width: 100%;
}

.header .col-header-center .header-center-holder nav > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.header .col-header-center .header-center-holder nav > ul li {
  list-style: none;
}

.header
  .col-header-center
  .header-center-holder
  nav
  > ul
  li.dropdown
  .dropdown-menu
  li:not(:last-of-type) {
  margin-bottom: 0.313rem;
}

.header
  .col-header-center
  .header-center-holder
  nav
  > ul
  > li:not(:last-of-type) {
  margin-right: 1.25rem;
}

.header .col-header-center .header-center-holder nav > ul li.dropdown .btn-nav {
  padding: 0 1.25rem 0 0;
}

.header .col-header-center .header-center-holder nav > ul li .btn-nav {
  display: flex;
  align-items: center;
  height: 3.5rem;
  padding: 0 0.5rem 0 0;
  font-size: 1rem;
  font-weight: 600;
}

.header
  .col-header-center
  .header-center-holder
  nav
  > ul
  li
  .btn-nav
  .icon-holder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  margin-right: 0;
  height: auto;
  width: 2.5rem;
}

.header
  .col-header-center
  .header-center-holder
  nav
  > ul
  li
  .btn-nav
  .icon-holder
  svg {
  width: 1.375rem;
  height: 1.375rem;
  margin-right: 0;
}

.header
  .col-header-center
  .header-center-holder
  nav
  > ul
  li
  .btn-nav
  .icon-holder
  span {
  font-size: 1.625rem;
}

.header
  .col-header-center
  .header-center-holder
  nav
  > ul
  li
  .dropdown-toggle
  > svg {
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.875rem;
  height: 0.875rem;
  margin: 0;
  -webkit-transform: translateY(-50%) rotate(0deg);
  -moz-transform: translateY(-50%) rotate(0deg);
  -ms-transform: translateY(-50%) rotate(0deg);
  -o-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.header
  .col-header-center
  .header-center-holder
  nav
  > ul
  li
  .dropdown-toggle.show
  > svg {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -moz-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  -o-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

/* Header Search */
.top-header .col-header-options .btn-search svg:last-child,
.top-header .col-header-options .btn-search.collapsed svg:first-child {
  display: block;
}

.top-header .col-header-options .btn-search svg:first-child,
.top-header .col-header-options .btn-search.collapsed svg:last-child {
  display: none;
}

.top-header .col-header-options .btn-search svg:last-child {
  width: 1.625rem;
  height: 1.625rem;
}

.header .col-header-center .header-center-holder.search-open nav {
  visibility: hidden;
  opacity: 0;
}

.header .col-header-center .header-center-holder .header-search {
  position: absolute;
  width: 100%;
  z-index: 1;
  transition: none;
}

.header .col-header-center .header-center-holder .header-search.collapsing,
.header
  .col-header-center
  .header-center-holder
  .header-search.collapsing
  .form-control {
  display: none;
}

.header .col-header-center .header-center-holder .search-box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  max-width: 25rem;
  margin-right: 1.25rem;
}

.search-box svg.search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0.625rem;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
}

.header .col-header-center .header-center-holder .search-box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 60vw;
}

.header
  .col-header-center
  .header-center-holder
  .search-box
  .input-group
  .form-control {
  border-top-left-radius: 0.5rem !important;
  border-bottom-left-radius: 0.5rem !important;
  border-top-right-radius: 0.5rem !important;
  border-bottom-right-radius: 0.5rem !important;
}

.header
  .col-header-center
  .header-center-holder
  .search-box
  .input-group.focused:before {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  height: 100vh;
  z-index: 0;
  cursor: default;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.header
  .col-header-center
  .header-center-holder
  .search-box
  .input-group
  .form-control.input-with-icon {
  padding: 0 0.75rem 0 3rem;
}

.search-box svg.search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 1rem;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
}

/* Autocomplete */
.autocomplete {
  position: absolute;
  top: calc(100% - 0.5rem);
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 1.25rem 0 0.625rem 0;
  font-size: 0.875rem;
  z-index: 5;
  -webkit-border-bottom-right-radius: 0.625rem;
  -webkit-border-bottom-left-radius: 0.625rem;
  -moz-border-radius-bottomright: 0.625rem;
  -moz-border-radius-bottomleft: 0.625rem;
  border-bottom-right-radius: 0.625rem;
  border-bottom-left-radius: 0.625rem;
}

.search-results-holder {
  display: flex;
  align-items: flex-start;
  flex-basis: 100%;
  overflow: hidden;
}

.search-col {
  overflow: hidden;
}

.search-col:first-child {
  width: 15rem;
  padding-left: 0;
}

.search-col:last-child {
  flex: 1 0 0%;
}

.search-col .search-content {
  height: 50vh;
  padding: 0 1rem 1rem 1rem;
  overflow-x: hidden;
  overflow: -moz-scrollbars-none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior: contain;
}

.search-results {
  display: none;
}

.search-results.active {
  display: block;
}

.search-col > h3 {
  padding-left: 1rem;
  padding-bottom: 0.625rem;
  font-size: 1rem;
  font-weight: 600;
}

.search-col .media {
  position: relative;
  padding: 1rem 0;
}

.search-col .media.top-aligned {
  align-items: flex-start;
}

.search-col .media.top-aligned .media-body {
  margin-top: 0.25rem;
}

.search-col .media:first-child {
  padding: 0.5rem 0 1rem 0;
}

.search-col .media:last-child {
  padding: 1rem 0 0 0;
}

.search-col .media-image {
  position: relative;
  width: 6.5rem;
  margin-right: 1.25rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  z-index: 1;
}

.search-col .media-image::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.search-col .media-image .item-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.search-col .media-image::after {
  content: "";
  height: 100%;
  left: 0;
  mix-blend-mode: darken;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.search-col .media-image .top-sticker {
  top: 0.313rem;
  left: 0.313rem;
  height: 1.625rem;
  padding: 0 0.625rem;
  font-size: 0.75rem;
}

.search-col .media-image img {
  max-width: 6.5rem;
  height: auto;
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  border-radius: 0.375rem;
  -webkit-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

.search-col .media-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 1rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.search-col .media-icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

.search-col .media-body h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.search-col .media-body .result-date {
  font-size: 0.75rem;
}

.search-col .media-body .status {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.search-col .media-body .status .status-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 0.75rem;
}

.search-col .media-body .item-price {
  position: relative;
  display: block;
  font-size: 1rem;
  font-weight: 600;
}

.search-col .media-body .item-price span {
  display: block;
  width: 100%;
}

.search-col .media-body .item-price.discount.animation > div > div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 0;
  height: auto;
}

.search-col .media-body .item-price.discount.animation .animation-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.search-col .vertical-menu {
  padding: 0.5rem 0 0 0;
  margin: 0;
}

.search-col .vertical-menu li {
  list-style: none;
}

.search-col .vertical-menu li:not(:last-of-type) {
  margin-bottom: 0.313rem;
}

.search-col .vertical-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  border-radius: 0.375rem;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  text-underline-offset: 0.188rem;
  cursor: pointer;
}

.search-col .media {
  position: relative;
}

/* Offcanvas */
.offcanvas {
  border: 0 none !important;
  -webkit-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
}

.modal-backdrop,
.modal-backdrop.show,
.offcanvas-backdrop.show {
  opacity: unset;
}

.modal-backdrop,
.modal-backdrop.show,
.my-backdrop,
.offcanvas-backdrop,
.iti--fullscreen-popup.iti--container {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.offcanvas-header {
  position: relative;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 1rem 4.5rem 1rem 1.5rem;
  min-height: 5rem;
}

.offcanvas-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0;
  width: 100%;
}

.offcanvas .offcanvas-header .btn-close {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  width: 2.25rem;
  height: 2.25rem;
  background-image: none;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
}

.offcanvas .btn-close svg {
  width: 0.75rem;
  height: auto;
}

.offcanvas-body {
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
}

.offcanvas-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-top: 0 none;
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  z-index: 1;
}

.offcanvas-footer .btn:not(:last-child) {
  margin-right: 1rem;
}

/* Custom Accordion */
.custom-accordion .accordion-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: unset;
}

.custom-accordion .accordion-item {
  position: relative;
  border: 0 none;
  z-index: 4;
}

.custom-accordion .accordion-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
}

.custom-accordion .accordion-button {
  font-size: 1rem;
  font-weight: 500;
  padding-right: 1.75rem;
  box-shadow: none;
}

.custom-accordion .accordion-button:hover,
.custom-accordion .accordion-button:focus {
  z-index: unset;
}

.custom-accordion .accordion-button::after,
.custom-accordion .accordion-button:not(.collapsed)::after {
  background-image: none;
  display: none;
}

.custom-accordion .accordion-button svg {
  position: absolute;
  top: 50%;
  right: 0.375rem;
  width: 0.875rem;
  height: 0.875rem;
  -webkit-transform: translateY(-50%) rotate(180deg);
  -moz-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  -o-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.custom-accordion .accordion-button.collapsed svg {
  -webkit-transform: translateY(-50%) rotate(0deg);
  -moz-transform: translateY(-50%) rotate(0deg);
  -ms-transform: translateY(-50%) rotate(0deg);
  -o-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
}

.custom-accordion .accordion-body {
  padding: 0 0 1rem 0;
}

.custom-accordion .accordion-body a {
  text-decoration: underline;
}

.custom-accordion .accordion-body a:hover {
  text-decoration: none;
}

/* Splide */

/* Splide controls */
.splide__arrow {
  top: 50%;
  width: 3rem;
  height: 3rem;
  border: 0 none;
  opacity: 1;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.8 !important;
}

.splide__arrow,
.splide__arrow:focus {
  -webkit-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1) !important;
  -moz-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1) !important;
}

.splide__arrow svg {
  width: 1.5rem;
  height: 1.5rem;
}

.splide__arrow:disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

/* Splide pagination */
.splide__pagination li {
  display: inline-flex;
}

/* Carousel progress */
.carousel-progress {
  margin-top: 1.875rem;
}

.carousel-progress-bar {
  height: 2px;
  transition: width 1000ms ease;
  width: 0;
}

/* Splide Main */
.splide-main {
  margin-bottom: 6rem;
}

.splide-main .splide__arrow {
  visibility: hidden;
  opacity: 0;
}

.splide-main:hover .splide__arrow {
  visibility: visible;
  opacity: 1;
}

.splide-main .splide__arrow--prev {
  left: -5rem;
}

.splide-main .splide__arrow--next {
  right: -5rem;
}

.splide-main .slide-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 100%;
}

.splide-main .content-holder {
  padding-right: 2.25rem;
}

.splide-main .content-holder h2 {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.splide-main .content-holder p {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0;
}

.splide-main .content-holder .media-info {
  margin-top: 1rem;
  padding-left: 0.5rem;
}

.splide-main .content-holder .btn {
  margin-top: 2rem;
  font-size: 1rem;
  height: 3.5rem;
  font-weight: 600;
  width: 15rem;
}

.splide-main .image-holder {
  position: relative;
  width: 100%;
  margin: 3rem 0;
  -webkit-border-radius: 0.625rem;
  -moz-border-radius: 0.625rem;
  border-radius: 0.625rem;
  overflow: hidden;
  z-index: 1;
}

.splide-main .image-holder::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.splide-main .image-holder .item-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.splide__pagination {
  top: 100%;
  bottom: unset;
  margin-top: 1rem;
}

.splide__pagination__page {
  width: 0.625rem;
  height: 0.625rem;
  opacity: 1;
}

.splide__pagination__page.is-active {
  transform: scale(1);
}

.splide__video {
  z-index: 10;
}

.splide__video .splide__video__play {
  width: 5rem;
  height: 5rem;
  padding: 0;
  opacity: 1;
  display: none;
}

.splide__video .splide__video__play:hover {
  opacity: 0.8;
}

/* Page section */
.page-section {
  padding: 7rem 0 7rem 0;
}

/* Section title */
.section-title {
  position: relative;
  display: block;
  margin-bottom: 4rem;
}

.latest-news .section-title.animated-line,
.how-to-steps .section-title.animated-line {
  margin-bottom: 3.5rem;
}

.section-main-text {
  font-size: 1rem;
  margin-bottom: 3rem;
}

.section-main-text p:not(:last-child) {
  margin-bottom: 1rem;
}

.section-title.animated-line::after {
  content: "";
  position: absolute;
  bottom: calc(-1.5rem - 1.5px);
  left: 0;
  transform: scaleX(0);
  width: 15rem;
  height: 3px;
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  border-radius: 0.375rem;
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.section-title.animated-line.visible::after {
  transform: scaleX(1);
}

.section-title time {
  display: inline-block;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0.5rem 0 0.5rem 0;
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  border-radius: 0.375rem;
}

.section-title .title {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-title p {
  margin-bottom: 0;
}

.section-title p a {
  text-decoration: underline;
}

.section-title p a:hover {
  text-decoration: none;
}

/* Figure logo */
.section {
  position: relative;
}

.section > .container {
  position: relative;
  z-index: 2;
}

.figure-logo {
  position: absolute;
  z-index: 1;
}

.figure-logo svg {
  position: relative;
  width: auto;
  height: 20rem;
  z-index: 1;
}

.figure-logo.figure-top {
  top: 3rem;
  right: 1rem;
  opacity: 0.01;
}

.figure-logo.figure-bottom {
  bottom: 3rem;
  left: 1rem;
  opacity: 0.01;
}

.counter-section .figure-center {
  top: 50%;
  opacity: 0.01;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.counter-section .figure-center.left {
  left: 1rem;
}

.counter-section .figure-center.right {
  right: 1rem;
}

.benefits-section .figure-bottom {
  opacity: 0.15;
  bottom: 6rem;
  left: 5rem;
}

.faq-section .figure-bottom {
  opacity: 0.1;
  bottom: 6rem;
  left: 5rem;
}

.footer-general .figure-logo.figure-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.015;
}

/* How to steps */
.page-section.how-to-steps {
  padding: 7rem 0 7rem 0;
}

.how-to-col {
  margin-bottom: 3rem;
}

.how-to-col:nth-last-child(1) {
  margin-bottom: 0;
}

.how-to-item {
  height: 100%;
  padding: 2rem;
  -webkit-border-radius: 0.625rem;
  -moz-border-radius: 0.625rem;
  border-radius: 0.625rem;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.how-to-item .media {
  position: relative;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.how-to-item .media .media-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  margin-right: 0;
  margin-bottom: 1.25rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.how-to-item .media .media-image svg {
  width: 1.375rem;
  height: 1.375rem;
}

.how-to-item .media .media-image span {
  font-size: 2rem;
}

.how-to-item .media .media-body {
  flex: none;
  width: 100%;
}

.how-to-item .media .media-body h2 {
  font-size: 1.25rem;
  margin-bottom: 0;
  font-weight: 600;
}

.how-to-item a {
  text-decoration: underline;
}

.how-to-item a:hover {
  text-decoration: none;
}

.how-to-item ul {
  padding-left: 0.875rem;
}

.how-to-item ul li {
  margin-bottom: 0.5rem;
}

/* How To Page */
.how-to-page .title-item.sticky {
  top: 7rem;
  padding-top: 0;
}

.how-to-page .icon-item-col:nth-last-child(1) {
  margin-bottom: 0;
}

/* Application Page */
.application-page .title-item.sticky {
  top: 7rem;
  padding-top: 0;
}

.application-page .icon-item-col:nth-last-child(1) {
  margin-bottom: 0;
}

/* Inner Section*/
.inner-section .title-item.sticky {
  top: 7rem;
  padding-top: 0;
}

.inner-section.how-to-section {
  padding: 0 0 7rem 0;
}

.inner-section.how-to-section .icon-item-col:nth-last-child(1) {
  margin-bottom: 0;
}

.inner-section.application-section {
  padding: 7rem 0 7rem 0;
}

.inner-section.application-section .icon-item-col:nth-last-child(2) {
  margin-bottom: 3rem;
}

.inner-section.application-section .icon-item-col:nth-last-child(1) {
  margin-bottom: 0;
}

.inner-section.expenses-section {
  padding: 0 0 7rem 0;
}

.inner-section.expenses-section .icon-item-col:nth-last-child(1) {
  margin-bottom: 0;
}

.inner-section.citizen-benefits {
  padding: 7rem 0 7rem 0;
}

.inner-section.law-benefits-section .icon-item-col:nth-last-child(1) {
  margin-bottom: 0;
}

/* Expenses Page */
.expenses-page .title-item.sticky {
  top: 7rem;
  padding-top: 0;
}

.expenses-page .icon-item-col:nth-last-child(1) {
  margin-bottom: 0;
}

/* Law benefits Page */
.law-benefits-page .title-item.sticky {
  top: 7rem;
  padding-top: 0;
}

.law-benefits-page .icon-item-col:nth-last-child(1) {
  margin-bottom: 0;
}

/* Title item */
.title-item {
  padding-top: 2rem;
}

.title-item.sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 5rem;
  margin: 0;
}

.title-item .section-title.title-holder {
  margin-bottom: 3rem;
}

.title-item .title-holder h2 {
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 2.25rem;
  font-weight: 600;
  z-index: 2;
}

.title-item p:last-of-type {
  margin-bottom: 0;
}

.title-item .button-holder .btn {
  width: 15rem;
}

/* Info box */
.alert.info-box {
  padding: 2rem 4rem 2rem 2rem;
  margin-bottom: 3rem;
  min-height: unset;
}

.info-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-basis: 100%;
  width: 100%;
  padding: 2rem;
  -webkit-box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 0.625rem;
  -moz-border-radius: 0.625rem;
  border-radius: 0.625rem;
}

.info-box.top-aligned {
  align-items: flex-start;
}

.info-box .info-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 1.25rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.info-box.info .info-icon {
  color: #fff;
}

.info-box .info-icon svg {
  width: auto;
  height: 1.25rem;
  flex-shrink: 0;
}

.info-box .info-icon span {
  font-size: 1.25rem;
}

.info-box .info-content h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.info-box.top-aligned .info-content h2 {
  margin-top: 0.6rem;
}

.info-box .info-content p {
  margin-bottom: 0.5rem;
}

.info-box .info-content p:last-child {
  margin: 0;
}

.info-box .info-content p a {
  word-break: break-word;
}

.alert.info-box .btn-close {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  top: 50%;
  right: 1.375rem;
  text-transform: uppercase;
  background-image: none;
  opacity: 1;
  z-index: 2;
  box-sizing: border-box;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  border-radius: 0.25rem;
  border: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.alert.info-box.top-aligned .btn-close {
  top: 1.875rem;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}

.alert-dismissible .btn-close svg {
  width: 0.75rem;
  height: auto;
}

/* FAQ section */
.faq-section .custom-accordion.faq-accordion .accordion-item {
  -webkit-border-radius: 0.625rem;
  -moz-border-radius: 0.625rem;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-section .custom-accordion.faq-accordion .accordion-item:not(:last-child) {
  margin-bottom: 3rem;
}

.faq-section .custom-accordion.faq-accordion .accordion-button {
  padding: 2rem 3rem 2rem 2rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.faq-section .custom-accordion.faq-accordion .accordion-button svg {
  width: 1.25rem;
  height: 1.25rem;
  right: 1rem;
}

.faq-section .custom-accordion.faq-accordion .accordion-body {
  padding: 0 3rem 2rem 2rem;
}

.faq-section .custom-accordion.faq-accordion .accordion-body ul {
  padding-left: 0.875rem;
}

.faq-section .custom-accordion.faq-accordion .accordion-body ul li {
  margin-bottom: 0.5rem;
}

.faq-section .custom-accordion.faq-accordion .accordion-body p:last-child {
  margin-bottom: 0;
}

.faq-section .image-holder img {
  -webkit-border-radius: 0.625rem;
  -moz-border-radius: 0.625rem;
  border-radius: 0.625rem;
}

.faq-section .view-all-items {
  margin-top: 2rem;
}

.faq-section .view-all-items p {
  margin: 0;
}

.faq-section .title-item .view-all-items,
.faq-section .title-item .view-all-items .button-holder {
  justify-content: flex-start;
}

.faq-section .view-all-items .button-holder .btn {
  width: 15rem;
}

/* FAQ listing */
.faq-section.listing-faq-section {
  margin-bottom: 3rem;
}

.faq-section.listing-faq-section .faq-section-border {
  margin-bottom: 1rem;
  padding: 2rem 0;
}

.faq-section.listing-faq-section .faq-aside-col .faq-aside-holder {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  height: 100%;
  padding-right: 3rem;
}

.faq-section.listing-faq-section .faq-title {
  position: sticky;
  position: -webkit-sticky;
  top: 7rem;
  padding: 0;
  margin: 1rem 0 2.65rem 0;
}

.faq-section.listing-faq-section .faq-title .media .media-image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3.75rem;
  height: 3.75rem;
  margin-right: 1rem;
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  border-radius: 0.375rem;
}

.faq-section.listing-faq-section .faq-title .media .media-image span {
  font-size: 2rem;
}

.faq-section.listing-faq-section .faq-title .media .media-body h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0;
}

.faq-section.listing-faq-section .custom-accordion.faq-accordion {
  margin: 1rem 0;
}

.faq-section.listing-faq-section
  .custom-accordion.faq-accordion
  .accordion-item {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.faq-section.listing-faq-section
  .custom-accordion.faq-accordion
  .accordion-item:not(:last-child) {
  margin-bottom: 3rem;
}

/* View all items */
.view-all-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.view-all-items .button-holder {
  display: flex;
  justify-content: center;
  width: 100%;
}

.view-all-items .button-holder .btn {
  width: 15rem;
}

.view-all-items .counter-holder {
  margin-top: 2rem;
}

/* Latest news splide */
.latest-news {
  padding: 0 0 7rem 0;
}

.latest-news .splide__arrow {
  visibility: hidden;
  opacity: 0;
}

.latest-news:hover .splide__arrow {
  visibility: visible;
  opacity: 1;
}

.latest-news:hover .splide__arrow:disabled {
  visibility: visible;
  opacity: 0.3;
}

.latest-news .splide__arrow--prev {
  left: -5rem;
}

.latest-news .splide__arrow--next {
  right: -5rem;
}

.latest-news .splide__pagination {
  top: 100%;
  bottom: unset;
  margin-top: 1rem;
}

/* News */
.listing-news-section {
  padding-bottom: 7rem;
}

.listing-news-section .news-item {
  margin-bottom: 5rem;
}

.listing-news-section .view-all-items {
  margin-top: 2rem;
}

.news-item .image-holder {
  position: relative;
  width: 100%;
  -webkit-border-top-left-radius: 0.625rem;
  -webkit-border-top-right-radius: 0.625rem;
  -moz-border-radius-topleft: 0.625rem;
  -moz-border-radius-topright: 0.625rem;
  border-top-left-radius: 0.625rem;
  border-top-right-radius: 0.625rem;
  overflow: hidden;
  z-index: 1;
}

.news-item .image-holder::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.news-item .image-holder .item-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.news-item .item-content {
  position: relative;
  -webkit-border-top-left-radius: 0.375rem;
  -webkit-border-top-right-radius: 0.375rem;
  -moz-border-radius-topleft: 0.375rem;
  -moz-border-radius-topright: 0.375rem;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  padding: 0.875rem 1.25rem 0.875rem 1.25rem;
  margin: -2.185rem 1.25rem 0 1.25rem;
  z-index: 10;
}

.news-item .item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.875rem;
}

.news-item .item-header a,
.news-item .item-header .icon-holder {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.news-item .item-header a.btn-link {
  text-decoration: none;
  padding-left: 0;
}

.news-item .item-header a:not([href]) {
  cursor: default;
}

.news-item .item-header a svg,
.news-item .item-header .icon-holder svg {
  width: 1.375rem;
  height: 1.375rem;
  margin-right: 0.5rem;
}

.news-item .item-header a .material-icon,
.news-item .item-header .icon-holder .material-icon {
  font-size: 1.875rem;
  margin-right: 0.313rem;
}

.news-item .item-header p {
  margin-bottom: 0;
}

.news-item h3 {
  font-size: 1rem;
  margin-bottom: 0;
}

.news-item h3 a {
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

/* Parallax Section */
.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
}

.parallax-section.overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
}

.parallax-section > .container {
  position: relative;
  z-index: 3;
}

.parallax-section .parallax-holder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.parallax-section .parallax-content {
  max-width: 60rem;
  /* padding: 3rem;
    -webkit-backdrop-filter: blur(100px);
    backdrop-filter: blur(100px);
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem; */
}

.parallax-section .parallax-content h2 {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 3rem;
  text-align: center;
}

.parallax-section .parallax-content .main-text {
  margin-bottom: 3rem;
}

.parallax-section .parallax-content .main-text .media-info {
  margin-bottom: 1rem;
  text-align: center;
}

.parallax-section .parallax-content .main-text .media-info .media {
  display: inline-flex;
}

.parallax-section .parallax-content .main-text p {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 0;
}

.parallax-section .parallax-content .button-holder {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.parallax-section .parallax-content .button-holder .btn:not(:last-child) {
  margin-right: 1.25rem;
}

.parallax-section .parallax-content .button-holder .btn {
  padding: 0 1rem;
  text-align: left;
  justify-content: flex-start;
  width: 20rem;
  height: 4.5rem;
}

.parallax-section .parallax-content .button-holder .media {
  justify-content: flex-start;
}

.parallax-section .parallax-content .button-holder .media-image {
  width: 3.125rem;
  height: 3.125rem;
  border-width: 1px;
  border-style: solid;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.parallax-section .parallax-content .button-holder .media-image span {
  margin-right: 0;
  font-size: 2rem;
}

.parallax-section .parallax-content .button-holder .media-body {
  font-size: 0.875rem;
}

.parallax-section .parallax-content .button-holder .media-body small {
  display: block;
  width: 100%;
  font-size: 0.75rem;
}

.parallax-section .disclaimer-text {
  display: block;
  margin-top: 1.875rem;
}

.parallax-section .disclaimer-text p {
  width: 100%;
  text-align: center;
  margin-bottom: 0;
  font-weight: 600;
}

.parallax-section.section-counter .counter-item {
  width: 25%;
}

.parallax-section.section-counter .parallax-title {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 3rem;
}

.parallax-section.section-counter .parallax-title h2 {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 3rem;
  text-align: center;
}

.parallax-section.section-counter .parallax-title .btn {
  width: 15rem;
}

.parallax-section.section-counter .counter-holder {
  width: 100%;
}

/* Featured logos splide */
.page-section.featured-logos {
  padding: 3rem 0;
}

.featured-logos .splide__arrow {
  visibility: hidden;
  opacity: 0;
}

.featured-logos:hover .splide__arrow {
  visibility: hidden;
  opacity: 0;
}

.featured-logos .splide__arrow--prev {
  left: -5rem;
}

.featured-logos .splide__arrow--next {
  right: -5rem;
}

.featured-logos img {
  transform: scale(1, 1);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.featured-logos a:hover img {
  transform: scale(1.07, 1.07);
}

/* Counter section */
.counter-section {
  position: relative;
}

.counter-section .counter-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 1;
  margin-bottom: 2rem;
}

.counter-section .counter-title .icon-holder {
  display: flex;
  justify-content: center;
  flex-basis: 100%;
  margin-bottom: 1rem;
}

.counter-section .counter-title .icon-holder .item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  border-radius: 0.375rem;
}

.counter-section .counter-title .icon-holder .item-icon svg {
  width: 2rem;
}

.counter-section .counter-title .icon-holder .item-icon span {
  font-size: 2rem;
}

.counter-section .counter-title h2 {
  display: block;
  width: 100%;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1.25rem;
  text-align: center;
}

.counter-section .counter-title p {
  margin-bottom: 3rem;
  text-align: center;
}

.counter-section .counter-title .button-holder {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.counter-section .counter-title .button-holder .btn {
  width: 15rem;
}

/* Counter */
.counter-holder {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.counter-content {
  display: block;
  width: 100%;
}

.counter-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 15rem;
  padding: 1.5rem;
  -webkit-border-radius: 0.625rem;
  -moz-border-radius: 0.625rem;
  border-radius: 0.625rem;
}

.counter-item::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
}

.stat-figure {
  display: block;
  width: 100%;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0;
  text-align: center;
}

.stat-number {
  font-family: "Open Sans", sans-serif;
  display: block;
  width: 100%;
  text-align: center;
}

.stat-caption {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
}

/* Breadcrumb */
.breadcrumb {
  padding: 2.25rem 0 1rem 0;
  margin-bottom: 0;
}

.breadcrumb-item a {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.breadcrumb-item + .breadcrumb-item::before {
  position: relative;
  top: 2px;
  width: 0.875rem;
  height: auto;
  padding: 0;
  margin-right: 0.25rem;
}

/* News article */
.article-holder {
  margin: 0;
  -webkit-border-radius: 0.625rem;
  -moz-border-radius: 0.625rem;
  border-radius: 0.625rem;
}

.article-options-section {
  padding: 5rem 0 5rem 0;
}

.article-options-holder {
  padding: 0;
}

.article-options-section .options-title {
  display: block;
  width: 100%;
  font-weight: 600;
  margin-bottom: 1rem;
}

.article-options-section .tag-items-holder {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.article-options-section .tag-items-holder .tag-item {
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  border-radius: 0.375rem;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.article-options-section .social-share-holder {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  text-align: right;
}

.article-options-section .social-share-holder .social-links {
  display: flex;
  justify-content: flex-start;
  position: relative;
}

.article-options-section .social-share-holder .social-links ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
}

.article-options-section .social-share-holder .social-links ul li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  list-style: none;
}

.article-options-section
  .social-share-holder
  .social-links
  ul
  li:not(:last-child) {
  margin-right: 1rem;
}

.article-options-section .social-share-holder .social-links ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.article-options-section .social-share-holder .social-links ul li a:hover {
  text-decoration: none;
  transform: scale(1.07, 1.07);
}

.article-options-section .social-share-holder .social-links ul li svg {
  width: 1.375rem;
  height: 1.375rem;
}

.article-main-image {
  margin-bottom: 3rem;
}

.article-main-image .image-holder {
  position: relative;
  width: 100%;
  -webkit-border-radius: 0.625rem;
  -moz-border-radius: 0.625rem;
  border-radius: 0.625rem;
  overflow: hidden;
  z-index: 1;
}

.article-main-image .image-holder::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.article-main-image .image-holder .item-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.splide-article {
  margin-bottom: 5rem;
}

.splide-article .splide .image-holder {
  position: relative;
  width: 100%;
  -webkit-border-radius: 0.625rem;
  -moz-border-radius: 0.625rem;
  border-radius: 0.625rem;
  overflow: hidden;
  z-index: 1;
}

.splide-article .splide .image-holder::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.splide-article .splide .image-holder .item-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.splide-article .splide__track {
  -webkit-border-radius: 0.625rem;
  -moz-border-radius: 0.625rem;
  border-radius: 0.625rem;
}

.splide-article .splide__arrow {
  visibility: hidden;
  opacity: 0;
}

.splide-article:hover .splide__arrow {
  visibility: visible;
  opacity: 1;
}

.splide-article .splide__arrow--prev {
  left: 2rem;
}

.splide-article .splide__arrow--next {
  right: 2rem;
}

.inner-content-section .main-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1.875rem 0 1.25rem 0;
}

.inner-content-section .main-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.875rem 0 1.25rem 0;
}

.inner-content-section .main-content .image-holder {
  position: relative;
  display: block;
  margin: 3rem 0;
  width: 100%;
  -webkit-border-radius: 0.625rem;
  -moz-border-radius: 0.625rem;
  border-radius: 0.625rem;
  overflow: hidden;
  z-index: 1;
}

.inner-content-section .main-content .image-holder::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.inner-content-section .main-content .image-holder .item-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.inner-content-section .main-content ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.inner-content-section .main-content a {
  text-decoration: underline;
}

.inner-content-section .main-content a:hover {
  text-decoration: none;
}

.inner-content-section .news-video-holder {
  display: block;
  width: 100%;
  margin: 3rem 0 0 0;
  overflow: hidden;
  -webkit-border-radius: 0.625rem;
  -moz-border-radius: 0.625rem;
  border-radius: 0.625rem;
}

.inner-content-section .download-documents {
  display: block;
  margin-top: 3rem;
  padding-top: 3rem;
}

.inner-content-section .download-documents.download-page {
  padding-top: 0;
  margin-top: 0;
  border-top: 0 none;
}

.inner-content-section .download-documents h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.875rem;
}

.inner-content-section .download-documents .document-item-col {
  margin-bottom: 3rem;
}

.inner-content-section .download-documents .document-item {
  position: relative;
  padding: 2rem;
  height: 100%;
  -webkit-border-radius: 0.625rem;
  -moz-border-radius: 0.625rem;
  border-radius: 0.625rem;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.inner-content-section .download-documents .document-item .media {
  position: relative;
}

.inner-content-section .download-documents .document-item .media .media-image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3.75rem;
  height: 3.75rem;
  margin-right: 1rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.inner-content-section .download-documents .document-item .media {
  display: inline-flex;
  align-items: flex-start;
}

.inner-content-section
  .download-documents
  .document-item
  .media
  .media-image
  svg {
  width: 1.75rem;
  height: 1.75rem;
}

.inner-content-section
  .download-documents
  .document-item
  .media
  .media-image
  .material-icon {
  font-size: 2rem;
}

.inner-content-section
  .download-documents
  .document-item
  .media
  .media-body
  time {
  display: inline-block;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  border-radius: 0.375rem;
}

.inner-content-section
  .download-documents
  .document-item
  .media
  .media-body
  .title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.inner-content-section
  .download-documents
  .document-item
  .media
  .media-body
  .file-type {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 1rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  border-radius: 0.375rem;
}

.inner-content-section
  .download-documents
  .document-item
  .media
  .media-body
  .file-type
  .icon-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.313rem;
}

.inner-content-section
  .download-documents
  .document-item
  .media
  .media-body
  .file-type
  .icon-holder
  svg {
  width: 1.375rem;
  height: 1.375rem;
}

/* Article Icon item */
.inner-content-section .main-content .icon-item-box {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* Icon list style */
.icon-item-box {
  padding: 2rem;
  -webkit-border-radius: 0.625rem;
  -moz-border-radius: 0.625rem;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.icon-item-box:not(:last-child) {
  margin-bottom: 3rem;
}

.icon-list-style .media:not(:last-child) {
  margin-bottom: 1rem;
}

.icon-list-style .media .media-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.icon-list-style .media .media-image svg {
  width: 2rem;
  height: 2rem;
}

.icon-list-style .media .media-image span {
  font-size: 2rem;
}

.icon-list-style .media .media-body h2,
.icon-list-style .media .media-body h3 {
  font-size: 1.25rem;
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Icon Item Section */
.icon-item-col {
  margin-bottom: 3rem;
}

.icon-item-col.col-lg-12:nth-last-child(2) {
  margin-bottom: 3rem;
}

.icon-item-box {
  height: 100%;
}

.icon-item-box p:last-child {
  margin-bottom: 0;
}

.icon-item-box .media {
  position: relative;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.icon-item-box .media .media-body {
  flex: none;
  width: 100%;
}

.icon-item-box .media .media-image {
  margin-right: 0;
  margin-bottom: 1.25rem;
}

.icon-item-box ul {
  padding-left: 0.875rem;
}

.icon-item-box ul li {
  margin-bottom: 0.5rem;
}

.law-benefits .icon-item-col:nth-last-child(1) {
  margin-bottom: 0;
}

.application-section .icon-item-col:nth-last-child(1),
.application-section .icon-item-col:nth-last-child(2),
.citizen-benefits .icon-item-col:nth-last-child(1),
.citizen-benefits .icon-item-col:nth-last-child(2) {
  margin-bottom: 0;
}

/* Table responive */
.table-holder {
  padding: 2rem;
  -webkit-border-radius: 0.625rem;
  -moz-border-radius: 0.625rem;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
}

.inner-content-section .main-content .table-holder h3 {
  margin-top: 0;
}

.table-responsive.custom-table {
  display: block;
  margin: 0;
  overflow: -moz-scrollbars-none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.custom-table table {
  margin-bottom: 0;
}

.custom-table table thead th {
  font-size: 0.875rem;
  padding: 1.25rem 1rem;
  min-width: 10rem;
  font-weight: 600;
}

.custom-table .table caption {
  padding: 1rem;
}

.custom-table table tbody th,
.custom-table table tbody td {
  padding: 1.25rem 1rem;
  font-weight: 600;
  vertical-align: middle;
}

.custom-table table thead th.compensation {
  text-align: center;
  width: 11rem;
  max-width: 11rem;
  min-width: 11rem;
}

.news-content-section .table-responsive {
  margin: 3.5rem 0;
}

/* Article Image box */
.inner-content-section .image-holder img {
  margin-top: 0;
}

/* Documents page */
.listing-documents-section {
  padding-bottom: 7rem;
}

.inner-content-section .download-item:first-child {
  margin-top: 3.5rem;
}

.download-item:not(:last-child),
.listing-documents-section.report-section .download-item:last-child {
  margin-bottom: 3rem;
}

.download-item-holder {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 2rem 4rem 2rem 2rem;
  height: 100%;
  -webkit-border-radius: 0.625rem;
  -moz-border-radius: 0.625rem;
  border-radius: 0.625rem;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.download-item-holder > svg {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 1.25rem;
  height: 1.25rem;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

.download-item-holder:hover svg {
  right: 1rem;
  opacity: 1;
}

.download-item-holder .icon-holder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3.75rem;
  height: 3.75rem;
  margin-right: 1rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.download-item-holder .icon-holder svg {
  width: 1.75rem;
  height: 1.75rem;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.download-item-holder .icon-holder .material-icon {
  font-size: 2rem;
}

.download-item-holder .item-label {
  position: absolute;
  top: 0;
  left: 2rem;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  border-radius: 0.375rem;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.download-item-holder .content-holder time {
  display: inline-block;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  border-radius: 0.375rem;
}

.download-item-holder .content-holder .title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.5rem;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.listing-documents-section.report-section
  .download-item-holder
  .content-holder
  .title {
  font-size: 1rem;
  margin-bottom: 0;
}

.download-item-holder .content-holder p {
  margin-bottom: 0;
}

.download-item-holder .content-holder .file-type {
  display: inline-block;
  padding: 0.25rem 1rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  border-radius: 0.375rem;
}

.download-item-holder .content-holder .file-type .media-image {
  margin-right: 0.313rem;
}

.download-item-holder .content-holder .file-type .media-image svg {
  width: 1.375rem;
  height: 1.375rem;
}

/* White box holder */
.counter-section .counter-section-item {
  padding: 3rem;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  -webkit-border-radius: 0.625rem;
  -moz-border-radius: 0.625rem;
  border-radius: 0.625rem;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

/* Toolbar mobile top */
.toolbar-holder-top-mobile {
  width: 100%;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}

.toolbar-holder-top-mobile .btn-group {
  width: 100%;
}

.toolbar-holder-top-mobile .btn.btn-media {
  height: auto;
  width: 100%;
  padding: 0;
}

.toolbar-holder-top-mobile .btn.btn-media .media {
  padding: 1rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, 0.1);
}

.toolbar-holder-top-mobile .btn-media .media-image {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.625rem;
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  border-radius: 0.375rem;
}

.toolbar-holder-top-mobile .btn-media .media-image span {
  font-size: 1.625rem;
}

.toolbar-holder-top-mobile .btn-media .media-body {
  text-align: left;
  font-weight: 600;
  font-size: 0.875rem;
}

.toolbar-holder-top-mobile .btn-media .media > svg {
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.875rem;
  height: 0.875rem;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* Contact Center Section */
.contact-center-section {
  padding-bottom: 7rem;
}

.contact-center-section .faq-section {
  margin-bottom: 5rem;
}

.contact-center-section .page-text {
  margin-bottom: 3rem;
}

.contact-center-section .page-text p {
  margin-bottom: 0;
}

.contact-center-section .contact-item-col {
  margin-bottom: 3rem;
}

.contact-center-section .contact-item {
  position: relative;
  padding: 2rem 4rem 2rem 2rem;
  height: 100%;
  -webkit-border-radius: 0.625rem;
  -moz-border-radius: 0.625rem;
  border-radius: 0.625rem;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.contact-center-section .contact-item .media-image {
  width: 3.75rem;
  height: 3.75rem;
  justify-content: center;
  align-items: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.contact-center-section .contact-item .media-image .material-icon {
  font-size: 2rem;
}

.contact-center-section .contact-item .media-body .title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.contact-center-section .contact-item .media svg {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 1.25rem;
  height: 1.25rem;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

.contact-center-section .contact-item:hover .media svg {
  right: 1rem;
  opacity: 1;
}

.contact-center-section .contact-item.selected .media svg {
  width: 0.75rem;
  height: 0.75rem;
  opacity: 1;
  right: 1.75rem;
}

.contact-center-section .contact-item.selected:hover .media svg {
  right: 1.75rem;
}

/* Contact */
.contact-section {
  padding-bottom: 7rem;
}

.contact-section .toolbar-contact-holder {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.contact-section .aside-col-holder {
  display: flex;
  flex-direction: column;
  position: sticky;
  position: -webkit-sticky;
  top: 7rem;
  padding-top: 0;
  padding-bottom: 0;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  background-clip: padding-box;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.contact-section .aside-holder {
  padding: 0 1.5rem 0 0;
  padding-top: 0.5rem;
  overflow-y: auto;
  overflow: -moz-scrollbars-none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior: contain;
}

.contact-section .aside-holder .aside-title {
  font-size: 1.5rem;
  font-weight: 600;
  padding-bottom: 0.75rem;
}

.offcanvas-contact-mobile .nav-aside ul,
.contact-section .nav-aside ul {
  padding: 0;
  margin: 0;
}

.offcanvas-contact-mobile .nav-aside ul li,
.contact-section .nav-aside ul li {
  list-style: none;
}

.offcanvas-contact-mobile .nav-aside ul li a,
.contact-section .nav-aside ul li a {
  position: relative;
  display: inline-block;
  padding: 0.5rem 0;
  font-weight: 500;
  font-size: 0.938rem;
  text-decoration: none;
  text-underline-offset: 0.188rem;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.offcanvas-contact-mobile .nav-aside ul li.active a,
.contact-section .nav-aside ul li.active a {
  font-weight: 600;
}

.offcanvas-contact-mobile .nav-aside ul li a .badge.badge-notification,
.contact-section .nav-aside ul li a .badge.badge-notification {
  top: 50%;
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

.contact-section .global-form .button-holder {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 1rem;
}

/* Map */
.contact-section .col-contact-info {
  margin-bottom: 3rem;
}

.contact-section .contact-item-box {
  padding: 2rem;
  height: 100%;
  -webkit-border-radius: 0.625rem;
  -moz-border-radius: 0.625rem;
  border-radius: 0.625rem;
}

.contact-section .contact-item-box .media {
  position: relative;
  flex-wrap: wrap;
}

.contact-section .contact-item-box .media-image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3.75rem;
  height: 3.75rem;
  margin-right: 0;
  margin-bottom: 1.25rem;
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  border-radius: 0.375rem;
}

.contact-section .contact-item-box .media-image span {
  font-size: 2rem;
}

.contact-section .contact-item-box .media-body {
  flex: none;
  width: 100%;
}

.contact-section .contact-item-box .media-body h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-section .contact-item-box .media-body ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-section .contact-item-box .media-body ul li {
  margin-bottom: 0.25rem;
}

.contact-section .contact-item-box .media .view-all-phone-numbers a {
  text-decoration: underline;
}

.contact-section .contact-item-box .media .view-all-phone-numbers a:hover {
  text-decoration: none;
}

.contact-section .map {
  position: relative;
}

.contact-section .map .view-on-google {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  z-index: 11;
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  border-radius: 0.375rem;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.contact-section .map .view-on-google a {
  width: max-content;
}

.contact-section .map-holder {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-border-radius: 0.625rem;
  -moz-border-radius: 0.625rem;
  border-radius: 0.625rem;
}

.contact-section .map-holder::before {
  content: "";
  display: block;
  height: 25rem;
}

.contact-section .map-holder .map-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* Uslovi koriscenja */
.contact-section .service-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 2rem 0;
}

.contact-section .service-item .new-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 1rem;
  font-weight: 600;
  font-size: 0.75rem;
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  border-radius: 0.375rem;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.service-item .item-date time {
  display: inline-block;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  border-radius: 0.375rem;
}

.contact-section .service-item h2 {
  font-size: 1.25rem;
  font-weight: 600;
}

.contact-section .service-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1.875rem;
}

.contact-section .service-item ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.contact-section .service-item a {
  text-decoration: underline;
}

.contact-section .service-item a:hover {
  text-decoration: none;
}

/* Footer */
.footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

.footer-newsletter {
  padding-top: 5rem;
}

.newsletter-wrapper {
  display: block;
  width: 100%;
  padding-bottom: 5rem;
}

.footer-newsletter .newsletter-holder {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.footer-newsletter .newsletter-content {
  width: 30rem;
}

.footer-newsletter .newsletter-text {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
}

.footer-newsletter .newsletter-text h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-newsletter .newsletter-text p {
  margin-bottom: 0;
}

.footer-newsletter .input-group .form-control {
  padding-right: 8.5rem;
  border-top-left-radius: 0.5rem !important;
  border-bottom-left-radius: 0.5rem !important;
  border-top-right-radius: 0.5rem !important;
  border-bottom-right-radius: 0.5rem !important;
}

.footer-newsletter .input-group .btn {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  height: 2.25rem;
  font-size: 0.875rem;
  padding: 0 2rem;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  border-top-left-radius: 0.375rem !important;
  border-bottom-left-radius: 0.375rem !important;
  border-top-right-radius: 0.375rem !important;
  border-bottom-right-radius: 0.375rem !important;
  z-index: 10;
}

.footer-general {
  position: relative;
}

.footer-general > .container {
  position: relative;
  z-index: 1;
}

.footer .footer-wrapper {
  position: relative;
  padding: 5rem 0;
}

.footer .footer-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
}

.footer .footer-content h3 {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 600;
  min-height: 2rem;
  margin-bottom: 1rem;
}

.footer .footer-content h3 .icon-holder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: transparent;
  margin-right: 0;
  height: auto;
  width: 2rem;
}

.footer .footer-content h3 .icon-holder svg {
  width: 1.375rem;
  height: 1.375rem;
  margin-right: 0;
}

.footer .footer-content h3 .icon-holder span {
  font-size: 1.625rem;
}

.footer .footer-content .footer-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-basis: 100%;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
  overflow: hidden;
}

.footer .footer-content .footer-nav li {
  list-style: none;
  display: flex;
  justify-content: center;
  width: 100%;
}

.footer .footer-content .footer-nav a {
  font-weight: 500;
  padding: 0.5rem 0;
  font-weight: 400;
  margin: 0;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.footer .footer-content .footer-nav li:first-child a {
  padding-top: 0;
}

.footer .social-links {
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin-top: 2.5rem;
}

.footer .social-links ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
}

.footer .social-links ul li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  list-style: none;
}

.footer .social-links ul li:not(:last-child) {
  margin-right: 1rem;
}

.footer .social-links ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  border-radius: 0.375rem;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.footer .social-links ul li a:hover {
  text-decoration: none;
}

.footer .social-links ul li svg {
  width: 1.375rem;
  height: 1.375rem;
}

.footer-bottom-holder {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 3.125rem 0 0 0;
}

.footer .content-holder.content-center {
  display: flex;
  justify-content: center;
  width: 100%;
}

.footer .content-holder.content-center p {
  text-align: center;
}

.footer .content-holder.content-center p a {
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.footer .content-holder.content-left {
  display: flex;
  align-items: center;
}

.footer .content-holder.content-left ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer .content-holder.content-left ul li {
  list-style: none;
  font-size: 0.875rem;
}

.footer .content-holder.content-left ul li:not(:last-child) {
  margin-right: 1rem;
}

.footer .content-holder.content-left ul li a {
  font-weight: 400;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.footer .content-holder.content-right {
  display: flex;
  align-items: center;
}

.footer .content-holder.content-right ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer .content-holder.content-right ul li {
  list-style: none;
  font-size: 0.875rem;
  font-weight: 400;
}

.footer .content-holder.content-right ul li:not(:last-child) {
  margin-right: 1rem;
}

.footer .content-holder.content-right a {
  text-decoration: none;
  font-weight: 400;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.footer .content-holder.content-right p {
  font-weight: 400;
  margin-bottom: 0;
}

.footer .developed-by {
  font-size: 0.875rem;
  padding-bottom: 2.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.footer .developed-by p {
  display: flex;
  align-items: center;
  font-weight: 400;
  margin-bottom: 0;
}

.footer .developed-by p .btn-link {
  display: inline-block;
  margin-left: 0.313rem;
  font-weight: 600;
}

.footer .developed-by p a {
  text-decoration: none;
  font-weight: 600;
  margin-left: 0.313rem;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

/* GDPR */
.gdpr-box {
  font-size: 0.875rem;
  padding: 2rem;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 18rem;
  z-index: 1020;
  -webkit-border-radius: 0.625rem;
  -moz-border-radius: 0.625rem;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
}

.gdpr-box .btn {
  width: 100%;
  margin: 0 0 1rem 0;
  font-size: 0.875rem;
}

.gdpr-box .btn:last-child {
  margin: 0;
}

.gdpr-box .btn-link {
  font-weight: 600;
  text-decoration: underline;
}

.gdpr-box .btn-link:hover {
  text-decoration: none;
  opacity: 1;
}

/* Animated */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/******************************/
/* Default light color scheme */
/******************************/

/* Background colors */
/*********************/

/* background #ffffff */
html,
.page-wrapper,
.toast,
.toast .btn-close,
.header,
.header .col-header-center .header-center-holder .header-search,
.search-box .form-control,
.form-control:disabled,
.form-control:focus,
.form-check .form-check-input,
.form-check .form-check-input:checked,
.form-check .form-check-input:active,
.autocomplete,
.offcanvas,
.custom-accordion .accordion-item,
.accordion-button,
.custom-accordion .accordion-button:not(.collapsed),
.splide__pagination__page,
.news-item .item-content,
.icon-item-box,
.download-item-holder .content-holder .file-type,
.inner-content-section
  .download-documents
  .document-item
  .media
  .media-body
  .file-type,
.dropArea::before,
.choices__inner,
.is-focused .choices__inner,
.is-open .choices__inner,
.choices__list--dropdown,
.choices__list[aria-expanded],
.choices__list--single,
.form-group .form-info .btn-info,
.white-bg,
.btn.white-bg:hover,
.btn.white-bg:focus,
.btn.white-bg.disabled,
.btn.white-bg:disabled,
.btn.white-bg:active,
.btn.white-bg.active,
.btn.white-bg:first-child:active,
:not(.btn-check) + .btn.white-bg:active {
  background-color: #ffffff;
}

/* background transparent */
.btn-square.outline.blue {
  background-color: transparent;
}

/* background #E6F2FF */
.light-blue-bg,
.download-item .download-item-holder:hover,
.inner-content-section .download-documents .document-item:hover,
.tag-item:hover,
.upload-documents .btn:hover,
.contact-center-section .contact-item {
  background-color: #e6f2ff;
}

/* background #4264EC */
.counter-section .counter-title .icon-holder .item-icon,
.counter-item.light-blue-bg,
.contact-section .map .view-on-google,
.service-item .item-date time {
  background-color: #4264ec;
}

/* background 2d3989 */
.top-header-mobile-container,
.top-header,
.custom-modal .modal-header,
.custom-modal .modal-body time,
.blue-bg,
.btn.blue-bg:hover,
.btn.blue-bg:focus,
.btn.blue-bg.disabled,
.btn.blue-bg:disabled,
.btn.blue-bg:active,
.btn.blue-bg.active,
.btn.blue-bg:first-child:active,
:not(.btn-check) + .btn.blue-bg:active,
.custom-table table thead th,
.search-col .vertical-menu li a.active,
.search-col .vertical-menu li a.active:hover,
.search-col .vertical-menu li a.active:focus,
.search-col .vertical-menu-mobile li a.active,
.search-col .vertical-menu-mobile li a.active:hover,
.search-col .vertical-menu-mobile li a.active:focus,
.dropdown-item.active,
.dropdown-item.active:hover,
.dropdown-item.active:focus,
.dropdown-menu.multilevel-menu li.dropdown:hover > .dropdown-item.active,
.custom-accordion .accordion-body ul.mobile-menu li a.active,
.custom-accordion .accordion-body ul.mobile-menu li a.active:hover,
.toast.toast-info .toast-icon,
.carousel-progress-bar,
.splide__pagination__page.is-active,
.icon-list-style .media .media-image,
.offcanvas-header,
.search-col .media-icon,
.section-title.animated-line::after,
.download-item-holder .icon-holder,
.faq-section.listing-faq-section .faq-title .media .media-image,
.inner-content-section .download-documents .document-item .media .media-image,
.contact-section .contact-item-box .media-image,
.how-to-steps,
.counter-section,
.section-title time,
.download-item-holder .content-holder time,
.inner-content-section
  .download-documents
  .document-item
  .media
  .media-body
  time,
.article-options-section .social-share-holder .social-links ul li a,
.contact-center-section .contact-item .media-image,
.footer {
  background-color: #2d3989;
}

/* background #538ad6 */
.how-to-steps .section-title.animated-line::after,
.how-to-item .media .media-image,
.form-group .form-info .btn-info .icon-holder,
.chefchaouen-blue-bg,
.btn.chefchaouen-blue-bg,
.btn.chefchaouen-blue-bg:hover,
.btn.chefchaouen-blue-bg:focus,
.btn.chefchaouen-blue-bg.disabled,
.btn.chefchaouen-blue-bg:disabled,
.btn.chefchaouen-blue-bg:active,
.btn.chefchaouen-blue-bg.active,
.btn.chefchaouen-blue-bg:first-child:active,
:not(.btn-check) + .btn.chefchaouen-blue-bg:active {
  background-color: #538ad6;
}

/* background #f5f6f8 */
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-menu.multilevel-menu li.dropdown:hover > .dropdown-item,
.top-header .col-header-options .dropdown-language .btn.selected,
.search-col .vertical-menu li a:hover,
.search-col .vertical-menu-mobile li a:hover,
.custom-accordion .accordion-body ul.mobile-menu li a:hover,
.carousel-progress,
.counter-item.light-gray-bg,
.inner-content-section .main-content .icon-item-box,
.download-item .download-item-holder,
.tag-item,
.faq-section.listing-faq-section .custom-accordion .accordion-item,
.faq-section.listing-faq-section .accordion-button,
.faq-section.listing-faq-section
  .custom-accordion
  .accordion-button:not(.collapsed),
.inner-content-section .download-documents .document-item,
.choices__list--multiple .choices__item,
.choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted,
.choices__list--multiple .choices__item.is-highlighted,
.upload-documents .btn,
.iti__country.iti__highlight,
.contact-section .contact-item-box {
  background-color: #f5f6f8;
}

/* background E6F2FF */
table.table-light-blue {
  --bs-table-bg: #e6f2ff;
}

/* background #c7363d */
.red-bg,
.btn.red-bg:hover,
.btn.red-bg:focus,
.btn.red-bg.disabled,
.btn.red-bg:disabled,
.btn.red-bg:active,
.btn.red-bg.active,
.btn.red-bg:first-child:active,
:not(.btn-check) + .btn.red-bg:active,
.scroll-line,
.toast.toast-danger .toast-icon,
.splide__arrow,
.new-label,
.contact-center-section .contact-item.red .media-image {
  background-color: #c7363d;
}

/* background-color FFE1E6 */
.contact-center-section .contact-item.red {
  background-color: #ffe1e6;
}

/* background #fecb2e */
.toast.toast-warning .toast-icon {
  background-color: #fecb2e;
}

/* background #79c142 */
.toast.toast-success .toast-icon,
.contact-center-section .contact-item.selected .media-image {
  background-color: #79c142;
}

/* background-color E4F3D9 */
.contact-center-section .contact-item.selected {
  background-color: #e4f3d9;
}

/* background rgba(217, 0, 29, 0.07) */
.form-control.is-invalid,
.form-control:focus.is-invalid,
.was-validated .form-control:invalid,
.was-validated .form-control:focus:invalid,
.form-select.is-invalid {
  background-color: rgba(255, 68, 61, 0.07);
}

/* background rgba(230, 242, 255, .4) */
.header
  .col-header-center
  .header-center-holder
  .search-box
  .input-group.focused:before,
.parallax-section.overlay.light::after {
  background-color: rgba(230, 242, 255, 0.2);
}

/* background rgba(10, 15, 43, 1) */
.parallax-section.overlay.dark::after {
  background-color: rgba(10, 15, 43, 0.3);
}

/* background linear-gradients */
.splide-main,
.gdpr-box {
  background: rgb(230, 242, 255);
  background: linear-gradient(
    0deg,
    rgba(230, 242, 255, 1) 30%,
    rgba(255, 255, 255, 1) 70%
  );
}

/* background opacity */
.modal-backdrop,
.modal-backdrop.show,
.my-backdrop,
.offcanvas-backdrop,
.iti--fullscreen-popup.iti--container {
  background-color: rgba(255, 255, 255, 0.3);
}

.how-to-item,
.counter-section-item {
  background-color: rgba(255, 255, 255, 0.01);
}

.transparent-bg,
.btn.transparent-bg:hover,
.btn.transparent-bg:focus,
.btn.transparent-bg.disabled,
.btn.transparent-bg:disabled,
.btn.transparent-bg:active,
.btn.transparent-bg.active,
.btn.transparent-bg:first-child:active,
:not(.btn-check) + .btn.transparent-bg:active {
  background-color: rgba(255, 255, 255, 0.05);
}

.footer-newsletter .input-group .form-control,
.footer .social-links ul li a {
  background-color: rgba(255, 255, 255, 0.03);
}

/* Specific backgrounds */
/* Breadcrumb before svg color #002855 */
.breadcrumb-item + .breadcrumb-item::before {
  content: url('data:image/svg+xml,<svg stroke="%23002855" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M184 112l144 144-144 144" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="48"></path></svg>');
}

/* Pulse effect */
.pulse-effect.yellow {
  box-shadow: 0 0 0 0 rgba(254, 171, 77, 1);
  animation: pulse-yellow 2s infinite;
}

.pulse-effect.blue {
  box-shadow: 0 0 0 0 rgba(45, 57, 137, 1);
  animation: pulse-blue 2s infinite;
}

.pulse-effect.green {
  box-shadow: 0 0 0 0 rgba(121, 193, 66, 1);
  animation: pulse-green 2s infinite;
}

.pulse-effect.red {
  box-shadow: 0 0 0 0 rgba(199, 54, 61, 1);
  animation: pulse-red 2s infinite;
}

.pulse-effect.chefchaouen-blue {
  box-shadow: 0 0 0 0 rgba(83, 138, 214, 1);
  animation: pulse-chefchaouen 2s infinite;
}

@keyframes pulse-yellow {
  0% {
    box-shadow: 0 0 0 0 rgba(254, 171, 77, 0.7);
  }

  70% {
    box-shadow: 0 0 0 0.625rem rgba(254, 171, 77, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(254, 171, 77, 0);
  }
}

@keyframes pulse-blue {
  0% {
    box-shadow: 0 0 0 0 rgba(45, 57, 137, 0.7);
  }

  70% {
    box-shadow: 0 0 0 0.625rem rgba(45, 57, 137, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(45, 57, 137, 0);
  }
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(121, 193, 66, 0.7);
  }

  70% {
    box-shadow: 0 0 0 0.625rem rgba(121, 193, 66, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(121, 193, 66, 0);
  }
}

@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(199, 54, 61, 0.7);
  }

  70% {
    box-shadow: 0 0 0 0.625rem rgba(199, 54, 61, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(199, 54, 61, 0);
  }
}

@keyframes pulse-chefchaouen {
  0% {
    box-shadow: 0 0 0 0 rgba(83, 138, 214, 0.7);
  }

  70% {
    box-shadow: 0 0 0 0.625rem rgba(83, 138, 214, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(83, 138, 214, 0);
  }
}

/* Font colors */
/***************/

/* font #0A0F2B */
body,
.toast,
.toast .btn-close,
.dropdown-custom .dropdown-item,
.accordion-item,
.col-header-center .header-center-holder nav > ul li .btn-nav,
.search-col .vertical-menu li a,
.search-col .vertical-menu-mobile li a,
.form-control,
.form-control:focus,
.form-select,
.form-select:focus,
.offcanvas-categories .link-item a,
.custom-accordion .accordion-button.collapsed,
.custom-accordion .accordion-body ul.mobile-menu li a,
.custom-accordion .accordion-body ul.mobile-menu li a:hover,
.offcanvas-categories .custom-accordion .accordion-button,
.offcanvas-categories .custom-accordion .accordion-button:hover,
.offcanvas-categories .custom-accordion .accordion-button.active,
.news-item .item-image a,
.news-item .item-header a.btn-link,
.news-item h3 a,
.counter-section .counter-title .icon-holder,
.download-item-holder,
.tag-item,
.contact-section .nav-aside ul li a,
.offcanvas-contact-mobile .nav-aside ul li a,
.choices__list--multiple .choices__item,
.choices__list--dropdown .choices__item--selectable.is-highlighted::after,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted::after,
.upload-documents .btn,
.contact-section .contact-item-box .media-body ul li a.phone-number,
.white-bg,
.btn.white-bg:hover,
.btn.white-bg:focus,
.btn.white-bg.disabled,
.btn.white-bg:disabled,
.btn.white-bg:active,
.btn.white-bg.active,
.btn.white-bg:first-child:active,
:not(.btn-check) + .btn.white-bg:active {
  color: #0a0f2b;
}

/* font #ffffff */
.top-header .col-top-logo .media-body,
.top-header .col-header-options .btn-group a.top-header-link,
.top-header .col-header-options .btn-group .btn-search.collapsed,
.top-header .col-header-options .btn-group .dropdown-toggle,
.top-header .col-header-options .dropdown-language .btn .indicator svg,
.top-header .btn-categories,
.top-header-mobile .slogan-holder,
.custom-accordion .accordion-body ul.mobile-menu li a.active,
.custom-modal .modal-header .btn-close,
.custom-modal .modal-header .modal-title,
.custom-modal .modal-body time,
.offcanvas-header h2,
.offcanvas .offcanvas-header .btn-close,
.toast .toast-icon svg,
.dropdown-item.active,
.dropdown-menu.multilevel-menu li.dropdown:hover > .dropdown-item.active,
.search-col .vertical-menu li a.active,
.search-col .vertical-menu-mobile li a.active,
.search-col .media-icon,
.parallax-section.section-counter.dark,
.parallax-section.section-counter.dark .parallax-title h2,
.parallax-section.section-counter.dark a,
.parallax-section.dark .parallax-content,
.transparent-bg,
.btn.transparent-bg:hover,
.btn.transparent-bg:focus,
.btn.transparent-bg.disabled,
.btn.transparent-bg:disabled,
.btn.transparent-bg:active,
.btn.transparent-bg.active,
.btn.transparent-bg:first-child:active,
:not(.btn-check) + .btn.transparent-bg:active,
.red-bg,
.btn.red-bg:hover,
.btn.red-bg:focus,
.btn.red-bg.disabled,
.btn.red-bg:disabled,
.btn.red-bg:active,
.btn.red-bg.active,
.btn.red-bg:first-child:active,
:not(.btn-check) + .btn.red-bg:active,
.blue-bg,
.btn.blue-bg,
.btn.blue-bg:hover,
.btn.blue-bg:focus,
.btn.blue-bg.disabled,
.btn.blue-bg:disabled,
.btn.blue-bg:active,
.btn.blue-bg.active,
.btn.blue-bg:first-child:active,
:not(.btn-check) + .btn.blue-bg:active,
.chefchaouen-blue-bg,
.btn.chefchaouen-blue-bg,
.btn.chefchaouen-blue-bg:hover,
.btn.chefchaouen-blue-bg:focus,
.btn.chefchaouen-blue-bg.disabled,
.btn.chefchaouen-blue-bg:disabled,
.btn.chefchaouen-blue-bg:active,
.btn.chefchaouen-blue-bg.active,
.btn.chefchaouen-blue-bg:first-child:active,
:not(.btn-check) + .btn.chefchaouen-blue-bg:active,
.outline.white,
.splide__arrow,
.splide__arrow:hover,
.splide__arrow:disabled:hover,
.section-title time,
.download-item-holder .content-holder time,
.download-item-holder .new-label,
.icon-list-style .media .media-image svg,
.icon-list-style .media .media-image span,
.how-to-steps .figure-logo svg,
.how-to-steps .section-title .title,
.how-to-steps .section-title p,
.how-to-steps .section-main-text p,
.how-to-item .media .media-image svg,
.how-to-item .media .media-image span,
.how-to-item .media .media-body h2,
.how-to-item p,
.how-to-item ul li,
.counter-section .figure-logo svg,
.counter-section .counter-title .icon-holder .item-icon svg,
.counter-section .counter-title .icon-holder .item-icon span,
.counter-section .counter-title h2,
.counter-section .counter-title p,
.counter-item.light-blue-bg,
.inner-content-section
  .download-documents
  .document-item
  .media
  .media-image
  svg,
.inner-content-section
  .download-documents
  .document-item
  .media
  .media-image
  .material-icon,
.inner-content-section
  .download-documents
  .document-item
  .media
  .media-body
  time,
.article-options-section .social-share-holder .social-links ul li a,
.article-options-section .social-share-holder .social-links ul li a:hover,
.download-item-holder .icon-holder,
.faq-section.listing-faq-section .faq-title .media .media-image span,
.contact-section .contact-item-box .media-image,
.contact-section .map .view-on-google a,
.employee-item-box .employee-contacts a,
.service-item .item-date time,
.custom-table table thead th,
.contact-center-section .contact-item .media-image,
.footer-newsletter .newsletter-text,
.footer-newsletter .input-group .form-control,
.footer .footer-content h3,
.footer .footer-content .footer-nav a,
.footer .content-holder.content-left ul li a,
.footer .content-holder.content-right,
.footer .content-holder.content-right p,
.footer .content-holder.content-right a,
.footer .developed-by p,
.footer .developed-by p .btn-link,
.footer .developed-by p a,
.footer .social-links ul li a,
.footer .figure-logo svg,
.form-group .form-info .btn-info .icon-holder,
.footer .content-holder.content-center p,
.footer .content-holder.content-center p a {
  color: #ffffff;
}

a,
.toast .btn-close:hover,
.alert.info-box.top-aligned .btn-close:hover,
ul li::marker,
.choices__heading,
.search-col .media:hover h3,
.custom-accordion .accordion-button,
.custom-accordion .accordion-button:hover,
.custom-accordion .accordion-button.active,
.news-item h3 a:hover,
.news-item .item-header a.btn-link:hover,
.breadcrumb-item a,
.breadcrumb-item a:hover,
.inner-content-section .main-content ul li::marker,
.inner-content-section
  .download-documents
  .document-item:hover
  .media
  .media-body
  .title,
.download-item-holder:hover .title,
.download-item-holder:hover > svg,
.contact-center-section .contact-item:hover .title,
.contact-center-section .contact-item:hover svg,
.upload-documents .btn:hover,
.gdpr-box .btn-link {
  color: #2d3989;
}

.how-to-steps li::marker {
  color: #538ad6;
}

/* font #6bb7fe */
.top-header .col-header-options .btn-group .btn-search:hover,
.top-header .col-header-options .btn-group .top-header-link:hover,
.footer .footer-content .footer-nav a:hover,
.footer .content-holder.content-left ul li a:hover,
.footer .content-holder.content-right a:hover,
.footer .developed-by p .btn-link:hover,
.footer .content-holder.content-center p a:hover,
.footer .developed-by p a:hover {
  color: #6bb7fe;
}

/* font #4264EC */
.icon-item .media .media-image svg,
.icon-item .media .media-image span,
.counter-section .counter-title .icon-holder span,
.tag-item:hover {
  color: #4264ec;
}

/* font c7363d */
.header .col-header-center .header-center-holder nav > ul li .btn-nav:hover,
.header .col-header-center .header-center-holder nav > ul li .btn-nav.show,
.header .col-header-center .header-center-holder nav > ul li .btn-nav.active,
.form-group label.is-invalid,
.invalid-feedback,
.offcanvas-categories .link-item a:hover,
.offcanvas-categories .link-item a.active,
.upload-documents .btn svg,
.contact-center-section .contact-item.red:hover .title,
.contact-center-section .contact-item.red:hover svg {
  color: #c7363d;
}

/* font 79c142 */
.contact-center-section .contact-item.selected:hover .title,
.contact-center-section .contact-item.selected:hover .media svg {
  color: #79c142;
}

/* font #92999f */
.form-control::placeholder,
.download-item-holder .content-holder p,
.benefits-section .figure-logo svg,
.faq-section .figure-logo svg {
  color: #92999f;
}

/* text-decoration-color #2d3989 */
a.link-underline {
  text-decoration-color: #2d3989 !important;
}

/* color rgba */
.footer-newsletter .input-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* Border colors */
/*****************/

/* border #D9D9D9 */
.form-control,
.iti__search-input,
.post-office-item,
.post-office-item .media-image {
  border: 1px solid #d9d9d9;
}

/* border-top #D9D9D9 */
.inner-content-section .download-documents,
.contact-section .service-item:first-child {
  border-top: 1px solid #d9d9d9;
}

/* border-top, border-bottom #D9D9D9 */
.faq-section.listing-faq-section .faq-section-border {
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}

/* border-bottom #D9D9D9 */
.search-col > h3,
.section-subtitle,
.inner-content-section .download-documents,
.contact-section .service-item {
  border-bottom: 1px solid #d9d9d9;
}

/* border-right #D9D9D9 */
.search-col:first-child .search-content,
.faq-section.listing-faq-section .faq-aside-col .faq-aside-holder,
.iti__selected-country {
  border-right: 1px solid #d9d9d9;
}

/* border rgba(255, 255, 255, 0.1) */
.footer-newsletter .input-group .form-control {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* border-bottom rgba(255, 255, 255, 0.1) */
.footer .newsletter-wrapper,
.footer .footer-wrapper {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* border #2d3989 */
.search-box .form-control,
.splide__pagination__page {
  border: 1px solid #2d3989;
}

/* border dashed #D9D9D9 */
.dropzone-holder {
  border: 1px dashed #d9d9d9;
}

.form-title h2 {
  border-bottom: 1px dashed #d9d9d9;
}

/* border-color #ffffff */
.outline.white {
  border-color: #ffffff;
}

/* border-color #D9D9D9 */
.choices:not(.is-open):hover .choices__inner,
.choices__list--dropdown,
.choices__list[aria-expanded],
.choices__inner,
.is-open .choices__list--dropdown,
.is-open .choices__list[aria-expanded],
.choices__inner:focus,
.is-focused .choices__inner,
.is-open .choices__inner,
.choices[data-type*="select-one"] .choices__input,
.choices__inner:focus,
.form-check .form-check-input,
.form-select {
  border-color: #d9d9d9;
}

/* border-color #2d3989 */
.toast.toast-info,
.search-box .input-group .form-control:focus,
.form-control:hover,
.form-control:focus,
.form-check .form-check-input:checked,
.form-check .form-check-input:hover,
.form-select:hover,
.form-select:focus,
.dropzone-holder:hover,
.iti__search-input:hover,
.iti__search-input:focus,
.footer-newsletter .input-group .form-control:hover,
.footer-newsletter .input-group .form-control:focus {
  border-color: #2d3989;
}

/* border E6F2FF */
table.table-light-blue {
  --bs-table-border-color: rgba(40, 60, 142, 0.3);
}

table.table-light-blue caption {
  border-right: 1px solid rgba(40, 60, 142, 0.3);
  border-left: 1px solid rgba(40, 60, 142, 0.3);
  border-bottom: 1px solid rgba(40, 60, 142, 0.3);
}

/* border-color #002855 */
.outline.blue {
  border-color: #2d3989;
}

/* border-color #fecb2e */
.toast.toast-warning {
  border-color: #fecb2e;
}

/* border-color #79c142 */
.toast.toast-success {
  border-color: #79c142;
}

/* border-color #c7363d */
.toast.toast-danger,
.form-control:hover.is-invalid,
.form-control:focus.is-invalid,
.form-control:focus.is-invalid:hover,
.was-validated .form-control:invalid,
.was-validated .form-control:focus:invalid,
.form-select.is-invalid:hover {
  border-color: #c7363d;
}

/* Specific border colors */
/**************************/

.autocomplete {
  border-top: 1px solid #ffffff;
  border-left: 1px solid #2d3989;
  border-right: 1px solid #2d3989;
  border-bottom: 1px solid #2d3989;
}

/* popover-arrow border-color #2d3989 */
.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before,
.bs-popover-end > .popover-arrow::before,
.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after,
.bs-popover-end > .popover-arrow::after {
  border-right-color: #2d3989;
  left: 1px;
}

.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before,
.bs-popover-start > .popover-arrow::before,
.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after,
.bs-popover-start > .popover-arrow::after {
  border-left-color: #2d3989;
  right: 1px;
}

.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before,
.bs-popover-top > .popover-arrow::before,
.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after,
.bs-popover-top > .popover-arrow::after {
  border-top-color: #2d3989;
  bottom: 1px;
}

.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before,
.bs-popover-bottom > .popover-arrow::before,
.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after,
.bs-popover-bottom > .popover-arrow::after {
  border-bottom-color: #2d3989;
  top: 1px;
}

/* popover-arrow border-color #538ad6 */
.chefchaouen-blue-arrow.bs-popover-auto[data-popper-placement^="right"]
  > .popover-arrow::before,
.chefchaouen-blue-arrow.bs-popover-end > .popover-arrow::before,
.chefchaouen-blue-arrow.bs-popover-auto[data-popper-placement^="right"]
  > .popover-arrow::after,
.chefchaouen-blue-arrow.bs-popover-end > .popover-arrow::after {
  border-right-color: #538ad6;
  left: 1px;
}

.chefchaouen-blue-arrow.bs-popover-auto[data-popper-placement^="left"]
  > .popover-arrow::before,
.chefchaouen-blue-arrow.bs-popover-start > .popover-arrow::before,
.chefchaouen-blue-arrow.bs-popover-auto[data-popper-placement^="left"]
  > .popover-arrow::after,
.chefchaouen-blue-arrow.bs-popover-start > .popover-arrow::after {
  border-left-color: #538ad6;
  right: 1px;
}

.chefchaouen-blue-arrow.bs-popover-auto[data-popper-placement^="top"]
  > .popover-arrow::before,
.chefchaouen-blue-arrow.bs-popover-top > .popover-arrow::before,
.chefchaouen-blue-arrow.bs-popover-auto[data-popper-placement^="top"]
  > .popover-arrow::after,
.chefchaouen-blue-arrow.bs-popover-top > .popover-arrow::after {
  border-top-color: #538ad6;
  bottom: 1px;
}

.chefchaouen-blue-arrow.bs-popover-auto[data-popper-placement^="bottom"]
  > .popover-arrow::before,
.chefchaouen-blue-arrow.bs-popover-bottom > .popover-arrow::before,
.chefchaouen-blue-arrow.bs-popover-auto[data-popper-placement^="bottom"]
  > .popover-arrow::after,
.chefchaouen-blue-arrow.bs-popover-bottom > .popover-arrow::after {
  border-bottom-color: #538ad6;
  top: 1px;
}

/* popover-arrow border-color #6bb7fe */
.argentinian-blue-arrow.bs-popover-auto[data-popper-placement^="right"]
  > .popover-arrow::before,
.argentinian-blue-arrow.bs-popover-end > .popover-arrow::before,
.argentinian-blue-arrow.bs-popover-auto[data-popper-placement^="right"]
  > .popover-arrow::after,
.argentinian-blue-arrow.bs-popover-end > .popover-arrow::after {
  border-right-color: #6bb7fe;
  left: 1px;
}

.argentinian-blue-arrow.bs-popover-auto[data-popper-placement^="left"]
  > .popover-arrow::before,
.argentinian-blue-arrow.bs-popover-start > .popover-arrow::before,
.argentinian-blue-arrow.bs-popover-auto[data-popper-placement^="left"]
  > .popover-arrow::after,
.argentinian-blue-arrow.bs-popover-start > .popover-arrow::after {
  border-left-color: #6bb7fe;
  right: 1px;
}

.argentinian-blue-arrow.bs-popover-auto[data-popper-placement^="top"]
  > .popover-arrow::before,
.argentinian-blue-arrow.bs-popover-top > .popover-arrow::before,
.argentinian-blue-arrow.bs-popover-auto[data-popper-placement^="top"]
  > .popover-arrow::after,
.argentinian-blue-arrow.bs-popover-top > .popover-arrow::after {
  border-top-color: #6bb7fe;
  bottom: 1px;
}

.argentinian-blue-arrow.bs-popover-auto[data-popper-placement^="bottom"]
  > .popover-arrow::before,
.argentinian-blue-arrow.bs-popover-bottom > .popover-arrow::before,
.argentinian-blue-arrow.bs-popover-auto[data-popper-placement^="bottom"]
  > .popover-arrow::after,
.argentinian-blue-arrow.bs-popover-bottom > .popover-arrow::after {
  border-bottom-color: #6bb7fe;
  top: 1px;
}

/* popover-arrow border-color #E6F2FF */
.alice-blue-arrow.bs-popover-auto[data-popper-placement^="right"]
  > .popover-arrow::before,
.alice-blue-arrow.bs-popover-end > .popover-arrow::before,
.alice-blue-arrow.bs-popover-auto[data-popper-placement^="right"]
  > .popover-arrow::after,
.alice-blue-arrow.bs-popover-end > .popover-arrow::after {
  border-right-color: #e6f2ff;
  left: 1px;
}

.alice-blue-arrow.bs-popover-auto[data-popper-placement^="left"]
  > .popover-arrow::before,
.alice-blue-arrow.bs-popover-start > .popover-arrow::before,
.alice-blue-arrow.bs-popover-auto[data-popper-placement^="left"]
  > .popover-arrow::after,
.alice-blue-arrow.bs-popover-start > .popover-arrow::after {
  border-left-color: #e6f2ff;
  right: 1px;
}

.alice-blue-arrow.bs-popover-auto[data-popper-placement^="top"]
  > .popover-arrow::before,
.alice-blue-arrow.bs-popover-top > .popover-arrow::before,
.alice-blue-arrow.bs-popover-auto[data-popper-placement^="top"]
  > .popover-arrow::after,
.alice-blue-arrow.bs-popover-top > .popover-arrow::after {
  border-top-color: #e6f2ff;
  bottom: 1px;
}

.alice-blue-arrow.bs-popover-auto[data-popper-placement^="bottom"]
  > .popover-arrow::before,
.alice-blue-arrow.bs-popover-bottom > .popover-arrow::before,
.alice-blue-arrow.bs-popover-auto[data-popper-placement^="bottom"]
  > .popover-arrow::after,
.alice-blue-arrow.bs-popover-bottom > .popover-arrow::after {
  border-bottom-color: #e6f2ff;
  top: 1px;
}

.counter-item.light-gray-bg::before {
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
  border-bottom: 1rem solid #f5f6f8;
}

/* choices single chevron */
.choices[data-type*="select-one"]::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23002855' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.choices[data-type*="select-multiple"]::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23002855' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.choices[data-type*="select-multiple"] .choices__button {
  background-image: url('data:image/svg+xml,<svg fill="%23b83488" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 469.33 469.33"><path d="M256,490.67c129.6,0,234.67-105.06,234.67-234.67S385.6,21.33,256,21.33,21.33,126.4,21.33,256C21.49,385.54,126.46,490.51,256,490.67ZM256,64c106,0,192,86,192,192S362,448,256,448,64,362,64,256,150,64.12,256,64Z" transform="translate(-21.33 -21.33)"></path><path d="M176.92,335.08a21.33,21.33,0,0,0,30.17,0L256,286.17l48.92,48.92a21.33,21.33,0,0,0,30.17-30.17L286.17,256l48.92-48.92a21.33,21.33,0,0,0-30.17-30.17L256,225.83l-48.92-48.92a21.33,21.33,0,0,0-30.17,30.17L225.83,256l-48.92,48.92a21.33,21.33,0,0,0,0,30.17Z" transform="translate(-21.33 -21.33)"></path></svg>');
}

.choices[data-type*="select-one"] .choices__button {
  background-image: url('data:image/svg+xml,<svg fill="%23b83488" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 469.33 469.33"><path d="M256,490.67c129.6,0,234.67-105.06,234.67-234.67S385.6,21.33,256,21.33,21.33,126.4,21.33,256C21.49,385.54,126.46,490.51,256,490.67ZM256,64c106,0,192,86,192,192S362,448,256,448,64,362,64,256,150,64.12,256,64Z" transform="translate(-21.33 -21.33)"></path><path d="M176.92,335.08a21.33,21.33,0,0,0,30.17,0L256,286.17l48.92,48.92a21.33,21.33,0,0,0,30.17-30.17L286.17,256l48.92-48.92a21.33,21.33,0,0,0-30.17-30.17L256,225.83l-48.92-48.92a21.33,21.33,0,0,0-30.17,30.17L225.83,256l-48.92,48.92a21.33,21.33,0,0,0,0,30.17Z" transform="translate(-21.33 -21.33)"></path></svg>');
}

/* dropdown multilevel menu svg color #0A0F2B  */
.dropdown-menu.multilevel-menu li.dropdown > a::after {
  content: url('data:image/svg+xml,<svg stroke="%230A0F2B" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M184 112l144 144-144 144" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="48"></path></svg>');
}

.dropdown-menu.multilevel-menu li.dropdown > a.active::after {
  content: url('data:image/svg+xml,<svg stroke="%23FFFFFF" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M184 112l144 144-144 144" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="48"></path></svg>');
}

/* .form-check .form-check-input:checked radio and checkbox color #2d3989  */
.form-check .form-check-input:checked[type="checkbox"],
.form-check .form-check-input:checked[type="radio"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%232d3989' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

/* form-select svg color #0A0F2B */
.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%230A0F2B' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

/* Media Query Colors */
/**********************/

@media (max-width: 991px) {
  .top-header {
    background-color: #ffffff;
    background: linear-gradient(0deg, #ffffff 100%);
  }

  .top-header .btn-categories,
  .top-header .col-header-options .btn-group a.top-header-link,
  .top-header .col-header-options .btn-group .dropdown-toggle,
  .top-header .col-header-options .btn-group .btn-search,
  .top-header .col-header-options .btn-group .btn-search:hover {
    color: #002855;
  }

  .faq-section.listing-faq-section .faq-title {
    border-bottom: 1px solid #d9d9d9;
  }
}

/* Media Query Style */
/*********************/

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

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 95%;
  }

  .col-categories.mobile {
    display: none;
  }

  .top-header-mobile-container {
    display: none;
  }

  .view-more-mobile,
  .view-all-mobile {
    display: none;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 85%;
  }

  .news-item .image-holder .item-image {
    transform: scale(1, 1);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .news-item .image-holder:hover .item-image {
    transform: scale(1.07, 1.07);
  }
}

@media (min-width: 1700px) {
  .container {
    max-width: 85%;
  }
}

@media (min-width: 1920px) {
  .container {
    max-width: 1632px;
  }
}

/* max-width */
/*************/
@media (max-width: 1199px) {
  .header .col-header-center .header-center-holder .search-box {
    max-width: 80vw;
  }

  .figure-logo {
    display: none;
  }

  .footer .figure-logo {
    display: block;
  }
}

@media (max-width: 991px) {
  .toast-container {
    top: 6.875rem;
  }

  .top-header-container {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 1020;
  }

  .top-header {
    padding: 0 0.75rem;
    -webkit-box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, 0.1);
    border-bottom: 0 none;
  }

  .top-header .col-top-logo .media-image {
    margin-right: 0;
  }

  .top-header .col-top-logo .media-image img {
    height: 3.5rem;
  }

  .top-header .col-top-logo .media-body {
    display: none;
  }

  .top-header .col-categories {
    display: flex;
    align-items: center;
    margin-left: 0.5rem;
  }

  .top-header .btn-categories {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
  }

  .top-header .btn-categories svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .top-header .col-header-options .btn-group .media-image {
    margin-right: 0;
  }

  .top-header .col-header-options .btn-group .dropdown-toggle {
    padding: 0 1.25rem 0 0;
  }

  .top-header .col-header-options .btn-group .dropdown-toggle > svg {
    right: 0;
  }

  .top-header .col-header-options .btn-group .dropdown-item .media-image {
    margin-right: 0.5rem;
  }

  .top-header .col-header-options .btn-group .dropdown-item .media-body {
    display: flex;
  }

  .top-header .col-header-options .btn-search svg:last-child {
    display: block;
    width: 1.375rem;
    height: 1.375rem;
  }

  .top-header .col-header-options .btn-group .btn-search,
  .top-header .col-header-options .btn-group a.top-header-link,
  .top-header .col-header-options .btn-group .popover-holder {
    width: auto;
  }

  .top-header .col-header-options .btn-group:not(:last-of-type) {
    margin-right: 1.25rem;
  }

  .top-header .col-header-options .btn-language .media-image,
  .top-header .col-header-options .btn-language .media-image .flag-icon {
    width: 1.375rem;
    height: 1.375rem;
  }

  .header-container {
    display: none;
  }

  .search-box {
    padding: 2rem 1.5rem 1rem 1.5rem;
  }

  .search-box .input-group .form-control {
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
  }

  .offcanvas.offcanvas.offcanvas-search .offcanvas-body {
    padding: 0;
  }

  .autocomplete-mobile {
    padding-top: 1rem;
  }

  .search-results-holder {
    flex-wrap: wrap;
    overflow: unset;
  }

  .search-col,
  .search-col:first-child,
  .search-col:last-child {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .search-col > h3 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .search-col .search-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    height: auto;
  }

  .search-col:first-child .search-content {
    border-right: 0 none;
  }

  .search-col .vertical-menu-mobile {
    padding: 0.5rem 0 0 0;
    margin: 0;
  }

  .search-col .vertical-menu-mobile li {
    list-style: none;
  }

  .search-col .vertical-menu-mobile li:not(:last-child) {
    margin-bottom: 0.313rem;
  }

  .search-col .vertical-menu-mobile li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 1rem;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
  }

  .search-col,
  .search-col:first-child,
  .search-col:last-child {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .search-col .media:first-child {
    padding: 1rem 0;
  }

  .search-col .search-content .media-image {
    align-items: flex-start;
  }

  /* Mobile menu */
  .offcanvas-categories .link-item {
    padding: 0;
  }

  .offcanvas-categories .link-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 1rem 0;
    font-size: 1rem;
    font-weight: 600;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }

  .offcanvas-categories .link-item a .icon-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    width: 1.625rem;
    margin-right: 0.5rem;
  }

  .offcanvas-categories .link-item a .icon-holder svg {
    width: 1.375rem;
    height: 1.375rem;
    margin-right: 0;
  }

  .offcanvas-categories .custom-accordion .accordion-button {
    padding-left: 0;
    font-size: 1rem;
    font-weight: 600;
  }

  .offcanvas-categories .custom-accordion .accordion-button .icon-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    width: 1.625rem;
    margin-right: 0.5rem;
  }

  .offcanvas-categories .custom-accordion .accordion-button .icon-holder svg {
    position: relative;
    top: 0;
    right: unset;
    width: 1.375rem;
    height: 1.375rem;
    margin-right: 0;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }

  .offcanvas-categories .custom-accordion .accordion-button .icon-holder span {
    font-size: 1.625rem;
  }

  .custom-accordion .accordion-body ul.mobile-menu {
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 2rem 0 0;
    margin: 0;
  }

  .custom-accordion .accordion-body ul.mobile-menu li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-basis: 100%;
    list-style: none;
  }

  .custom-accordion .accordion-body ul.mobile-menu li:not(:last-child) {
    margin-bottom: 0.313rem;
  }

  .custom-accordion .accordion-body ul.mobile-menu li a {
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }

  .custom-accordion .accordion-body ul.mobile-menu li .menu-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    font-weight: 500;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
  }

  .section.splide-main .col:first-of-type {
    order: 2;
  }

  .section.splide-main .col:last-of-type {
    order: 1;
  }

  .splide-main .slide-item {
    height: auto;
  }

  .section.splide-main .content-holder {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .splide-main .image-holder {
    margin: 3rem 0 1.875rem 0;
  }

  .title-item {
    padding-top: 0;
    margin-bottom: 3rem;
  }

  .title-item.sticky {
    position: unset !important;
    margin-bottom: 3rem;
  }

  .parallax-section {
    background-attachment: scroll;
  }

  .parallax-section.section-counter .counter-item {
    width: 50%;
  }

  .parallax-section .parallax-content .button-holder {
    flex-wrap: wrap;
    width: 20rem;
    margin: 0 auto;
  }

  .parallax-section .parallax-content .button-holder .btn:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1.25rem;
  }

  .faq-section .title-item .view-all-items {
    display: none;
  }

  .faq-section .view-all-items {
    margin-top: 5rem;
  }

  .faq-section.listing-faq-section .faq-section-border {
    border-top: 0;
    border-bottom: 0;
  }

  .faq-section.listing-faq-section .faq-aside-col .faq-aside-holder {
    border-right: 0 none;
  }

  .icon-item-col:nth-last-child(2) {
    margin-bottom: 3rem;
  }

  .faq-section.listing-faq-section .faq-section-border {
    padding: 0;
  }

  .faq-section.listing-faq-section .faq-aside-col .faq-aside-holder {
    padding-right: 0;
    height: auto;
  }

  .faq-section.listing-faq-section .faq-title {
    padding-bottom: 2rem;
    margin: 0 0 1rem 0;
    width: 100%;
  }

  .offcanvas-contact-mobile .nav-aside ul li a {
    padding: 1rem 0;
  }

  .footer .footer-content {
    margin-bottom: 2.5rem;
  }

  .footer .content-holder.content-left {
    width: 100%;
    justify-content: center;
  }

  .footer .content-holder.content-right {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
  }

  .footer .content-holder.content-right ul {
    flex-wrap: wrap;
  }

  .footer .content-holder.content-right ul li {
    text-align: center;
    width: 100%;
  }

  .footer .content-holder.content-right ul li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .splide-main .content-holder h2,
  .section-title .title,
  .counter-section .counter-title h2,
  .title-item .title-holder h2 {
    font-size: 2rem;
  }

  .custom-table table thead th.compensation {
    width: 6.75rem;
    max-width: 6.75rem;
    min-width: 6.75rem;
  }

  .parallax-section.section-counter .counter-item {
    width: 100%;
  }

  .application-section .icon-item-col:nth-last-child(2),
  .citizen-benefits .icon-item-col:nth-last-child(2) {
    margin-bottom: 3rem;
  }

  .download-item-holder {
    padding: 2rem 4rem 2rem 1.25rem;
  }

  .download-item-holder .item-label {
    left: 1.25rem;
  }

  .contact-section .form-check-inline {
    width: 100%;
  }

  .contact-section .form-check-inline:not(:last-child) {
    margin-bottom: 1rem;
  }

  .contact-section .global-form .button-holder {
    justify-content: center;
  }
}

/* Chat Bot Rasa */
/* :root {
    --color-primary: #2d3989;
    --color-danger: #c7363d;
    --widget-font-family: "Montserrat", sans-serif;
    --font-family: "Montserrat", sans-serif;
    --input-font-size: 10px;
    --launcher-background-color: #c7363d;
    --header-background-color: #2d3989;
    --message-robot-color: #0A0F2B;
    --rasa-text-font-weight: 500;
    --rasa-text-letter-spacing: unset;
    --session-divider-text-color: #A0A1A3;
    --session-divider-color: #A0A1A3;
    --message-robot-icon-background-color: #2d3989;
    --message-robot-background-color: #E6F2FF;
    --message-user-background-color: #2d3989;
    --input-color: #0A0F2B;
    --input-placeholder-opacity: 1;
    --input-send-color: #2d3989;
    --inputMessagePlaceholder: "123";
} */

/* :root {
    --font-family: var(--widget-font-family, "Montserrat", sans-serif);
    --launcher-background-color: var(--color-primary);
    --launcher-color: var(--color-secondary);
    --header-background-color: var(--color-primary);
    --header-color: var(--color-secondary);
    --messenger-background-color: var(--color-secondary);
    --input-placeholder-color: var(--color-secondary-opposite);
    --input-placeholder-opacity: 0.5;
    --input-background-color: var(--color-secondary);
    --input-color: var(--color-secondary-opposite);
    --input-send-color: var(--color-primary);
    --message-robot-icon-background-color: var(--color-primary);
    --message-robot-icon-color: var(--color-secondary);
    --message-robot-background-color: var(--color-secondary-10);
    --message-robot-color: var(--color-secondary-90);
    --message-user-background-color: var(--color-primary);
    --message-user-color: var(--color-secondary);
    --message-button-color: var(--color-primary);
    --message-button-background-color: var(--color-secondary);
    --message-button-border-color: var(--color-primary);
    --message-selected-button-color: var(--color-secondary);
    --message-selected-button-background-color: var(--color-primary);
    --message-selected-button-border-color: var(--color-primary);
    --accordion-background-color: var(--color-secondary-10);
    --session-divider-color: var(--color-secondary-10);
    --session-divider-text-color: var(--color-secondary-40);
    --error-toast-background-color: var(--color-danger);
    --error-toast-color: var(--color-secondary);
    --timestamp-color: var(--color-secondary-40)
}

.rasa-chatbot-widget,
.rasa-chatbot-widget * {
    font-family: "OrtoRNIDS", "Montserrat", sans-serif !important;
}
*/
