/* Custom CSS*/

:root {
    --color-secondary: #e97132;
}

.text-orange {
  color: var(--color-secondary) !important;
}

/*SEZNAMY*/
/*Seznam klasický v textu*/
ul.seznam, ul.seznam ul {
    list-style: none;
}

.seznam li {
    position: relative;
}

.seznam li:before {
    position: absolute;
    content: "-";
    left: -1em;
}
/*Seznam xdiamonds*/
ul.seznam-xdiamond, ul.seznam-xdiamond ul, ul.seznam-chevron-right, ul.seznam-chevron-right ul,
ul.seznam-chat-right, ul.seznam-chat-right ul, ul.seznam-arrow-right, ul.seznam-arrow-right ul, ul.seznam-arrow-right-square, ul.seznam-arrow-right-square ul, ul.seznam-bookmark, ul.seznam-bookmark ul{
    list-style: none;
}

.seznam-xdiamond li, .seznam-chevron-right li, .seznam-chat-right li, .seznam-arrow-right li, .seznam-arrow-right-square li, .seznam-bookmark li  {
    position: relative;
}

.seznam-xdiamond li:before {
  content: "\F624";
  font-family: bootstrap-icons !important;
  left: -1.7em;
  /*display: inline-block;
  margin: 0 1em 0 -2rem;
  line-height: 2;*/
  font-size: 100%;
  position: absolute;
}

.seznam-chevron-right li:before {
  content: "\F285";
  font-family: bootstrap-icons !important;
  left: -1.7em;
  /*display: inline-block;
  margin: 0 1em 0 -2rem;
  line-height: 2;*/
  font-size: 100%;
  position: absolute;
}

.seznam-chat-right li:before {
  content: "\F25C";
  font-family: bootstrap-icons !important;
  left: -1.7em;
  /*display: inline-block;
  margin: 0 1em 0 -2rem;
  line-height: 2;*/
  font-size: 100%;
  position: absolute;
}

.seznam-arrow-right li:before {
  content: "\F133";
  font-family: bootstrap-icons !important;
  left: -1.7em;
  /*display: inline-block;
  margin: 0 1em 0 -2rem;
  line-height: 2;*/
  font-size: 100%;
  position: absolute;
}

.seznam-arrow-right-square li:before {
  content: "\F137";
  font-family: bootstrap-icons !important;
  left: -1.7em;
  /*display: inline-block;
  margin: 0 1em 0 -2rem;
  line-height: 2;*/
  font-size: 100%;
  position: absolute;
}

.seznam-bookmark li:before {
  content: "\F199";
  font-family: bootstrap-icons !important;
  left: -1.7em;
  /*display: inline-block;
  margin: 0 1em 0 -2rem;
  line-height: 2;*/
  font-size: 100%;
  position: absolute;
}

/*Seznam Zdroje*/
ul.zdroje {
    list-style: none;
    /*padding-left: 0 !important;*/
    position: relative;
}
.zdroje li {
    /*text-indent: 2%;*/
    padding-bottom: 0.7rem;
}
.zdroje li:before {
content: "\F624";
    font-family: bootstrap-icons !important;
    left: 1em;
    /*display: inline-block;
    margin: 0 1em 0 -2rem;
    line-height: 2;*/
    font-size: 100%;
    position: absolute;
}

/*Button type*/
.btn-outline-orange {
    border-color: var(--color-secondary) !important;
    color: black;
}

.btn-outline-dash {
    border: 1px dashed;
}

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

.btn-databaze {
  display: inline-block;
  font-weight: 400;
  color: var(--body-text-color);
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
  padding: 1rem 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

/*Width*/
.full-width {
    width: 100%;
}

/*Background*/
.bg-gray {
    background-color: var(--color-light) !important;
}

/*Accordion*/
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  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, border-radius 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: var(--color-secondary);
  background-color: var(--color-light);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  border-color: var(--color-secondary);
  outline: 0;
  /*box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);*/
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.accordion-item:first-of-type {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.accordion-body {
  padding: 1rem 1.25rem;
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}
.accordion {
    padding: 0.5rem 0rem;
}
/* Menu Custoom style*/
.t4-navbar .navbar {
    text-transform: uppercase;
}

.t4-navbar .navbar a {
    text-decoration: none;
}
.navbar-brand.logo-control img.logo-img {
    max-width: 209px;
}
/*Link*/
a {
    text-decoration: underline;
}
/*Rotace textu*/
.otocit90 {
  transform: rotate(180deg); 
  -webkit-transform: rotate(180deg); 
  writing-mode: vertical-rl;
}
/*Tabulka - DATABÁZE*/
.table-databaze {
  text-align: center;
  vertical-align: middle;
  padding: 0.5rem 0.3rem;
  font-size: 0.9rem;
}
.border-bottom-dashed {
  border-bottom: 2px dashed black;
}
.border-left-dashed {
  border-left: 2px dashed black;
}
.table-databaze a {
  text-decoration: none;
}
/*Softwarovy nostroj*/
.sona {
  width: 100%;
  border: 2px dotted #000;
  padding: 15px 25px;
  margin-bottom: 0.5rem;
}
.sona .step-with-image {
  margin-bottom: 1rem;
  border: 1px solid #000;
  border-radius: 0.75rem;
}
.step-with-image .image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 10%;
  flex: 0 0 10%;
  max-width: 10%;
  position:relative;
  width: 100%;
  padding:0;
  text-align: center;
}

.sona .step-with-image .image img {
  max-width: 80px;
  padding:0;
}


.sona .step-with-image .text {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 90%;
  flex: 0 0 90%;
  max-width: 90%;
  position:relative;
  width: 100%;
  padding:0.2rem 0.2rem;
}

.title-step{
  position: relative;
  padding: 0.5rem 0.5rem;
  margin-bottom: 0.5rem;
  background-color: #FFE6CC;
  border-color: #D79B00;
  border-radius: 0.5rem;
  border: 1px solid;
}