@charset "UTF-8";
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
@font-face {
  font-family: RobotoRegular;
  src: url(/fonts/Roboto/Roboto-Regular.ttf);
}
@font-face {
  font-family: RobotoBold;
  src: url(/fonts/Roboto/Roboto-Bold.ttf);
}
html {
  --main-color: #fe0032;
  --dark-color: #000;
  --secondary-color: #7b7b7b;
  --info-color: #2196F3;
  --success-color: #4CAF50;
  --warning-color: #FFC107;
  --blank-color: #fff;
  --light-blue-color: #17a2b8;
  color: #000;
  font-size: 1em;
  line-height: 1.4;
  font-family: "RobotoRegular", serif;
  background-color: var(--blank-color);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 1160px;
  max-width: 100%;
  margin: auto;
  padding: 50px 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

h1, h2.main-title {
  text-align: center;
  font-size: 2em;
  margin: 0.67em 0 1em 0;
}

h2 {
  margin: 0;
}

textarea {
  resize: none;
}

.header-menu {
  width: 100%;
  position: absolute;
  padding: 0 10px;
  top: 10px;
}

.header-menu .menu-link, .header-menu .backward-link, .action-links .menu-link, .action-links .backward-link {
  color: #9A9A9A;
}
.header-menu .menu-link.active, .header-menu .backward-link.active, .action-links .menu-link.active, .action-links .backward-link.active {
  color: #000;
}
.header-menu .menu-link:hover, .header-menu .backward-link:hover, .action-links .menu-link:hover, .action-links .backward-link:hover {
  color: #000;
}

.menu-link__right {
  float: right;
  padding-left: 24px;
}
.menu-link__left {
  float: left;
  padding-right: 24px;
}

.menu-link, .backward-link, .forward-link {
  display: inline-block;
}

.backward-link, .forward-link {
  padding-left: 24px;
}

.menu-link:hover, .backward-link:hover, .forward-link:hover {
  text-decoration: none;
}

.backward-link:before, .forward-link:after {
  display: block;
  width: 20px;
  height: 20px;
  content: "";
  background-size: contain;
  position: absolute;
  top: 1px;
}

.backward-link:before {
  background-image: url(/img/chevron-right-black.svg);
  left: 0;
}

.forward-link:after {
  background-image: url(/img/chevron-right-forward.svg);
  right: 0;
}

.signpost {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 35px;
  margin: 20px 0 50px 0;
}

.post {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
  padding: 10px 70px 30px 30px;
  background: black;
  color: #fff;
  align-items: flex-start;
  border-radius: 5px;
  flex: 0 1 50%;
  text-align: left;
}

.post--first {
  background: url(/img/girl_hp.jpg) right;
  background-size: cover;
  background-position: bottom;
}

.post--second {
  background: url(/img/company.jpg) right;
  background-size: cover;
  background-position: bottom;
}

.post--both {
  background: url(/img/company.jpg) left, url(/img/girl_hp.jpg) right;
  background-repeat: no-repeat, repeat-x;
  background-size: 50%, 50%;
  background-attachment: fixed;
}

.btn {
  display: block;
  padding: 9px 15px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 3px;
  text-transform: uppercase;
  text-align: center;
  border: none;
}

.btn:hover {
  opacity: 0.5;
}

.btn--invisible {
  opacity: 0;
}

.btn--disabled {
  background-color: #DDDDDD;
  position: relative;
  cursor: not-allowed;
}

.btn--disabled:hover {
  opacity: 1;
}

.btn--disabled:hover::before {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  padding: 5px 8px;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 10000;
  font-size: 12px;
  margin-bottom: 5px;
}

.btn--disabled[title=""]:hover::before,
.btn--disabled:not([title]):hover::before {
  display: none;
}

.btn--login {
  font-size: 18px;
  padding: 10px 20px;
}

.btn--success {
  background-color: var(--success-color);
  color: #fff;
}

.btn--primary {
  background-color: var(--info-color);
  color: #fff;
}

.btn--warning {
  background-color: var(--warning-color);
  color: #fff;
}

.btn--light {
  background-color: var(--blank-color);
  border: 1px solid rgba(0, 0, 0, 0.16);
  color: #000;
}

.btn--info {
  background-color: var(--light-blue-color);
  color: #fff;
}

.btn-outline {
  display: block;
  border-radius: 3px;
  text-transform: uppercase;
  text-align: center;
  color: #000;
}
.btn-outline--success {
  border: 1px solid var(--success-color);
}
.btn-outline--warning {
  border: 1px solid var(--warning-color);
}

.text-muted {
  color: #6c757d !important;
}

.form-title {
  width: 100%;
}

.main-form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 0;
}

.table-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: stretch;
  margin-bottom: 10px;
  gap: 20px;
}

.registration-form {
  width: 100%;
}

.form-row {
  width: 100%;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.form-row > * {
  flex: 1;
}

.flex-column {
  flex-direction: column;
}

.label-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.registration-form input:not([type=checkbox]) {
  width: 100%;
}

.registration-form input {
  padding: 15px;
  flex: 1;
}

.registration-form select {
  padding: 15px;
  flex: 1;
  width: 100%;
}

.registration-form label {
  margin-right: 15px;
}

.registration-form .language-container label.custom-checkbox {
  margin-right: 95px;
}

.registration-form .opening-row label.custom-checkbox {
  margin-right: 0;
  margin-left: 15px;
}

.form-group input {
  margin-bottom: 10px;
}

.main-form input {
  width: 49%;
  padding: 15px 15px;
}

.main-form select {
  width: 49%;
  padding: 15px 15px;
}

.main-form input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.main-form input[type=button][disabled] {
  cursor: not-allowed;
}

.registration-form input[type=submit],
.main-form input[type=submit] {
  border: none;
  cursor: pointer;
  font-size: 18px;
}

.main-form button {
  border: none;
  cursor: pointer;
}

.dropdown-menu {
  display: none;
}

.dropdown-menu a {
  color: black;
  padding: 0.2rem;
}

.dropdown-menu a:hover {
  background-color: whitesmoke;
}

.dropdown-menu.show {
  display: flex;
  flex-direction: column;
  border: 1px solid rgb(118, 118, 118) !important;
  position: absolute;
  z-index: 1100;
  background-color: white;
}

.form-block {
  margin: auto;
}

.form-block label {
  position: relative;
  top: -4px;
}

.body-content {
  display: flex;
  align-items: stretch;
  width: 100%;
  flex-wrap: wrap;
}

.content-image {
  width: 165px;
  height: 220px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: hidden;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
}
.content-image.bordered {
  border: 2px solid var(--secondary-color);
}
.content-image.active {
  border: 2px solid var(--info-color);
}

.content-image--empty {
  border: 1px solid black;
  cursor: pointer;
  color: #4663AC;
  justify-content: center;
  position: relative;
}

.content-image--empty-disabled {
  cursor: default;
}

.table-cols .content-image {
  flex-direction: row;
  overflow: clip;
}

.table-cols .content-image img {
  width: 100%;
}

.content-image img {
  max-width: 100%;
}

.content-buttons {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.buttons-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-label {
  display: block;
  width: 100%;
  text-align: center;
  padding: 5px;
}

.service-container {
  margin-top: 15px;
  padding-bottom: 15px;
  flex-wrap: wrap;
  flex-basis: 33%;
  display: flex;
  justify-content: flex-start;
}

.service-container label.custom-checkbox {
  width: 20%;
}

label.custom-checkbox {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-top: 15px;
}

input[type=checkbox] {
  width: 24px;
  height: 24px;
  max-width: 24px;
}

.image-label--active {
  background-color: #cefad0;
}

.image-label--inactive {
  background-color: #DDDDDD;
}

.gallery-photo-template {
  position: relative;
}

.image-badges-container {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
  align-items: flex-end;
}

.image-badge {
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
  text-transform: uppercase;
  display: inline-block;
  width: auto;
}

.image-badge--blue {
  background-color: rgba(0, 123, 255, 0.8); /* Modrý odstín s průhledností */
  color: white;
}

.image-badge--red {
  background-color: rgba(255, 45, 85, 0.8);
  color: white;
}

.image-badge--purple {
  background-color: rgba(153, 50, 204, 0.8);
  color: white;
}

.body-navigation {
  width: 100%;
  display: flex;
  background-color: #9A9A9A;
  margin-bottom: 30px;
}

.item {
  padding: 0px;
  height: 60px;
  border-right: 2px solid white;
  flex: 1;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.body-navigation .item a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  color: white;
}

.body-navigation .item:not(.item--active):hover {
  background-color: rgba(48, 104, 68, 0.4784313725);
}

.body-navigation.body-navigation--link {
  background-color: unset;
}

.body-navigation.body-navigation--link .item {
  text-align: right;
}

.body-navigation.body-navigation--link .item a {
  color: #000;
}

.body-navigation.body-navigation--link .item a {
  background-color: unset;
  display: inline-block;
  text-decoration: underline;
}

.body-navigation.body-navigation--link .item a:hover {
  text-decoration: none;
}

.body-navigation--link .item:hover {
  background-color: unset !important;
}

.item--active {
  background-color: #306844;
}

.w-100 {
  width: 100%;
}

.w-25 {
  width: 25%;
}

.content-table {
  flex: 1 0 20%;
}

.content-table--wide {
  flex-grow: 7;
}

.table-row {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}
.table-row.table-row--between {
  justify-content: space-between;
  align-items: flex-start;
}
.table-row.table-row--between .statistics-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}

.table-row-even {
  background-color: #F7F7F7;
}

.table-row-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.view-type-icon {
  width: 20px;
  height: 20px;
}

.view-type-icon--disabled {
  opacity: 0.5;
}

.m-0 {
  margin: 0 !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.p-1 {
  padding: 1rem !important;
}

.px-1 {
  padding: 0 1rem !important;
}

.py-1 {
  padding: 1rem 0 !important;
}

.p-2 {
  padding: 2rem !important;
}

.p-3 {
  padding: 3rem !important;
}

.px-3 {
  padding: 10px 3rem !important;
}

.mb-0 {
  padding-bottom: 0 !important;
}

.d-flex {
  display: flex !important;
}

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

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

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

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

.table-cols {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}

.table-label {
  width: 170px;
  flex-shrink: 1;
  font-weight: 600;
}

.table-content {
  width: 100%;
}

.opening-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.opening-row {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  width: 100%;
}

.opening-row label {
  min-width: 4rem;
}

.opening-row input[type=text] {
  width: 6rem;
  text-align: center;
}

.flash-container {
  position: relative;
  width: 100%;
}
.flash-container .flash {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: none;
  margin-bottom: 20px;
  padding: 0.75rem 2.5rem;
  position: relative;
}
.flash-container .flash span {
  display: block;
  text-align: center;
  width: 100%;
  padding: 0 1rem;
}

.alert {
  min-height: 2.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.alert.alert-info {
  background: #f0f8ff;
  color: rgba(0, 64, 133, 0.8196078431);
}

.alert.alert-danger {
  background-color: #f1d4d4;
  color: rgba(114, 28, 36, 0.8509803922);
}

.alert.alert-warning {
  background-color: #fff4e2;
  color: rgba(133, 100, 4, 0.831372549);
}

.alert.alert-success {
  background-color: #d5e4d2;
  color: rgba(21, 87, 36, 0.768627451);
}

.w-100 {
  width: 100% !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.position-absolute {
  position: absolute;
}

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

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

.text-black {
  color: var(--dark-color) !important;
}

.w-75 {
  width: 75% !important;
}

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

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

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

.mb-1 {
  margin-bottom: 0.1rem !important;
}

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

.mb-2 {
  margin-bottom: 0.2rem !important;
}

.invalid-feedback {
  color: #ea0000 !important;
}

.description {
  text-align: justify;
}

.photo-input-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.photo-input-wrapper span {
  white-space: nowrap;
}

.alert-dismissible .close {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  margin: 0;
  line-height: 1;
  z-index: 3;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}

.pull-right {
  float: right;
}

.greyscale {
  filter: grayscale(100%);
}

.question-mark-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #e0e0e0;
  color: #666;
  font-size: 12px;
  font-weight: bold;
  cursor: help;
  margin-left: 5px;
  vertical-align: middle;
}
.question-mark-circle[data-title] {
  position: relative;
}
.question-mark-circle[data-title]:hover::before {
  content: attr(data-title);
  position: absolute;
  background: #000;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 100;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 5px;
}

.question-mark-circle:hover {
  background-color: #ccc;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
}

.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}

#copy-openings {
  font-size: small;
  cursor: pointer;
  color: #2196F3;
}

#copy-openings:hover {
  text-decoration: underline;
}

.content-image-link {
  display: flex;
  background-color: var(--success-color);
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.content-image-link:hover {
  opacity: 0.5;
}

.content-image-link span {
  display: block;
  color: #fff;
}

.content-image-link-plus {
  font-size: xx-large;
}

.cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}
.cards-wrapper.cards-wrapper-fw {
  grid-template-columns: unset;
}
.cards-wrapper.cards-wrapper-col-1-2 {
  grid-template-columns: 1fr 2fr;
}

.cards-overlay {
  display: none;
  position: fixed;
  top: 5px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  align-items: center;
  justify-content: center;
}
.cards-overlay .photo-cropper-area {
  max-height: 80vh;
}

.card.card-content-overlay {
  max-width: 70%;
  background: #ffffff;
  padding: 20px;
  margin: 50px auto 0 auto;
  position: relative;
}

.overlay-close {
  position: absolute;
  top: 0;
  right: 0;
  font-weight: bold;
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 27px;
  font-size: 1.2em;
}

#confirmation-popup .card.card-content-overlay, #activate-popup .card.card-content-overlay {
  max-width: 800px;
  margin: 0;
}
#confirmation-popup .popup-content, #activate-popup .popup-content {
  text-align: center;
}
#confirmation-popup .popup-content h3, #activate-popup .popup-content h3 {
  margin-bottom: 15px;
  color: #333;
}
#confirmation-popup .popup-content p, #activate-popup .popup-content p {
  margin-bottom: 20px;
  color: #666;
}
#confirmation-popup .popup-buttons, #activate-popup .popup-buttons {
  justify-content: center;
  gap: 12px;
}
#confirmation-popup .popup-buttons .btn, #activate-popup .popup-buttons .btn {
  min-width: 160px;
}

.qr-code-wrapper {
  justify-items: center; /* Horizontální zarovnání obsahu */
  align-items: center; /* Vertikální zarovnání obsahu */
}

.card-column {
  flex: 1;
}

.container-checkbox_label {
  flex-shrink: 0;
}

.balance-form fieldset {
  border: none;
}

.balance-form fieldset {
  border: none;
  padding: 0;
}

.balance-form .custom-radio {
  margin: 10px 0;
}

.balance-form label {
  position: relative;
  left: 10px;
  top: -1px;
}

.statistics-table {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.statistics-table .table {
  margin-bottom: 0;
}
.statistics-table thead th {
  background: #f8f9fa;
  border-bottom: 2px solid #dee2e6;
  padding: 1rem;
  font-weight: 600;
}
.statistics-table tbody td {
  padding: 1rem;
  vertical-align: middle;
}
.statistics-table th a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.statistics-table th a:hover {
  color: var(--main-color) !important;
}
.statistics-table .form-control {
  max-width: 200px;
  padding: 0.5rem;
  border: 1px solid #dee2e6;
  border-radius: 4px;
}
.statistics-table .badge {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: normal;
}

.statistics-toggle {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
}
.statistics-toggle .toggle-btn {
  display: flex;
  align-items: center;
  padding: 0.75rem 2rem;
  background: #f8f9fa;
  color: #6c757d;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}
.statistics-toggle .toggle-btn i {
  margin-right: 0.75rem;
  font-size: 1.1rem;
}
.statistics-toggle .toggle-btn:hover {
  background: #e9ecef;
  color: #495057;
  text-decoration: none;
}
.statistics-toggle .toggle-btn.active {
  background: var(--info-color);
  color: white;
  border-color: var(--info-color);
}
.statistics-toggle .toggle-btn.active i {
  color: white;
}

.advertisement-tile {
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 1rem;
}
.advertisement-tile.advertisement-tile-footer {
  margin-top: 10px;
  text-align: right;
}

.advertisement-tile-columns {
  display: grid;
  grid-template-columns: 300px 2fr 1fr;
  gap: 1rem;
  align-items: start;
}

.advertisement-tile-column.image-column {
  position: relative;
  width: 300px;
}
.advertisement-tile-column.image-column img {
  border-radius: 4px;
  display: block;
  width: 300px;
}
.advertisement-tile-column.image-column .image-badges-container {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 10;
}
.advertisement-tile-column.image-column .image-badge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}
.advertisement-tile-column.image-column .image-badge.image-badge--red {
  background-color: var(--main-color);
  color: white;
}
.advertisement-tile-column.content-column h3 {
  margin: 0 0 0.5rem 0;
}
.advertisement-tile-column.content-column p {
  margin: 0;
  color: var(--secondary-color);
}
.advertisement-tile-column.info-column {
  text-align: right;
}
.advertisement-tile-column.info-column .location-info {
  margin-bottom: 1rem;
}
.advertisement-tile-column.info-column .location-info span {
  color: var(--secondary-color);
}
.advertisement-tile-column.info-column .contact-info {
  margin-bottom: 1.5rem;
}
.advertisement-tile-column.info-column .contact-info span {
  font-weight: bold;
}
.advertisement-tile-column.info-column .action-buttons {
  display: flex;
  gap: 0.5rem;
}

.advertisement-tile-info span:not(:first-child) {
  margin-left: 0.5rem;
}
.advertisement-tile-info span {
  margin-right: 0.5rem;
}

.required-mark {
  color: red;
  font-size: 0.8em;
}

.photo-tip {
  display: block;
  font-size: 0.85em;
  color: var(--secondary-color);
  font-style: italic;
  margin-top: 0.5rem;
  text-align: center;
}

@media only screen and (max-width: 600px) {
  .advertisement-tile-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .advertisement-tile-column.image-column img {
    max-width: 100%;
    margin: 0 auto;
  }
  .advertisement-tile-column.info-column .action-buttons {
    justify-content: flex-start;
  }
}
.footer {
  width: 100%;
  background-color: #F7F7F7;
  padding: 20px 0;
  border-top: 1px solid rgba(128, 128, 128, 0.34);
  margin-top: auto;
}
.footer .container {
  padding: 0 15px;
  min-height: unset;
  width: 1160px;
  max-width: 100%;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-text,
.footer-link {
  color: var(--dark-color);
  font-family: "RobotoRegular", serif;
}
.footer-text:hover,
.footer-link:hover {
  color: var(--main-color);
  text-decoration: none;
}

@media only screen and (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
  }
}
@media only screen and (max-width: 600px) {
  .container {
    padding: 40px 20px 80px 20px;
  }
  .mobile-hidden {
    display: none;
  }
  .table-row--mobile {
    flex-direction: column;
  }
  .signpost {
    flex-direction: column;
    gap: 35px;
    margin: 10px 0 30px 0;
  }
  .post {
    flex: 100%;
    padding: 10px 30px 30px 30px;
  }
  .backward-link, .forward-link {
    right: unset;
    margin: auto;
  }
  .main-form input, .main-form select {
    width: 100%;
  }
  .registration-form input {
    flex: unset;
    width: 100%;
  }
  .body-navigation {
    display: block;
  }
  .header-menu {
    right: 20px;
  }
  .item {
    border-right: none;
    border-bottom: 2px solid white;
  }
  .table-list {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .container-checkbox_label {
    flex-shrink: 1;
  }
  .cards-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .card-column {
    flex: unset;
    width: 100%;
  }
  .cards-overlay {
    top: 0;
  }
  .card.card-content-overlay {
    max-width: 90%;
    margin-top: 20px;
  }
  .form-row.form-row-text-fields {
    justify-content: space-between;
    gap: 20px 0;
  }
  .form-row.form-row-text-fields .input-wrapper {
    flex: unset;
    width: 48%;
  }
  .form-row.form-row-text-fields .area-wrapper {
    flex: unset;
    width: 100%;
  }
  .form-row-text-fields .label-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .registration-form .custom-checkbox input {
    width: 24px;
  }
  .registration-form .service-container .custom-checkbox input {
    width: 100%;
  }
  .language-container, .service-container {
    justify-content: space-between;
  }
  .registration-form .language-container label.custom-checkbox, .registration-form .service-container label.custom-checkbox {
    width: 48%;
    margin-right: 0;
  }
  .opening-row {
    width: auto;
  }
  .opening-row input[type=text] {
    width: 80px;
  }
  .opening-row label {
    min-width: unset;
    width: 60px;
  }
  .opening-row label.custom-checkbox {
    min-width: unset;
    width: 120px;
    padding-top: 0;
  }
}
@media only screen and (max-height: 870px) {
  .cards-overlay .photo-cropper-area {
    max-height: 60vh;
  }
}
