﻿@charset "UTF-8";
/*
$white: #fff;
$dark: #262626;
$blue: #2a5aa6;
$light: #ccc;
$darker: #181818;
$dark-gray: #2a3338;
$light-gray: rgb(61, 68, 73);
$highlight-blue: #3282b8;
$red-accent: #892424;
$green-accent: #23671a;
*/
:root {
  /*colors*/
  --white: #fff;
  --dark: #808285;
  --blue: #0B5CA2;
  --light: #b0b1b5;
  --darker: #231f20;
  --lighter: #d2d3d5;
  --red: rgb(231, 50, 50);
  --green: #45b920;
  --light-blue: #3CACD9;
  --yellow: #ffc107;
  --table-green: #e6f0e6;
  --table-red: #f0e1e1;
  /*items*/
  --primary: var(--white);
  --secondary: var(--darker);
  --light-accent: var(--light);
  --dark-accent: var(--dark);
  --footer-bg: var(--lighter);
  --table-default: var(--light);
  --input-bg: var(--white);
  --secondary-btn-cl: var(--dark);
  --secondary-btn-bc: var(--dark);
  --secondary-btn-bg-hover: var(--white);
  --secondary-btn-cl-hover: var(--blue);
  --secondary-btn-bc-hover: var(--blue);
  --primary-btn-cl: var(--white);
  --primary-btn-bg: var(--dark);
  --primary-btn-bc: var(--dark);
  --primary-btn-cl-hover: var(--white);
  --primary-btn-bg-hover: var(--blue);
  --primary-btn-bc-hover: var(--blue);
  --filter-svg: invert(0%) sepia(1%) saturate(4%) hue-rotate(320deg) brightness(97%) contrast(104%);
  --status-bar-green: #06d300;
  --status-bar-red: #ff5555;
}

/*
@media (prefers-color-scheme: dark) {
    :root {
        --primary: var(--dark);
        --secondary: var(--light);
        --light-accent: var(--light);
        --dark-accent: var(--light);
        --footer-bg: var(--darker);
        --table-red: #424242;
        --table-green: #6d6e6d;
        --table-default: var(--darker);
        --input-bg: var(--darker);
        --secondary-btn-cl: var(--light);
        --secondary-btn-bc: var(--light);
        --secondary-btn-bg-hover: var(--dark);
        --secondary-btn-cl-hover: var(--blue);
        --secondary-btn-bc-hover: var(--blue);
        --primary-btn-cl: var(--dark);
        --primary-btn-bg: var(--light);
        --primary-btn-bc: var(--dark);
        --primary-btn-cl-hover: var(--light);
        --primary-btn-bg-hover: var(--blue);
        --primary-btn-bc-hover: var(--light);
        --filter-svg: invert(93%) sepia(0%) saturate(1972%) hue-rotate(136deg) brightness(97%) contrast(75%);
        --status-bar-green: #105f05;
        --status-bar-red: #6d2626;
    }
}

html.dark {
    --primary: var(--dark);
    --secondary: var(--light);
    --light-accent: var(--light);
    --dark-accent: var(--light);
    --footer-bg: var(--darker);
    --table-red: #424242;
    --table-green: #6d6e6d;
    --table-default: var(--darker);
    --input-bg: var(--darker);
    --secondary-btn-cl: var(--light);
    --secondary-btn-bc: var(--light);
    --secondary-btn-bg-hover: var(--dark);
    --secondary-btn-cl-hover: var(--blue);
    --secondary-btn-bc-hover: var(--blue);
    --primary-btn-cl: var(--dark);
    --primary-btn-bg: var(--light);
    --primary-btn-bc: var(--dark);
    --primary-btn-cl-hover: var(--light);
    --primary-btn-bg-hover: var(--blue);
    --primary-btn-bc-hover: var(--light);
    --filter-svg: invert(93%) sepia(0%) saturate(1972%) hue-rotate(136deg) brightness(97%) contrast(75%);
    --status-bar-green: #105f05;
    --status-bar-red: #6d2626;
}

html.light {
    --primary: var(--white);
    --secondary: var(--dark);
    --light-accent: var(--light);
    --dark-accent: var(--dark);
    --footer-bg: var(--dark);
    --table-green: #e6f0e6;
    --table-red: #f0e1e1;
    --table-default: var(--lighter);
    --input-bg: var(--white);
    --secondary-btn-cl: var(--dark);
    --secondary-btn-bc: var(--dark);
    --secondary-btn-bg-hover: var(--white);
    --secondary-btn-cl-hover: var(--blue);
    --secondary-btn-bc-hover: var(--blue);
    --primary-btn-cl: var(--white);
    --primary-btn-bg: var(--dark);
    --primary-btn-bc: var(--dark);
    --primary-btn-cl-hover: var(--white);
    --primary-btn-bg-hover: var(--blue);
    --primary-btn-bc-hover: var(--blue);
    --filter-svg: invert(0%) sepia(1%) saturate(4%) hue-rotate(320deg) brightness(97%) contrast(104%);
    --status-bar-green: #06d300;
    --status-bar-red: #ff5555;
}*/
.secondary-color {
  color: var(--secondary);
}

/*font import*/
/*@font-face {
    font-family: 'Hanken Grotesk';
    src: url("../../fonts/static/HankenGrotesk-BlackItalic.ttf") format("ttf");
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Hanken Grotesk';
    src: url("../../fonts/static/HankenGrotesk-Bold.ttf") format("ttf");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Hanken Grotesk';
    src: url("../../fonts/static/HankenGrotesk-Light.ttf") format("ttf");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Hanken Grotesk';
    src: url("../../fonts/static/HankenGrotesk-Regular.ttf") format("ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Hanken Grotesk';
    src: url("../../fonts/static/HankenGrotesk-Italic.ttf") format("ttf");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Hanken Grotesk';
    src: url("../../fonts/static/HankenGrotesk-Black.ttf") format("ttf");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Hanken Grotesk';
    src: url("../../fonts/static/HankenGrotesk-BoldItalic.ttf") format("ttf");
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Hanken Grotesk';
    src: url("../../fonts/static/HankenGrotesk-LightItalic.ttf") format("ttf");
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Hanken Grotesk';
    src: url("../../fonts/static/HankenGrotesk-MediumItalic.ttf") format("ttf");
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Hanken Grotesk';
    src: url("../../fonts/static/HankenGrotesk-Medium.ttf") format("ttf");
    font-weight: 600;
    font-style: normal;
}*/
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/HankenGrotesk-VariableFont_wght.ttf") format("ttf");
}
:root {
  --bs-font-sans-serif: "Hanken Grotesk", sans-serif;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-font-monospace: "Hanken Grotesk", monospace;
}

body {
  font-family: var(--bs-body-font-family);
}

/*document form*/
.add-podpisnik-btn {
  display: flex;
  margin: 10px 0px;
  width: auto;
}

.add-podpisnik-btn .btn-anchor {
  transition: border-color, background-color 0.5s;
  font-weight: normal;
  display: inline-block;
  padding: 12px 14.4px;
  text-align: center;
  text-decoration: none;
  box-shadow: none;
  text-shadow: none;
  -webkit-box-shadow: none;
  vertical-align: middle;
  background-color: var(--blue);
  outline: solid 0px transparent;
  color: var(--primary);
  border-radius: 100px 0 0 100px;
}
.add-podpisnik-btn .btn-anchor.dropdown-toggle-split {
  border-radius: 0 100px 100px 0;
}

.add-podpisnik-btn .btn-anchor:hover:not(.disabled) {
  background-color: var(--bs-btn-hover-bg);
  color: var(--bs-btn-hover-color);
}

a.disabled {
  cursor: default !important;
  color: #fff !important;
  background-color: #262626 !important;
  border-color: #262626 !important;
  pointer-events: none;
  opacity: 0.65;
}

.add-podpisnik-btn .dropdown-menu {
  background-color: var(--primary);
  border: solid 1px var(--secondary);
  width: auto;
  padding: 0;
}

.add-podpisnik-btn .dropdown-menu li a {
  color: var(--secondary);
  padding: 5px 10px;
  display: block;
}

.add-podpisnik-btn .dropdown-menu a:hover {
  color: var(--white);
  background-color: var(--blue);
}

.bottom {
  margin-top: auto;
}

.document-form {
  position: relative;
  width: 100%;
}

.document-form:only-child .document-form-inputs {
  border-top: 1px solid var(--light-accent);
  margin-top: 10px;
  padding-top: 10px;
  padding-right: 10px;
}

.document-form:not(:only-child) {
  padding-left: 15px;
  padding-right: 15px;
}

.document-form:not(:only-child) .document-form-inputs {
  border: 1px solid var(--light);
  border-radius: 3px;
  padding-top: 15px;
  padding-bottom: 5px;
  margin-bottom: 30px;
}

/*.document-form:not(:only-child) .document-form-inputs {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #fff;
    margin-top: 10px;
    padding-top: 10px;
    gap: 7px;
    width: auto;
}*/
.document-form .btn-remove {
  position: absolute;
  right: 0px;
  top: -15px;
  width: auto;
  padding: 0;
}
.document-form .btn-remove .close-podpisnik {
  background: url(../img/icon-close-window.svg) no-repeat;
  content: "";
  width: 30px;
  height: 30px;
}

.document-form .btn-remove a {
  cursor: pointer;
  display: block;
  /*padding: .45em 0.92em;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  border-radius: 3px;
  transition: all .3s;
  text-align: center;
  background-color: var(--primary);
  border: solid 1px var(--light-accent);
  color: var(--light-accent);*/
}

.document-form .btn-remove a:hover {
  /*color: red;
  border: solid 1px red;
  cursor: pointer;*/
}

.document-form:only-child .btn-remove {
  display: none;
}

.long-form .document-form-inputs .form-group {
  padding-bottom: 1rem;
}

.document-form:only-child .handle-el {
  display: none;
}

.document-form .handle-el {
  position: absolute;
  left: -20px;
  height: 3.5rem;
  width: 40px;
  top: 0;
  text-align: center;
  vertical-align: middle;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding-top: 1px;
  gap: 4px;
  cursor: move;
}

.document-form .handle-el p {
  position: relative;
  width: 20px;
  height: 3px;
  border-radius: 7px;
  background-color: red;
  margin: 0;
  padding: 0;
  background-color: var(--light-accent);
}

@media screen and (max-width: 992px) {
  .main-container {
    margin-top: 71px;
  }
  .long-form .btn {
    /*width:49%;*/
  }
  .btn-group {
    margin-left: 10px;
    margin-right: 10px;
  }
  /*.document-form:not(:only-child) .document-form-inputs {
      display: flex;
      justify-content: flex-start;
      border-top: 1px solid #fff;
      margin-top: 10px;
      padding-top: 10px;
      gap: 7px;
      padding-right: 10px;
  }*/
  .document-form {
    margin-left: 0px;
    margin-right: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  /*.document-form .handle-el {
      position: relative;
      left: 0px;
      height: 3.5rem;
      width: 40px;
      top: 20px;
  }*/
}
@media screen and (max-width: 549px) {
  /*.document-form:not(:only-child) .document-form-inputs {
      display: flex;
      flex-direction: column;
      border-top: 1px solid #fff;
      margin-top: 10px;
      padding-top: 10px;
      gap: 5px;
      max-width: 450px;
      padding-right: 20px;
      align-items: end;
  }*/
  .doc-row .document-label {
    font-size: 1rem;
  }
  .doc-row div:first-child {
    padding-left: 10px;
  }
  .float-right {
    display: flex;
    justify-content: space-between;
    float: unset;
  }
  .file-area {
    /*margin-top: 60px;*/
  }
}
/*end document form*/
.long-form .form-group > label:not(.radio):not(.radio-inline) {
  color: var(--secondary);
}

/*delete custom button*/
.delBtn {
  /*position: relative;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  border: 2px solid rgb(231, 50, 50);
  background-color: transparent;
  cursor: pointer;
  box-shadow: 0 0 10px #333;
  overflow: hidden;
  transition: .3s;
  box-sizing: border-box;*/
}

.delBtn:hover {
  /*background-color: rgb(245, 207, 207);*/
  /*transform: scale(1.2);
  box-shadow: 0 0 4px #111;
  transition: .3s;*/
}

.delBtn svg {
  color: rgb(231, 50, 50);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

.delBtn:focus svg {
  opacity: 0;
  transition: 0.3s;
}

.delBtn span {
  position: absolute;
  opacity: 0;
  transform: translate(-50%, -50%);
  color: rgb(231, 50, 50);
  font-weight: 600;
  transition: 0.3s;
  padding: 10px;
}

.delBtn:focus {
  width: 80px;
  height: 50px;
  transition: 0.3s;
}

.delBtn:focus span {
  opacity: 1;
  transition: 0.3s;
}

@media screen and (max-width: 549px) {
  .delBtn {
    width: 40px;
    height: 40px;
  }
  .delBtn:focus {
    width: 55px;
    height: 40px;
  }
  .delBtn span {
    font-size: 1rem;
    font-weight: 500;
    padding: 4px;
  }
}
/*delete custom button end*/
/*.form-check.form-check-inline{
    width:50%;
    height: 3.5rem;
    overflow:visible;
    margin:0!important;
    padding-left:0!important;
}
.form-group-buttons {
    display: flex;
    justify-content: space-evenly;
}

.form-check-input {

    height: 3.5em;
    border-radius: 3px 0 0 3px !important;
    padding: 1rem;
    position: relative;
    margin-top: unset !important;
    margin-left:0!important;
    border: 1px solid var(--light);
    width: 20%;
}
.form-check-label {
    height: 3.5em;
    min-height: 3.5rem;
    border-radius: 0 3px 3px 0 !important;
    padding: 1rem 0.4rem;
    position: relative;
    border: 1px solid var(--light);
    width:80%;
    font-size: 0.8rem;
}*/
/*@media screen and (max-width: 670px) {
    .nav-pills {
        flex-wrap: nowrap;

        .nav-link {
            visibility: hidden;

            &::after {
                content: '\F79D';
                visibility: visible;
                display: block;*/
/*position: absolute;*/
/*background-color: red;
padding: 5px;*/
/*top: 2px;*/
/*font-family: 'Glyphicons Halflings';
            }
        }

        &:first-child {
            .nav-link::after {
                content: '\F797';
            }
        }

        &:last-child {
            .nav-link::after {
                content: '\F7A3';
            }
        }
    }

}*/
.radio-buttons {
  position: relative;
  border-radius: 3px;
  height: 3.5rem;
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
}
.radio-buttons > * {
  flex: 0 0 50%;
}
.radio-buttons:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid var(--blue);
  pointer-events: none;
  border-radius: 100px;
}

.radio-input {
  display: none;
}
.radio-input:checked + .radio-label {
  background-color: var(--blue);
  color: var(--white);
}
.radio-input:checked + .radio-label:before {
  opacity: 1;
}

.radio-label {
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease-out;
  color: var(--blue);
  text-transform: uppercase;
}
.radio-label.radio-label-right {
  border-radius: 0 100px 100px 0;
}
.radio-label.radio-label-left {
  border-radius: 100px 0 0 100px;
}
.radio-label:hover {
  color: var(--white);
  background-color: var(--blue);
}

.card-list {
  /*@media screen and (max-width: 700px) {
      .flex-700 {
          display: grid !important;
          grid-template-columns: 1fr 1fr;
          align-items: center;

          > :first-child {
              grid-column: 1 / span 2;
          }

          > :last-child {
              grid-column: 1 / span 2;
              text-align: center;
          }
      }

      .left {
          width: unset;
      }
  }

  @media screen and (max-width: 360px) {
      .flex-700 {
          display: flex !important;
          flex-direction: column !important;
          align-items: unset;

          > div {
              border-bottom: 1px solid var(--light);
          }
      }
  }*/
}
.card-list .item-card {
  margin-bottom: 1em;
  border: 1px solid rgba(0, 0, 0, 0.175);
  border-radius: 0.375rem;
  /*&:nth-child(even) {
      background: var(--bs-gray-200);
  }

  &:nth-child(odd) {
      background: var(--bs-gray-100);
  }*/
}
.card-list .item-card a i.bi {
  color: var(--blue);
}
.card-list .item-card .card-header {
  padding: 0.5em 1em;
  background-color: rgba(0, 0, 0, 0.03);
}
@media screen and (max-width: 500px) {
  .card-list .item-card .card-header .custom-progress-bar {
    display: none;
  }
}
.card-list .item-card .card-footer {
  padding: 0.5em 1em;
  background-color: #fff;
}
.card-list .item-card .icons-row {
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.card-list .item-card .card-body {
  padding: 0.5em 1em;
  border-left: 1px solid var(--light);
}
.card-list .item-card .card-body .card-wrap {
  padding-bottom: 10px;
}
.card-list .item-card .card-body .card-wrap:not(:last-child) {
  border-bottom: 1px solid var(--light);
}
.card-list .item-card .card-body .card-wrap .document-card-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.card-list .item-card .card-body .card-wrap .document-card-row span {
  font-weight: 600;
  font-size: 0.7em;
  text-transform: uppercase;
}
@media screen and (max-width: 560px) {
  .card-list .item-card .card-body .card-wrap .document-card-row {
    flex-direction: column;
    align-items: unset;
  }
  .card-list .item-card .card-body .card-wrap .document-card-row .col {
    width: 100% !important;
  }
}
.card-list .item-card .card-body .custom-collapse-form {
  max-width: 400px;
}
.card-list .item-card .card-body .custom-collapse-form .form-row {
  padding-left: 50%;
}
.card-list .button-row {
  display: flex;
  flex-direction: row;
  min-height: 50px;
}
.card-list .button-row .table-button {
  justify-content: center;
  align-content: center;
  align-items: center;
}
.card-list .left {
  display: flex;
  justify-content: flex-start;
}
.card-list .right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.card-list .text-strong {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.card-list .text {
  margin-top: 0;
}
.card-list .signers-num {
  font-weight: 700;
}
.card-list .btn:hover {
  color: var(--light);
}
.card-list .status {
  font-size: 12px;
  padding: 0.35em 0.65em;
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
  border-radius: 0.375rem;
}
.card-list .status.Pripravljen {
  background-color: var(--yellow);
}
.card-list .status.Podpisan {
  background-color: var(--green);
}
.card-list .status.Pretekel {
  background-color: var(--light-blue);
}
.card-list .status.Zavrnjen {
  background-color: var(--red);
}
.card-list .status.VCakalniVrsti {
  background-color: var(--blue);
}
.card-list .flex-between {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
.card-list .doc-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  overflow-wrap: break-word;
  height: 100%;
  align-items: center;
}
.card-list .doc-buttons > a {
  /*padding: 7px 15px;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;*/
}
.card-list .doc-buttons > a.green {
  background-color: var(--green);
  color: #fff;
  border: 2px solid var(--green);
}
.card-list .doc-buttons > a.red {
  border: 2px solid var(--red);
  color: var(--red);
  background: rgba(0, 0, 0, 0);
}
@media screen and (max-width: 400px) {
  .card-list .doc-buttons {
    flex-direction: column !important;
  }
}

.border-none {
  border: none !important;
}

/*custom table*/
/*header*/
.custom-table {
  margin-left: 12px;
  /*filters*/
  /*rows*/
  /*cells*/
  /*spacer*/
  /*deny form*/
}
.custom-table pre {
  font-size: 0.7em;
}
.custom-table .col-1 {
  width: 5%;
  min-width: 45px;
}
.custom-table .col-2 {
  width: 10%;
}
.custom-table .col-3 {
  width: 15%;
}
.custom-table .col-4 {
  width: 20%;
}
.custom-table .col-5 {
  width: 25%;
}
.custom-table .col-6 {
  width: 30%;
}
.custom-table .col-7 {
  width: 35%;
}
.custom-table .col-8 {
  width: 40%;
}
.custom-table .col-9 {
  width: 45%;
}
.custom-table .col-10 {
  width: 50%;
}
.custom-table .col-11 {
  width: 55%;
}
.custom-table .col-12 {
  width: 60%;
}
.custom-table .col-13 {
  width: 65%;
}
.custom-table .col-14 {
  width: 70%;
}
.custom-table .col-15 {
  width: 75%;
}
.custom-table .col-16 {
  width: 80%;
}
.custom-table .col-17 {
  width: 85%;
}
.custom-table .col-18 {
  width: 90%;
}
.custom-table .col-19 {
  width: 95%;
}
.custom-table .col-20 {
  width: 100%;
}
.custom-table .head.row {
  border-top: none;
  border-bottom: 1px solid var(--secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  text-align: left;
  font-weight: 700;
}
.custom-table .form-check-input {
  background-color: var(--light);
  min-height: 16px;
  min-width: 16px;
}
.custom-table .form-check-input:checked {
  background-color: var(--dark);
}
.custom-table .filter {
  border: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  text-align: left;
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.custom-table .filter select {
  padding: 0 1rem;
}
.custom-table .filter input, .custom-table .filter select {
  width: 100%;
  height: 2.1rem;
}
.custom-table #date-input {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}
.custom-table ::-webkit-calendar-picker-indicator {
  filter: invert(0.5);
}
.custom-table .row:not(.head) {
  border-radius: 7px;
}
.custom-table .zavrnjeno {
  color: var(--red) !important;
}
.custom-table .podpisano {
  color: var(--green) !important;
}
.custom-table .row:not(.head, .spacer, .filter) .col {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--secondary);
  overflow-wrap: anywhere;
}
.custom-table .row:not(.head, .spacer, .collapseInput, .filter):hover {
  /*box-shadow: 0 5px 5px 5px rgba(0, 0, 0, 0.28);
  -webkit-box-shadow: 0 5px 5px 5px rgba(0, 0, 0, 0.28);*/
}
.custom-table small, .custom-table small {
  color: var(--dark-accent);
  font-weight: 300;
}
.custom-table .spacer {
  height: 10px;
  background: transparent !important;
  width: 100%;
}
.custom-table .collapseInput {
  width: 50%;
  float: right;
}

.form-control, .form-control:valid, .form-control:focus {
  background-color: var(--input-bg);
  color: var(--secondary);
  -webkit-box-shadow: 0 0 0 30px var(--input-bg) inset !important;
  box-shadow: 0 0 0 30px var(--input-bg) inset !important;
  -webkit-text-fill-color: var(--secondary) !important;
}

.form-group .form-control:focus {
  box-shadow: none;
  background-color: var(--primary);
  color: var(--secondary);
}

.long-form {
  display: flex;
  flex-direction: column;
}

.long-form .form-row {
  display: flex;
  flex-direction: row;
}

.sign-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  overflow-wrap: break-word;
}

.sign-buttons .table-button {
  height: 100%;
}

.collapseInput .form-label {
  color: var(--secondary) !important;
}

/*signed table*/
.custom-table.default .row:not(.head, .spacer, .filter) {
  background: var(--table-default);
  /*border: solid 1px var(--)*/
}

/*not signed table*/
.custom-table#signt .row:not(.head, .spacer, .filter) {
  background: var(--table-red);
}

.custom-table.signd .row:not(.head, .spacer) {
  background: var(--table-green);
}

/*form select*/
.form-select {
  color: var(--secondary);
  background-color: var(--input-bg);
  border: 1px solid var(--light-accent);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 2 12 12'%3e%3cpath fill='none' stroke='%23262626' stroke-linecap='round' stroke-linejoin='round' stroke-width='0.68' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

/*end form select*/
/*responsivnes*/
@media screen and (max-width: 1010px) {
  .custom-table .col-1 {
    min-width: 60px;
    width: fit-content;
  }
  .custom-table .col-2 {
    width: fit-content;
  }
  .custom-table .col-3 {
    width: fit-content;
  }
  .custom-table .col-4 {
    width: fit-content;
    min-width: 200px;
  }
  .custom-table .col-5 {
    width: fit-content;
  }
  .custom-table .col-6 {
    width: fit-content;
  }
  /*.col-7 {
      width: 70%;
  }
  .col-8 {
      width: 80%;
  }
  .col-9 {
      width: 90%;
  }
  .col-10 {
      width: 100%;
  }*/
  .custom-table .head.row .col {
    display: none;
  }
  .custom-table .row:not(.head, .spacer, .filter) .col {
    /*flex-wrap:wrap;*/
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 800px) {
  .custom-table .col-1 {
    min-width: 45px;
  }
  .custom-table .col-2 {
    width: fit-content;
  }
  .custom-table .col-3 {
    width: fit-content;
  }
  .custom-table .col-4 {
    width: fit-content;
  }
  .custom-table .col-5 {
    width: 80%;
  }
  .custom-table .col-6 {
    width: 80%;
  }
  .container.profil h2 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .custom-table {
    margin-left: 0;
    margin-right: 0;
  }
  .custom-table .row:not(.collapseInput, .filter) {
    flex-wrap: wrap;
  }
  .custom-table .row:not(.collapseInput, .filter) {
    padding-left: 20px;
    padding-right: 20px;
    margin: 0;
    border-radius: 0;
  }
  .pc-only {
    display: none !important;
  }
  .custom-table:not(.archive) .row:not(.collapseInput, .filter) {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .custom-table:not(.archive) .row:not(.collapseInput, .filter) .col {
    /*flex-basis: 25%;*/
  }
  /*.custom-table:not(.archive) .row:not(.collapseInput, .filter) .col:nth-child(2n+1) {
                      display: none;
                  }*/
  .custom-table:not(.archive) .row:not(.collapseInput, .filter) .col:first-child {
    /* padding-top: 12px;
                    flex-basis: 10%;*/
  }
  .custom-table:not(.archive) .row:not(.collapseInput, .filter) .col:last-child {
    /*order:-1;*/
  }
  .custom-table .head.row {
    /* display:none;*/
    /*justify-content: space-around;*/
  }
  .custom-table.archive .head.row {
    display: none;
  }
  .custom-table .sign-buttons {
    justify-content: center;
    height: 44px;
  }
  .custom-table .sign-buttons .table-button {
    margin-top: 10px;
  }
  .custom-table .collapseInput {
    width: 100%;
  }
  /*archive*/
  .custom-table.archive [data-content=table-rows] .row {
    flex-wrap: wrap;
  }
  .custom-table.archive [data-content=table-rows] .row .col {
    flex-basis: 51%;
  }
  .custom-table.archive [data-content=table-rows] .row .col:nth-child(2) {
    order: 3;
  }
  .custom-table.archive [data-content=table-rows] .row .col:nth-child(3) {
    order: 4;
  }
  .custom-table.archive [data-content=table-rows] .row .col:nth-child(4) {
    order: 1;
  }
  .custom-table .filter {
    margin-right: 0;
  }
  .custom-table .filter .col {
    width: fit-content;
    min-width: 150px;
    margin-bottom: 10px;
    margin-left: 10px;
  }
}
/*end responsivnes*/
/*custom table end*/
html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
  height: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

main, .main-container, section, .profil, #form, .tab-content, .tab-pane.active, .long-form {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.container-small {
  max-width: 650px;
}

.main-container {
  margin-bottom: 0rem;
}

@media (min-width: 1150px) {
  .main-container {
    margin-top: 0px;
  }
}
footer {
  margin-top: auto;
}
footer h4 {
  margin-top: 0;
  line-height: normal;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
thead {
  border-bottom: 1px solid var(--primary);
}

thead tr.bordered-header {
  border-bottom: 2px solid currentColor;
}

h2 {
  color: var(--secondary);
}

.field-validation-error {
  color: red;
}

.mh-100-p {
  max-height: 100px;
  overflow-y: auto;
}

.mh-500-p {
  max-height: 500px;
  overflow-y: auto;
}

.form-control::placeholder {
  opacity: 0.5;
}

footer {
  border-top: 1px solid var(--light-accent);
}

.bi-chevron-down::before {
  color: var(--secondary);
}

a[aria-expanded=true] .bi-arrow-down-circle, a[aria-expanded=true] .bi-arrows-expand {
  display: none;
}

a[aria-expanded=false] .bi-arrow-up-circle, a[aria-expanded=false] .bi-arrows-collapse {
  display: none;
}

.content-wrapper.content-wrapper-bck {
  stroke: #230078;
}

label.error {
  color: red !important;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  height: 100%;
}

/*signature pdf modal*/
.modal-dialog:not(.modal-lg) {
  width: fit-content;
  max-width: unset;
}

.modal-content {
  background-color: var(--primary);
}

@media screen and (max-width: 770px) {
  .modal-dialog {
    width: unset;
  }
}
.canvas-overlay, #canvas-p {
  position: absolute;
  left: 0px;
  top: 0px;
}

.the-canvas, #the-canvas-preview {
  border: 1px solid black;
}

.canvas-wrapper {
  max-width: 100%;
  max-height: 100%;
  justify-content: center;
  align-items: center;
  position: relative;
  display: flex;
  width: fit-content;
  padding: 0;
  transform-origin: top center;
}
.canvas-wrapper.preview {
  transform-origin: top left;
}

.the-canvas {
  max-width: 100vw;
}

/*end signature pdf modal*/
.radiobuttonlist-field .form-group-buttons {
  flex-wrap: wrap;
}

.preview-icon {
  background-image: url(../img/preview.svg);
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  display: block;
  width: 2em;
  height: 2em;
  filter: var(--filter-svg);
}

.download-icon {
  background-image: url(../img/download.svg);
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  display: block;
  width: 1.5em;
  height: 2em;
  filter: var(--filter-svg);
}

.mobile-nav-items {
  justify-content: space-between;
}

@media screen and (max-width: 1030px) {
  .doc-name-cell {
    width: 300px;
  }
}
.form-control[type=file]::file-selector-button {
  background-color: var(--input-bg) !important;
}

.clickable {
  cursor: pointer;
  padding: 0;
  width: unset;
}

/*back on Top*/
.back-on-top {
  position: fixed;
  right: 2rem;
  bottom: 4rem;
  background: var(--light-accent);
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: all 0.2s linear;
  background-image: url(../img/arrow-up.svg);
  background-repeat: no-repeat;
  background-size: 2em 2em;
  background-position: center;
  background-blend-mode: overlay;
}

.back-on-top:hover {
  transform: translate3d(0, -10px, 0);
}

/*.back-on-top::after {

    content: "";
    position: absolute;
    left: 0.8rem;
    z-index: 11;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
}*/
.back-on-top::after {
  top: 1.2rem;
  transform: rotate(45deg);
}

@media screen and (max-width: 549px) {
  .back-on-top {
    right: 1rem;
    bottom: 2rem;
  }
}
/*end back on top*/
/*loader*/
.table-loader {
  width: 100%;
  height: 100px;
  position: relative;
}

/*end loader*/
/*input drag drop*/
.file-area {
  position: relative;
  font-size: 18px;
}

.file-area #dragLabel {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  width: 100%;
  padding: 0;
  border: 2px dashed #ccc;
  border-radius: 100px;
  background-color: var(--primary);
  z-index: 2;
  text-align: center;
  transition: background 0.3s ease-in-out;
}
.file-area #dragLabel.hover {
  background-color: var(--lighter);
}
.file-area #dragLabel label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}
@media screen and (max-width: 500px) {
  .file-area #dragLabel {
    display: none;
  }
}

#dragInput {
  width: 100%;
  height: 4em;
  opacity: 0;
}

/*/*end input drag drop*/
/*pagination*/
.pagination li a {
  padding: 0.2rem 0.5rem;
  border: none;
  font-size: 1.1em;
  border-radius: 50%;
}

.pagination li a:hover, .pagination .flag {
  background-color: var(--blue);
  color: #fff;
}

.pagination li {
  padding: 0 0.3em;
}

:has(.pagination li:first-child:nth-last-child(n+6)) .pagination li,
:has(.pagination li:first-child:nth-last-child(n+6) ~ li) .pagination li {
  display: none;
}
:has(.pagination li:first-child:nth-last-child(n+6)) .pagination li:first-child, :has(.pagination li:first-child:nth-last-child(n+6)) .pagination li:has(+ li a.flag), :has(.pagination li:first-child:nth-last-child(n+6)) .pagination li:has(+ * + li a.flag),
:has(.pagination li:first-child:nth-last-child(n+6)) .pagination li:has(> a.flag), :has(.pagination li:first-child:nth-last-child(n+6)) :nth-child(-n+2 of .pagination li:has(> a.flag) ~ li), :has(.pagination li:first-child:nth-last-child(n+6)) .pagination li:last-child,
:has(.pagination li:first-child:nth-last-child(n+6) ~ li) .pagination li:first-child,
:has(.pagination li:first-child:nth-last-child(n+6) ~ li) .pagination li:has(+ li a.flag),
:has(.pagination li:first-child:nth-last-child(n+6) ~ li) .pagination li:has(+ * + li a.flag),
:has(.pagination li:first-child:nth-last-child(n+6) ~ li) .pagination li:has(> a.flag),
:has(.pagination li:first-child:nth-last-child(n+6) ~ li) :nth-child(-n+2 of .pagination li:has(> a.flag) ~ li),
:has(.pagination li:first-child:nth-last-child(n+6) ~ li) .pagination li:last-child {
  display: unset;
}
:has(.pagination li:first-child:nth-last-child(n+6)) :nth-child(2 of .pagination li:has(> a.flag) ~ li):not(:nth-last-child(2)),
:has(.pagination li:first-child:nth-last-child(n+6) ~ li) :nth-child(2 of .pagination li:has(> a.flag) ~ li):not(:nth-last-child(2)) {
  position: relative;
  /*padding-right: 1em;*/
}
:has(.pagination li:first-child:nth-last-child(n+6)) :nth-child(2 of .pagination li:has(> a.flag) ~ li):not(:nth-last-child(2)):after,
:has(.pagination li:first-child:nth-last-child(n+6) ~ li) :nth-child(2 of .pagination li:has(> a.flag) ~ li):not(:nth-last-child(2)):after {
  content: "…";
  padding-left: 0.6em;
  /*width: 1em;
  position: absolute;
  right: 0em;*/
}
:has(.pagination li:first-child:nth-last-child(n+6)) .pagination li:has(+ * + li a.flag):not(:first-child):not(:nth-child(2)),
:has(.pagination li:first-child:nth-last-child(n+6) ~ li) .pagination li:has(+ * + li a.flag):not(:first-child):not(:nth-child(2)) {
  position: relative;
  /*padding-left: 1em;*/
}
:has(.pagination li:first-child:nth-last-child(n+6)) .pagination li:has(+ * + li a.flag):not(:first-child):not(:nth-child(2)):before,
:has(.pagination li:first-child:nth-last-child(n+6) ~ li) .pagination li:has(+ * + li a.flag):not(:first-child):not(:nth-child(2)):before {
  content: "…";
  padding-right: 0.6em;
  /*width: 1em;
  position: absolute;
  left: 0em;*/
}
:has(.pagination li:first-child:nth-last-child(n+6)) .pagination li:first-child:not(.pagination li:has(+ li a.flag)):not(.pagination li:has(+ * + li a.flag)) a:not(.flag),
:has(.pagination li:first-child:nth-last-child(n+6) ~ li) .pagination li:first-child:not(.pagination li:has(+ li a.flag)):not(.pagination li:has(+ * + li a.flag)) a:not(.flag) {
  /*visibility: hidden;*/
  position: relative;
  /*&:after {
      visibility: visible;
      content: 'Prva';
      position: absolute;
      left: 0;
      top: 0;
      text-decoration: none !important;
      padding: 0.4rem 0.5rem;
      border: 1px solid #ccc;
  }

  &:hover:after {
      background-color: #333;
      color: #fff;
  }*/
}
:has(.pagination li:first-child:nth-last-child(n+6)) .pagination li:last-child:not(:nth-child(1 of .pagination li:has(> a.flag) ~ li)):not(:nth-child(2 of .pagination li:has(> a.flag) ~ li)) a:not(.flag),
:has(.pagination li:first-child:nth-last-child(n+6) ~ li) .pagination li:last-child:not(:nth-child(1 of .pagination li:has(> a.flag) ~ li)):not(:nth-child(2 of .pagination li:has(> a.flag) ~ li)) a:not(.flag) {
  /*visibility: hidden;*/
  position: relative;
  /*&:after {
      visibility: visible;
      content: 'Zadnja';
      position: absolute;
      left: 0;
      top: 0;
      text-decoration: none !important;
      padding: 0.4rem 0.5rem;
      border: 1px solid #ccc;
  }

  &:hover:after {
      background-color: #333;
      color: #fff;
  }*/
}

/*end pagionation*/
.btn-group {
  text-transform: uppercase;
}

.btn-primary:hover, .long-form .btn.btn-orange:hover {
  color: #fff;
  background-color: var(--blue);
  border-color: #1e1e1e;
}

.center-horizontal {
  text-align: center;
}

.deny-btn, .sign-btn {
  position: relative;
  box-shadow: none;
  text-align: center;
  padding: 7px 15px;
  cursor: pointer;
  border-radius: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.deny-btn {
  border: 2px solid var(--red);
  color: var(--red);
  background: transparent;
}

.deny-btn:hover {
  background-color: var(--red);
  color: #fff;
}

.sign-btn {
  color: var(--green);
  background-color: transparent;
  border: 2px solid var(--green);
}

.sign-btn:hover {
  background-color: var(--green);
  color: #fff;
}

.denied-btn {
  background: transparent;
  color: var(--red);
  position: relative;
  text-align: center;
  margin: auto 20%;
  padding: 7px 0;
  border: none;
}

.center-control {
  justify-content: center;
  align-items: center;
  display: flex;
  height: 100%;
}

.document-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}

.document-label {
  font-weight: 700;
  font-size: 1rem;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.document-svg {
  text-indent: -9999px;
  width: 18px;
  height: 24px;
  background: url(../img/icon-document.svg) no-repeat;
}

.document-delete {
  background: url(../img/icon-delete-document.svg) no-repeat;
  content: "";
  width: 15px;
  height: 24px;
  float: right;
}

.request-delete {
  background: url(../img/trash3.svg) no-repeat;
  content: "";
  width: 1.5em;
  height: 1.5em;
  background-size: 1.5em 1.5em;
}

.documents-container {
  position: relative;
  z-index: 1;
}

.doc-row {
  border-top: 1px solid var(--light-accent);
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

.documents-container .row:first-child .doc-row {
  border-top: none;
}

#documents {
  display: none;
}

label[for=documents] {
  width: 50%;
  margin: 0 25% 0 25%;
  text-align: center;
  background-color: rgba(35, 0, 120, 0.15);
  background-clip: padding-box;
  border: 1px solid rgba(35, 0, 120, 0.15);
  appearance: none;
  border-radius: 3px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.long-form {
  padding-bottom: 30px;
}

.float-right {
  float: right;
}

a {
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

a, a:hover {
  text-decoration: none !important;
}

.contacts-list {
  min-height: 7em;
  max-height: 25em;
  overflow-y: scroll;
  padding-right: 0;
  transition: linear 0.1s;
  /*border: 1px solid var(--secondary);*/
}
.contacts-list::-webkit-scrollbar {
  display: none;
}

.confirm-slider {
  position: absolute;
  top: 0;
  right: -95%;
  width: 90%;
  height: 100%;
  background: var(--primary);
  border: 1px solid var(--secondary);
  transition: linear 0.5s;
}
.confirm-slider.show {
  right: -5%;
}
.confirm-slider .row {
  justify-content: space-between;
}
.confirm-slider .row .col:first-child {
  margin: 1em;
}
.confirm-slider .row .col:last-child {
  display: flex;
  justify-content: space-around;
  padding-top: 0.3em;
}

#contactsMenuWrapper {
  max-height: 94%;
  overflow: scroll;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}
#contactsMenuWrapper::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  display: none;
}

.round {
  border-radius: 100px;
}
.round .card-body {
  padding: 12px;
}

.nav-pills .nav-link {
  background: none;
  border-top: 1px solid var(--blue);
  border-bottom: 1px solid var(--blue);
  color: var(--secondary);
  border-radius: 0;
  width: -webkit-fill-available;
}

.nav-pills .nav-item {
  flex-grow: 1;
  /*border-left: 1px solid var(--blue);*/
}

.nav-pills .nav-item:last-child {
  /*border-right: 1px solid var(--blue);*/
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: var(--primary);
  background-color: var(--blue);
}

/*progressbar*/
#form-tab {
  margin-bottom: 30px;
  overflow: hidden;
  counter-reset: step;
  text-align: center;
  position: relative;
  margin-top: 2.5em;
  z-index: 0;
  padding: 0;
  display: flex;
}
#form-tab li {
  list-style-type: none;
  color: var(--blue);
  text-transform: uppercase;
  font-size: 13px;
  width: -webkit-fill-available;
  width: -moz-available; /*forefox*/
  position: relative;
  letter-spacing: 1px;
}
#form-tab li p {
  /*padding-left:20px;
  padding-right:20px;*/
}
@media screen and (max-width: 680px) {
  #form-tab li p {
    display: none;
  }
}
#form-tab li:before {
  content: counter(step);
  counter-increment: step;
  width: 35px;
  height: 35px;
  line-height: 33px;
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--blue);
  background: white;
  border-radius: 25px;
  margin: 0 auto 10px auto;
  border: 1px solid var(--blue);
}
#form-tab li:after {
  content: "";
  width: 100%;
  height: 2px;
  background: white;
  position: absolute;
  left: -50%;
  top: 17px;
  z-index: -1;
  border-top: 1px solid var(--blue);
  border-bottom: 0px solid var(--blue);
}
#form-tab li:first-child:after {
  content: none;
}
#form-tab li.active:before {
  background: var(--blue);
  color: white;
}

.session-container-widget {
  position: fixed;
  right: 0;
  transform: translateX(100%);
  transition: linear 0.3s;
  top: 6em;
  padding: 1em;
  border: 2px solid var(--blue);
  border-left: none;
  border-right: none;
  background: white;
  z-index: 10000;
}
@media screen and (max-width: 590px) {
  .session-container-widget {
    top: 8em;
  }
}
.session-container-widget:focus {
  transform: translateX(0);
}
.session-container-widget:before {
  color: var(--blue);
  width: 20%;
  height: 2px;
  border-top-left-radius: 50px;
  border: 2px solid var(--blue);
  border-bottom-left-radius: 50px;
  border-right: none;
  position: absolute;
  left: -30%;
  top: -2px;
  height: 100%;
  box-sizing: content-box;
  align-content: center;
  padding: 0px 0px 0 10%;
  background: white;
  line-height: 3.5;
  cursor: pointer;
}

.text-normal {
  color: var(--secondary);
}

.partial-collapse {
  color: var(--secondary);
  position: relative;
}
.partial-collapse:hover {
  color: var(--secondary);
}
.partial-collapse .collapse:not(.show) {
  display: block;
  height: 1.5em;
  overflow: hidden;
  position: relative;
}
.partial-collapse .collapse:not(.show).has-overflow {
  margin-right: 1.7em;
}
.partial-collapse:has(> .collapse.has-overflow:not(.show))::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.5em;
  z-index: 1;
  width: 40%;
  content: "";
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, rgb(255, 255, 255))); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%); /* IE10+ */
  background: linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#ffffff",GradientType=1 ); /* IE6-9 */
}
.partial-collapse:has(> .collapse.has-overflow:not(.show)):after {
  content: ">>";
  width: 1.5em;
  height: 1.5em;
  position: absolute;
  right: 0em;
  bottom: 0em;
  text-align: start;
}

.partial-collapse .collapsing {
  height: 1.5em;
}

header select.form-select {
  padding: 0.5rem;
  padding-right: 2.4em;
}

nav.navbar .nav-row .nav-column .nav-li.user .dropdown-toggle {
  padding: 0.5rem;
}

nav.navbar .nav-row .nav-column .nav-left, nav.navbar .nav-row .nav-column .nav-right {
  align-items: center;
}

.custom-close-btn {
  position: absolute;
  right: 0;
  margin-right: 1em;
  z-index: 1;
}

div[data-name=document-accordion]:has(.bi-arrow-down-up) {
  border: 1px solid orange;
}

.spinner-border + a {
  display: none;
}

.spinner-border {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--blue);
}

.footer-link-row {
  justify-content: start;
  flex-direction: row;
}
.footer-link-row .footer-link {
  line-height: 1.2;
  width: auto;
  margin-top: 10px;
  border-left: none;
}
.footer-link-row .footer-link:not(:first-child) {
  border-left: 1px solid var(--blue);
}

@media (min-width: 768px) {
  .footer-link-row {
    justify-content: end;
  }
  .footer-link-row .footer-link {
    margin-top: unset;
  }
}
.nav-form-select {
  background-color: transparent;
  font-weight: normal;
  padding: 0.5rem;
  padding: 15px 0px 15px 0px;
  color: var(--secondary);
  border: none;
  display: inline-block;
  position: relative;
  vertical-align: top;
  text-decoration: none;
}
.nav-form-select:focus {
  border-color: unset;
  outline: unset;
  box-shadow: unset;
}

.jobs-sent-block {
  margin: 0;
  padding: 12px;
}

.margin-auto {
  margin: auto;
}

.text-tiny {
  font-size: 9px;
  text-align: center;
}

/*new cgp redesign*/
.spacer {
  margin-top: 1rem;
  border-bottom: 1px solid var(--light);
}

.color-blue {
  color: var(--blue);
}

.clamp-line-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.bg-light {
  background-color: var(--light);
}

.color-secondary {
  color: var(--secondary);
}

.custom-document-more-btn {
  position: absolute;
  top: 0.3em;
  right: 0.3em;
  color: var(--primary);
}
.custom-document-more-btn .dropdown-toggle::after {
  display: none;
}
.custom-document-more-btn a.dropdown-toggle {
  color: var(--secondary);
  background-color: var(--lighter);
  position: relative;
  border-radius: 50%;
  aspect-ratio: 1;
  padding: 7px 5px 5px 5px;
  filter: brightness(117%);
}
.custom-document-more-btn a.dropdown-toggle:hover {
  background-color: var(--light);
  filter: brightness(118%);
}

.widget-pdf-preview {
  margin-top: 0.5em;
}

#the-canvas {
  margin-left: 1em;
  margin-right: 1em;
}

@media (max-width: 600px) {
  #preview-modal {
    padding-right: 0 !important;
  }
  #preview-modal .modal-dialog {
    height: 100vh;
    margin: 0 auto;
  }
  #preview-modal .modal-dialog .modal-content {
    height: 100%;
  }
}
.dropdown-toggle::after {
  display: none;
}

/*.btn-primary:disabled{
    background-color: var(--blue);
    border-color: var(--blue);
    color: var(--white);
    opacity: 1;
}*/
.settings-menu {
  position: fixed;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: transparent;
  transition: all 0.2s linear;
  transform: translateX(100%);
  z-index: 1000000;
}
.settings-menu .settings-wrap {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  backdrop-filter: blur(5px);
  z-index: 1000001;
}
.settings-menu .settings {
  position: relative;
  float: right;
  height: 100%;
  width: 35%;
  border-left: solid 1px var(--primary);
  background: var(--primary);
  padding: 3rem 2rem;
  z-index: 1000001;
}
.settings-menu .settings .btn-close {
  display: block;
  width: 40px;
  height: 40px;
  float: right;
}
.settings-menu .settings .settings-list {
  list-style: none;
}
.settings-menu .settings .settings-list .col {
  min-width: 70px;
}
.settings-menu .settings .settings-list .toggle {
  position: absolute;
}

.settings-menu.show {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

@media screen and (max-width: 900px) {
  .settings-menu .settings {
    width: 100%;
  }
}
.wrapper {
  padding-top: 22px;
}

.theme-checkbox {
  opacity: 0;
  height: 0;
  width: 0;
}

.toggle {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: 50px; /* Adjusted width */
  height: 25px; /* Adjusted height */
  background: #211042;
  border-radius: 12.5px; /* Adjusted border radius */
  transition: 500ms;
  overflow: hidden;
}

.toggle-button {
  position: absolute;
  display: inline-block;
  top: 2px; /* Adjusted top position */
  left: 2px; /* Adjusted left position */
  width: 21px; /* Adjusted width */
  height: 21px; /* Adjusted height */
  border-radius: 50%;
  background: #FAEAF1;
  overflow: hidden;
  box-shadow: 0 0 8.75px 1px rgb(255, 255, 255);
  transition: all 500ms ease-out;
}

.crater {
  position: absolute;
  display: inline-block;
  background: #FAEAF1;
  border-radius: 50%;
  transition: 500ms;
}

.crater-1 {
  background: #FFFFF9;
  width: 21px; /* Adjusted width */
  height: 21px; /* Adjusted height */
  left: 5px; /* Adjusted left position */
  bottom: 5px; /* Adjusted bottom position */
}

.crater-2 {
  width: 5px; /* Adjusted width */
  height: 5px; /* Adjusted height */
  top: -1.75px; /* Adjusted top position */
  left: 11px; /* Adjusted left position */
}

.crater-3 {
  width: 4px; /* Adjusted width */
  height: 4px; /* Adjusted height */
  top: 5px; /* Adjusted top position */
  right: -1px; /* Adjusted right position */
}

.crater-4 {
  width: 2.5px; /* Adjusted width */
  height: 2.5px; /* Adjusted height */
  top: 6px; /* Adjusted top position */
  left: 7.5px; /* Adjusted left position */
}

.crater-5 {
  width: 3.75px; /* Adjusted width */
  height: 3.75px; /* Adjusted height */
  top: 10px; /* Adjusted top position */
  left: 12px; /* Adjusted left position */
}

.crater-6 {
  width: 2.5px; /* Adjusted width */
  height: 2.5px; /* Adjusted height */
  top: 12px; /* Adjusted top position */
  left: 5px; /* Adjusted left position */
}

.crater-7 {
  width: 3px; /* Adjusted width */
  height: 3px; /* Adjusted height */
  bottom: 1.25px; /* Adjusted bottom position */
  left: 8.75px; /* Adjusted left position */
}

.star {
  position: absolute;
  display: inline-block;
  border-radius: 50%;
  background: #FFF;
  box-shadow: 0.5px 0 1px 1px rgb(255, 255, 255);
}

.star-1 {
  width: 1.5px; /* Adjusted width */
  height: 1.5px; /* Adjusted height */
  right: 22.5px; /* Adjusted right position */
  bottom: 10px; /* Adjusted bottom position */
}

.star-2 {
  width: 2px; /* Adjusted width */
  height: 2px; /* Adjusted height */
  right: 17.5px; /* Adjusted right position */
  top: 2.5px; /* Adjusted top position */
}

.star-3 {
  width: 1.25px; /* Adjusted width */
  height: 1.25px; /* Adjusted height */
  right: 15px; /* Adjusted right position */
  bottom: 3.75px; /* Adjusted bottom position */
}

.star-4 {
  width: 0.75px; /* Adjusted width */
  height: 0.75px; /* Adjusted height */
  right: 10px; /* Adjusted right position */
  bottom: 12.5px; /* Adjusted bottom position */
}

.star-5 {
  width: 1px; /* Adjusted width */
  height: 1px; /* Adjusted height */
  right: 2.5px; /* Adjusted right position */
  bottom: 8.75px; /* Adjusted bottom position */
}

.star-6, .star-7, .star-8 {
  width: 2.5px; /* Adjusted width */
  height: 0.5px; /* Adjusted height */
  border-radius: 0.5px; /* Adjusted border radius */
  transform: rotate(-45deg);
  box-shadow: 1.25px 0px 1px 0.25px #FFF;
  animation-name: travel;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.star-6 {
  right: 7.5px; /* Adjusted right position */
  bottom: 7.5px; /* Adjusted bottom position */
  animation-delay: -2s;
}

.star-7 {
  right: 12.5px; /* Adjusted right position */
  bottom: 15px; /* Adjusted bottom position */
}

.star-8 {
  right: 22.5px; /* Adjusted right position */
  top: 2.5px; /* Adjusted top position */
  animation-delay: -4s;
}

@keyframes travel {
  0% {
    transform: rotate(-45deg) translateX(17.5px); /* Adjusted translation */
  }
  50% {
    transform: rotate(-45deg) translateX(-5px); /* Adjusted translation */
    box-shadow: 1.25px 0px 1.5px 0.25px #FFF; /* Adjusted box shadow */
  }
  100% {
    transform: rotate(-45deg) translateX(-7.5px); /* Adjusted translation */
  }
}
.theme-checkbox:checked + .toggle {
  background: #24D7F7;
}

.theme-checkbox:checked + .toggle .toggle-button {
  background: #F7FFFF;
  transform: translateX(25.5px); /* Adjusted value */
  box-shadow: 0 0 8.75px 1.25px rgb(255, 255, 255); /* Adjusted box shadow */
}

.theme-checkbox:checked + .toggle .toggle-button .crater {
  transform: rotate(-45deg) translateX(17.5px); /* Adjusted value */
}

.theme-checkbox:checked + .toggle .star {
  animation: move 2s infinite;
  transform: none;
  box-shadow: none;
}

.theme-checkbox:checked + .toggle .star-1 {
  width: 10px; /* Adjusted value */
  height: 2.5px; /* Adjusted value */
  border-radius: 2.5px; /* Adjusted value */
  background: #FFF;
  left: 5px; /* Adjusted value */
  top: 6.25px; /* Adjusted value */
  box-shadow: none;
}

.theme-checkbox:checked + .toggle .star-2 {
  width: 3px; /* Adjusted value */
  height: 3px; /* Adjusted value */
  background: #FFF;
  left: 6.5px; /* Adjusted value */
  top: 5.75px; /* Adjusted value */
  box-shadow: -0.25px 0 0.5px 0 rgba(0, 0, 0, 0.1); /* Adjusted box shadow */
}

.theme-checkbox:checked + .toggle .star-3 {
  width: 4px; /* Adjusted value */
  height: 4px; /* Adjusted value */
  background: #FFF;
  left: 8.75px; /* Adjusted value */
  top: 4.75px; /* Adjusted value */
  box-shadow: -0.25px 0 0.5px 0 rgba(0, 0, 0, 0.1); /* Adjusted box shadow */
}

.theme-checkbox:checked + .toggle .star-4 {
  width: 3.5px; /* Adjusted value */
  height: 3.5px; /* Adjusted value */
  background: #FFF;
  left: 11.5px; /* Adjusted value */
  top: 5.25px; /* Adjusted value */
  box-shadow: -0.25px 0 0.5px 0 rgba(0, 0, 0, 0.1); /* Adjusted box shadow */
}

.theme-checkbox:checked + .toggle .star-5 {
  width: 15px; /* Adjusted value */
  height: 3.75px; /* Adjusted value */
  border-radius: 3.75px; /* Adjusted value */
  background: #FFF;
  left: 7.5px; /* Adjusted value */
  bottom: 5px; /* Adjusted value */
  box-shadow: none;
}

.theme-checkbox:checked + .toggle .star-6 {
  width: 4.5px; /* Adjusted value */
  height: 4.5px; /* Adjusted value */
  background: #FFF;
  border-radius: 50%;
  left: 9.5px; /* Adjusted value */
  bottom: 5px; /* Adjusted value */
  box-shadow: -0.25px 0 0.5px 0 rgba(0, 0, 0, 0.1); /* Adjusted box shadow */
}

.theme-checkbox:checked + .toggle .star-7 {
  width: 6px; /* Adjusted value */
  height: 6px; /* Adjusted value */
  background: #FFF;
  border-radius: 50%;
  left: 13px; /* Adjusted value */
  bottom: 5px; /* Adjusted value */
  box-shadow: -0.25px 0 0.5px 0 rgba(0, 0, 0, 0.1); /* Adjusted box shadow */
}

.theme-checkbox:checked + .toggle .star-8 {
  width: 5.25px; /* Adjusted value */
  height: 5.25px; /* Adjusted value */
  background: #FFF;
  border-radius: 50%;
  left: 17.5px; /* Adjusted value */
  top: 14.75px; /* Adjusted value */
  box-shadow: -0.25px 0 0.5px 0 rgba(0, 0, 0, 0.1); /* Adjusted box shadow */
}

@keyframes move {
  0% {
    transform: none;
  }
  25% {
    transform: translateX(0.5px); /* Adjusted value */
  }
  100% {
    transform: translateX(-0.5px); /* Adjusted value */
  }
}
#status-bar-widget {
  position: fixed;
  top: 0%;
  z-index: 99999991;
  right: 0%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  /*transform: translateX(-50%);*/
}
#status-bar-widget .u-italic {
  font-style: italic;
}
#status-bar-widget .Message {
  display: table;
  position: relative;
  margin: 25px 0 0;
  width: auto;
  background-color: #0074d9;
  color: #fff;
  transition: all 0.2s ease;
  max-width: 50vw;
}
#status-bar-widget .Message.is-hidden {
  opacity: 0;
  height: 0;
  font-size: 0;
  padding: 0;
  margin: 0 auto;
  display: block;
}
#status-bar-widget .Message--orange {
  background-color: #f39c12;
}
#status-bar-widget .Message--red {
  background-color: #ff4136;
}
#status-bar-widget .Message--green {
  background-color: #2ecc40;
}
#status-bar-widget .Message-icon {
  display: table-cell;
  vertical-align: middle;
  width: 60px;
  padding: 30px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.25);
}
#status-bar-widget .Message-icon > i {
  width: 20px;
  font-size: 20px;
}
#status-bar-widget .Message-body {
  display: table-cell;
  vertical-align: middle;
  padding: 20px 20px 20px 10px;
}
#status-bar-widget .Message-body > p {
  line-height: 1.2;
  margin-top: 6px;
}
#status-bar-widget .Message-button {
  position: relative;
  margin: 15px 5px -10px;
  background-color: rgba(0, 0, 0, 0.25);
  box-shadow: 0 3px rgba(0, 0, 0, 0.4);
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  color: #fff;
  outline: none;
  cursor: pointer;
}
#status-bar-widget .Message-button:hover {
  background: rgba(0, 0, 0, 0.3);
}
#status-bar-widget .Message-button:active {
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0px rgba(0, 0, 0, 0.4);
  top: 3px;
}
#status-bar-widget .Message-close {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: none;
  outline: none;
  font-size: 20px;
  right: 5px;
  top: 5px;
  opacity: 0;
  cursor: pointer;
}
#status-bar-widget .Message-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#status-bar-widget .Message:hover .Message-close {
  opacity: 1;
}

@media screen and (max-width: 500px) {
  #status-bar-widget {
    bottom: 0;
    left: 50%;
    top: unset;
    right: unset;
    transform: translateX(-50%);
  }
  #status-bar-widget .Message {
    width: 500px;
  }
}
.large-padding-modal {
  padding: 2em 2em 4em 2em;
}

#loader {
  z-index: 1000000000000000000;
}
#loader .overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.01);
  top: 0px;
  left: 0px;
}
#loader .load {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background-color: transparent;
}
#loader .load .line {
  background-color: #90cbcb;
  height: 1px;
  width: 200px;
  position: absolute;
  top: 50%;
  animation: drawin 7s infinite;
}
#loader .load .wind {
  background-color: white;
  width: 5px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 98px;
  left: 100px;
  border-radius: 50%;
  animation: wind 7s infinite;
}
#loader .load .wind.two {
  animation-delay: 4ms;
}
#loader .load .wind.three {
  animation-delay: 8ms;
}
#loader .load .wind.four {
  animation-delay: 12ms;
}
#loader .load .wind.five {
  animation-delay: 16ms;
}
#loader .load .wind.six {
  animation-delay: 20ms;
}
#loader .load .wind.seven {
  animation-delay: 24ms;
}
#loader .load .wind.eight {
  animation-delay: 28ms;
}
#loader .load .wind.nine {
  animation-delay: 32ms;
}
#loader .load .wind.ten {
  animation-delay: 36ms;
}
#loader .load .wind.eleven {
  animation-delay: 40ms;
}
#loader .load .wind.twelve {
  animation-delay: 44ms;
}
#loader .load .wind.thirteen {
  animation-delay: 48ms;
}
#loader .load .wind.fourteen {
  animation-delay: 52ms;
}
#loader .load .wind.fifteen {
  animation-delay: 56ms;
}
#loader .load .wind.sixteen {
  animation-delay: 60ms;
}
#loader .load .wind.seventeen {
  animation-delay: 64ms;
}
#loader .load .wind.eighteen {
  animation-delay: 68ms;
}
#loader .load .wind.nineteen {
  animation-delay: 72ms;
}
#loader .load .wind.twenty {
  animation-delay: 76ms;
}
#loader .load .block1 {
  background-color: #97ddda;
  height: 30px;
  aspect-ratio: 1/1;
  transform: rotate(45deg);
  position: absolute;
  top: 85px;
  left: 55px;
  animation: movein1 7s infinite;
}
#loader .load .block2 {
  background-color: var(--blue);
  height: 40px;
  aspect-ratio: 1/1;
  transform: rotate(45deg);
  position: absolute;
  top: 80px;
  left: 80px;
  z-index: 1;
  animation: main 7s infinite;
}
#loader .load .block3 {
  background-color: #97ddda;
  height: 30px;
  aspect-ratio: 1/1;
  transform: rotate(45deg);
  position: absolute;
  top: 85px;
  left: 115px;
  animation: movein2 7s infinite;
}

@keyframes drawin {
  0% {
    left: 0;
    width: 200px;
  }
  5% {
    left: 0;
    width: 200px;
  }
  25% {
    left: 100px;
    width: 0px;
  }
  75% {
    left: 100px;
    width: 0px;
  }
  95% {
    left: 0;
    width: 200px;
  }
  100% {
    left: 0;
    width: 200px;
  }
}
@keyframes movein1 {
  0% {
    left: 55px;
  }
  5% {
    left: 55px;
  }
  25% {
    left: 85px;
  }
  75% {
    left: 85px;
  }
  95% {
    left: 55px;
  }
  100% {
    left: 55px;
  }
}
@keyframes movein2 {
  0% {
    left: 115px;
  }
  5% {
    left: 115px;
  }
  25% {
    left: 85px;
  }
  75% {
    left: 85px;
  }
  95% {
    left: 115px;
  }
  100% {
    left: 115px;
  }
}
@keyframes wind {
  0% {
    transform: rotate(0deg) translateX(40px) rotate(0deg);
    opacity: 0;
  }
  20% {
    transform: rotate(0deg) translateX(40px) rotate(0deg);
  }
  30% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  80% {
    transform: rotate(1500deg) translateX(70px) rotate(1500deg);
  }
  100% {
    transform: rotate(1500deg) translateX(70px) rotate(1500deg);
    opacity: 0;
  }
}
@keyframes main {
  0% {
    transform: rotate(45deg);
  }
  25% {
    transform: rotate(45deg);
    height: 40px;
    left: 80px;
    top: 80px;
  }
  50% {
    height: 60px;
    left: 70px;
    top: 70px;
  }
  75% {
    transform: rotate(765deg);
    height: 40px;
    left: 80px;
    top: 80px;
  }
  100% {
    transform: rotate(765deg);
  }
}
.custom-progress-bar {
  overflow: hidden;
  counter-reset: step;
  text-align: center;
  position: relative;
  z-index: 0;
  width: auto;
  align-content: center;
}
.custom-progress-bar i {
  list-style-type: none;
  color: var(--blue);
  text-transform: uppercase;
  font-size: 9px;
  width: 40px;
  float: left;
  position: relative;
  letter-spacing: 1px;
}
.custom-progress-bar i:before {
  content: "";
  counter-increment: step;
  width: 24px;
  height: 24px;
  line-height: 22px;
  display: block;
  font-size: 12px;
  color: var(--blue);
  background: white;
  border-radius: 25px;
  border: 1px solid var(--blue);
}
.custom-progress-bar i:after {
  content: "";
  width: 100%;
  height: 2px;
  background: white;
  position: absolute;
  left: -50%;
  top: 11px;
  z-index: -1;
  border-top: 1px solid var(--blue);
  border-bottom: 1px solid var(--blue);
}
.custom-progress-bar i:first-child:after {
  content: none;
}
.custom-progress-bar i.active:before, .custom-progress-bar i.active:after {
  background: var(--blue);
  color: white;
}

body {
  /* font-family: var(--bs-body-font-family);
      --bs-body-font-family: var(--bs-font-sans-serif);
      --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  */
}

h2 {
  font-size: calc(1.325rem + 0.9vw);
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

nav.navbar {
  border-bottom: none;
  background-color: var(--footer-bg);
}

nav.navbar .nav-row .nav-column {
  min-height: 71px;
}
nav.navbar .nav-row .nav-column .navbar-brand img {
  max-width: 200px;
  height: auto;
  min-width: 55px;
  width: 145px;
}

nav.navbar.nav-mobile {
  background-color: var(--footer-bg);
  border-bottom: none;
  max-width: 100vw;
}
nav.navbar.nav-mobile .logo {
  width: 145px;
}
nav.navbar.nav-mobile .mobile-nav-items {
  min-height: 71px;
}

nav.navbar .nav-row .nav-column .navmenu.products {
  text-transform: none;
}
nav.navbar .nav-row .nav-column .navmenu.products .navlink {
  font-size: 1rem;
  font-weight: normal;
  color: #285B9E;
  border-bottom: none;
  padding-top: 5px;
  padding-bottom: 5px;
}
nav.navbar .nav-row .nav-column .navmenu.products .navlink.active {
  border-bottom: 1px solid var(--blue);
}
nav.navbar .nav-row .nav-column .navmenu.products .navlink:hover {
  border-bottom: 1px solid var(--blue);
}

nav.navbar .nav-row .nav-column .nav-li.user .dropdown-toggle {
  font-weight: normal;
}

.mobile-nav-menu.show, .mobile-nav-menu {
  max-width: 70vw;
}

.mobile-nav-menu.show {
  box-shadow: 5px -2px 30vw 14px;
}

nav.navbar.nav-mobile .nav-mobile-burger.opened span:not(:first-of-type):not(:last-of-type) {
  opacity: 0;
}

nav.navbar.nav-mobile .nav-mobile-burger span {
  transition: cubic-bezier(0.18, 0.89, 0.32, 1.28) 0.3s;
}

nav.navbar.nav-mobile .nav-mobile-burger.opened span:first-of-type {
  opacity: 1;
  transform: skewY(30deg);
  position: absolute;
  top: 42%;
}

nav.navbar.nav-mobile .nav-mobile-burger.opened span:last-of-type {
  opacity: 1;
  transform: skewY(-30deg);
  position: absolute;
  bottom: 42%;
}

.positioning-bar {
  height: 100vh;
  position: fixed;
  pointer-events: none;
}

#left-inner-threshold {
  width: 10vw;
  left: 0;
}

#right-inner-threshold {
  width: 30vw;
  right: 0;
}

#left-outer-threshold {
  width: 13vw;
  left: 0;
}

#right-outer-threshold {
  width: 33vw;
  right: 0;
}

.dropdown-menu {
  font-size: 1rem;
}

.document-form:only-child .document-form-inputs {
  border-top: none;
}

.form-control {
  border-top: none;
  border-left: none;
  border-right: none;
  height: auto !important;
  padding: 0.375rem 0.375rem 0.375rem 0 !important;
}
.form-control:hover {
  border-color: var(--blue);
}
.form-control:focus {
  outline: 0;
  box-shadow: none !important;
}

:root {
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #224e88;
  --bs-btn-hover-border-color: #224e88;
}

.btn {
  font-weight: normal;
  padding: 12px 40px;
  border-radius: 100px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-size: 15px;
}

.btn-primary {
  color: var(--white);
  background-color: var(--blue);
  border-color: var(--blue);
}
.btn-primary:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}

.btn-outline-primary {
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-primary:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}

.btn-prijava {
  width: 200px;
  margin-top: 50px;
}
@media (min-width: 576px) {
  .btn-prijava {
    width: 300px;
  }
}

.footer {
  color: var(--blue);
  background-color: var(--footer-bg);
  border-top: none;
}
.footer .footer-logo {
  max-width: 250px;
}
.footer .footer-logo.main-logo {
  width: 160px;
}
.footer .copyright {
  font-size: 12px;
  text-align: left;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .footer .copyright {
    text-align: right;
    margin-top: 0;
  }
}

.mobile-text-center {
  text-align: center;
}
@media (min-width: 576px) {
  .mobile-text-center {
    text-align: left;
  }
}

.loader-overlay {
  background: rgba(34, 34, 34, 0.4);
}
