:root {
  --color-light: #ffffff;
  --color-dark: #000000;
  --color-accent: #ffa689;
  --color-accent-h: #F16F44;
  --color-grey: #f5f5f5;
  --color-fzero: #f0f0f0;
  --color-greye5: #e5e5e5;
  --color-czero: #c0c0c0;
  --color-grey97: #979797;
  --color-blue: #094fb6;
  --color-blue-light: #E3F0FF;
  --color-note: #fff3cd;
  --color-salad: #29d104;
  --color-sun: #FFD95C;
  --bgi-lg0: #0060cb;
  --bgi-lg1: #022f77;
  --bnr-lg0: #1e89ff;
  --bnr-lg1: #014ec9;
  --bg-linear01: linear-gradient(-135deg, var(--bnr-lg0) 0%, var(--bnr-lg1) 100%);
  --bg-linear02: linear-gradient(-135deg, #1476E2 0%, #0043ae 100%);
  --bs-accordion-border-radius: 20px;
  --font100: clamp(2.813rem, 1.83rem + 4.91vw, 6.25rem);
  --font70: clamp(2.375rem, 1.804rem + 2.86vw, 4.375rem);
  --font54: clamp(2.25rem, 1.929rem + 1.61vw, 3.375rem);
  --font50: clamp(2.25rem, 2rem + 1.25vw, 3.125rem);
  --font40: clamp(2rem, 1.857rem + 0.71vw, 2.5rem);
  --font36: clamp(1.75rem, 1.607rem + 0.71vw, 2.25rem);
  --font28: clamp(1.25rem, 1.1071rem + 0.7143vw, 1.75rem);
  --font24: clamp(1.125rem, 1.018rem + 0.54vw, 1.5rem);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Mont', sans-serif;
  font-size: 16px;
  color: var(--color-dark);
  background-color: var(--color-grey);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

body p {
  line-height: 1.2;
  margin-bottom: .5rem;
  font-size: initial;
  text-wrap: pretty;
}

body p:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 576px) {
  body p, .tricols-item p {
    font-size: 18px !important;
  }
}

@media only screen and (max-width: 576px) {
  .tbl-default td .contact-box p {
    font-size: 12px !important;
  }
}

@media only screen and (max-width: 576px) {
  .txt-30bold {
    font-size: 28px !important;
  }
}

h4 {
  font-size: var(--font24);
  font-weight: 600;
  margin-bottom: .5rem;
  letter-spacing: -1px;
  line-height: 1.1;
}

.title-40bold {
  font-size: var(--font40);
  font-weight: bold;
  line-height: 1;
  letter-spacing: -1px;
}

.title-40semibold {
  font-size: var(--font40);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -1px;
}

.title-60bold {
  font-size: var(--font54);
  font-weight: bold;
  line-height: 1;
  letter-spacing: -1px;
  position: relative;
}

.title-50semibold {
  font-size: var(--font50);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -1px;
  position: relative;
}

.txt-24bold {
  font-size: var(--font24);
  font-weight: bold;
  line-height: 1.1;
}

.txt-28semibold {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
}

.txt-30bold {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.1;
}

.t-shadow-white {
  text-shadow: 0 0 16px rgba(255, 255, 255, 1);
}

header, footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  padding-top: 8px;
}

header .navbar-brand, header .navbar-toggler, header .navbar-collapse {
  margin-bottom: 12px;
}

header > .container > .navbar, footer > .container > .navbar {
  padding-left: 18px;
  padding-right: 18px;
}

.navbar-nav {
  gap: 6px;
}

.navbar-nav .nav-item {
  line-height: 20px;
}

.navbar-nav .nav-link {
  font-size: 18px;
  opacity: .81;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show, .navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus {
  opacity: 1;
}

.client-id {
  width: fit-content;
  display: none;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 8px;
}

.client-id span {
  white-space: nowrap;
  font-size: 16px;
  font-weight: normal;
}

.client-in .client-id {
  display: flex;
}

.client-in .btn-profile, .client-in .navbar-collapse, .client-in .navbar-toggler {
  display: none !important;
}

footer .navbar-collapse.collapse:not(.show) {
  display: flex;
  flex-direction: row;
  flex-basis: 50%;
  width: auto;
  gap: 16px;
}

@media only screen and (min-width: 1200px) {
  footer .navbar-nav {
    flex-direction: row;
    margin: 0;
    gap: 16px;
  }
}

footer {
  min-height: 212px;
  background-image: linear-gradient(-135deg, var(--bgi-lg0) 0%, var(--bgi-lg1) 100%);
  padding: 10px 0;
  margin-top: auto;
}

footer .navbar {
  background: transparent;
}

@media only screen and (max-width: 768px) {
  footer .navbar > .container {
    flex-direction: column;
  }
}

@media only screen and (max-width: 768px) {
  footer .navbar-collapse.collapse:not(.show) {
    width: 100%;
    padding: 16px 0;
    justify-content: space-between;
  }
}

@media only screen and (max-width: 768px) {
  footer .navbar-collapse .navbar-nav {
    margin: 0 !important;
    flex-direction: column;
  }
}

footer .navbar-nav .nav-link {
  color: var(--color-light);
}

footer .navbar-nav .nav-link:hover, footer .navbar-nav .nav-link:focus, footer .navbar-nav .nav-link.active, footer .navbar-nav .nav-link.show {
  color: var(--color-light);
}

/* Buttons */

.btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 2px 20px;
  height: 35px;
  line-height: 1;
  color: var(--color-dark);
  border-radius: 12px;
  cursor: pointer;
}

.box-bttn .btn {
  min-width: 60%;
}

.btn-trans, .btn-color {
  background-color: transparent;
  height: 52px;
  border-radius: 20px;
  color: var(--color-dark);
  border: 1px solid currentColor;
  font-size: 18px;
  transition: border-color .5s ease-in-out;
}

.btn-color.btn-accent {
  height: 72px;
  background-color: var(--color-accent-h);
  border-color: var(--color-accent-h);
  color: var(--color-light);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .3);
}

.btn-color.btn-accent.btn-small, .btn-small {
  height: 52px !important;
}

.btn-color.btn-accent:hover, .btn-color.btn-accent:active {
  border-color: var(--color-light);
  background-color: var(--color-accent-h);
}

.btn-trans:hover, .btn-trans:active {
  background-color: transparent !important;
}

.btn-color.btn-normal {
  height: 72px;
  background-color: var(--color-blue);
  border-color: var(--color-blue);
  color: var(--color-light);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .3);
}

.btn-color.btn-normal:hover {
  border-color: var(--color-light);
}

.btn-color.btn-grey {
  background-color: var(--color-fzero);
  border-color: var(--color-fzero);
  color: var(--color-dark);
}

.btn-color.btn-grey:hover {
  border-color: var(--color-grey);
}

.btn-color.btn-dgrey {
  background-color: var(--color-czero);
  border-color: var(--color-czero);
  color: var(--color-light);
}

.btn-color.btn-dgrey:hover {
  border-color: var(--color-grey);
}

.btn-grey.plastic {
  position: relative;
  height: 72px;
  text-align: left;
  line-height: 1.1;
  padding-right: 100px;
}

.btn-grey.plastic > img {
  display: block;
  position: absolute;
  right: 0;
  bottom: -20px;
}

.btn-grey.big {
  position: relative;
  height: 72px;
  line-height: 1.1;
}

.btn-light, .btn-light:hover {
  color: var(--color-light);
}

.btn-trans:hover {
  background-color: transparent;
  border-color: transparent;
}

.btn-trans.btn-white {
  background-color: var(--color-light);
  color: var(--color-dark);
  border-color: var(--color-light);
}

.btn-trans.btn-white:hover {
  border-color: currentColor;
}

footer .btn {
  color: var(--color-light);
}

.btn-profile, .btn-exit {
  background-color: transparent;
  border: 1px solid currentColor;
}

@media only screen and (max-width: 1200px) {
  .btn-profile {
    margin: 16px 0;
  }
}

.btn-profile:hover, .btn-profile:focus, .btn-exit:hover, .btn-exit:focus {
  color: var(--color-dark);
  border-color: transparent;
}

footer .btn-profile:hover, footer .btn-profile:focus {
  color: var(--color-light);
}

.btn-close {
  background: none;
}

.btn-close:hover, .btn-close:focus, .btn-close:active {
  background: transparent !important;
  border-color: transparent;
  outline: none;
  box-shadow: none;
}

.btn-close .img-fluid {
  min-width: 24px;
}

.btn-link {
  color: var(--color-blue);
  padding: 0;
  border: none;
  height: auto;
  text-decoration: none;
  cursor: pointer;
  text-align: left;
}

.btn-link.btn-color {
  color: var(--color-dark);
}

.btn-trash {
  color: var(--color-dark);
  margin-right: 0.5rem;
}

@media only screen and (max-width: 600px) {
  .btn-trash span {
    display: none;
  }
}

/* Hero */

.herobox {
  width: 100%;
  height: 700px;
  margin: 0 0 40px 0;
  padding: 60px;
  background: transparent;
  background-image: url("../img/banner-bg.png");
  background-repeat: no-repeat;
  background-size: 48%;
  background-position: 120% 30%;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

@media only screen and (max-width: 1200px) {
  .herobox {
    background-position: 114% 140%;
    background-size: 40%;
  }
}

@media only screen and (max-width: 990px) {
  .herobox {
    background-position: 114% 126%;
    background-size: 48%;
  }
}

@media only screen and (max-width: 768px) {
  .herobox {
    background-position: 120% 120%;
    background-size: 310px;
  }
}

@media only screen and (max-width: 500px) {
  .herobox {
    background-position: 140% 140%;
    background-size: 310px;
  }
}

@media only screen and (max-width: 500px) {
  .herobox::after {
    content: "";
    display: block;
    width: 100%;
    height: 36%;
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 40px;
    background: linear-gradient(to bottom, rgba(0, 37, 124, 0) 0%, rgba(0, 37, 124, 1) 100%);
    z-index: 1;
  }
}

@media only screen and (max-width: 500px) {
  .herobox div:last-of-type {
    position: relative;
    z-index: 5;
  }
}

.herobox::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 40px;
  background-image: linear-gradient(-135deg, var(--bnr-lg0) 0%, var(--bnr-lg1) 100%);
  z-index: -1;
}

@media only screen and (max-width: 768px) {
  .herobox {
    padding: 32px 16px;
  }
}

.herobox h1 {
  color: var(--color-light);
  letter-spacing: -1px;
  font-size: var(--font36);
  font-weight: 600;
  max-width: 800px;
  text-shadow: 1px 0 rgba(0, 0, 0, .3);
  text-wrap: balance;
}

.herobox h2 {
  color: var(--color-accent);
  letter-spacing: -1px;
  font-size: var(--font100);
  font-weight: 600;
  max-width: 800px;
  text-shadow: 1px 0 rgba(0, 0, 0, .3);
  margin-bottom: 0;
  line-height: 1;
}

.herobox p {
  max-width: 800px;
  margin-top: 32px;
}

.herobox h2 + p {
  font-size: var(--font40);
  line-height: 1.2;
  margin: 10px 0 0 0;
  color: var(--color-light);
}

.rowline {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}

.rowline-item {
  width: max-content;
  margin: 0;
}

/* Three columns box */

.tricols {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.tricols .tricols {
  margin: 0;
}

.tricols-item {
  width: 32%;
  flex-grow: 1;
  min-height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.tricols-item p {
  line-height: 1.1;
  font-size: 18px;
  letter-spacing: -1px;
  padding: 0;
}

@media only screen and (max-width: 1180px) {
  .tricols {
    flex-direction: column;
  }
}

@media only screen and (max-width: 1180px) {
  .tricols-item {
    width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  .tricols {
    gap: 16px;
  }
}

/* @media only screen and (max-width: 600px) {
  .tricols-item {
    flex-direction: column;
    align-items: flex-start;
  }
} */

.tricols.depo {
  gap: 20px;
}

.tricols.depo .title {
  font-size: var(--font36);
  font-weight: bold;
  letter-spacing: -2px;
  text-align: left;
}

.tricols.depo .tricols-item {
  background-color: var(--color-light);
  border-radius: 30px;
  max-width: calc(38% - 10px);
  flex-direction: column;
  padding: 40px 20px;
  align-items: flex-start;
  position: relative;
  min-height: 300px;
}

.tricols.depo .tricols-item.depo-plus {
  max-width: calc(24% - 10px);
  padding: 20px;
}

.tricols.depo .tricols-item.depo-plus p {
  font-size: 18px;
  font-weight: bold;
  margin-top: auto;
}

.tricols.depo .tricols-item.depo-plus .fas {
  font-size: 18px;
}

.tricols.depo .tricols-item .note {
  position: absolute;
  right: 30px;
  top: 12px;
}

.tricols-item.icon2line {
  align-items: flex-start;
  gap: 8px;
}

.tricols-item.icon2line p {
  /*font-size: var(--font24);*/
  margin-top: 0;
}

.tricols-item.icon2line p strong {
  display: block;
  font-size: var(--font36);
  line-height: 1;
  margin-bottom: .2rem;
}

@media only screen and (max-width: 1200px) {
  .tricols.depo .tricols-item {
    min-width: 49%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  .tricols.depo .tricols-item {
    min-width: 100%;
  }
}

/* variative columns */

.varcols {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  margin: 0;
  margin-top: auto;
  padding: 0;
}

.varcols.var50 .varcols-item {
  width: 48%;
}

@media only screen and (max-width: 475px) {
  .varcols.var50 .varcols-item {
    width: 100%;
  }
}

/* Three steps box */

.tristeps-heading, .section-heading {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 45px;
}

.tristeps-heading h2, .section-heading h2 {
  font-size: var(--font70);
  font-weight: 600;
  letter-spacing: -1px;
  margin: 0;
  padding: 0;
}

.tristeps-heading h2 > span, .section-heading h2 > span {
  color: var(--color-accent-h);
  display: block;
}

.tristeps-cols {
  width: 100%;
  margin: 0 0 45px 0;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.tristeps-cols .tristeps-cols--item {
  min-height: 400px;
  flex-grow: 1;
}

.tristeps-cols .tristeps-cols--item .title {
  font-size: var(--font40);
  font-weight: bold;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.tristeps-cols .tristeps-cols--item.login-col {
  width: 100%;
  max-width: 380px;
  background-image: linear-gradient(-135deg, var(--bnr-lg0) 0%, var(--bnr-lg1) 100%);
  border-radius: 30px;
  color: var(--color-light);
  padding: 40px 20px 30px 20px;
  display: flex;
  flex-direction: column;
}

.tristeps-cols .tristeps-cols--item.login-col p + button {
  margin-top: auto;
}

.tristeps-cols .tristeps-cols--item.login-col button + button {
  margin-top: 8px;
}

.tristeps-cols .tristeps-cols--item.drive-col {
  background-color: var(--color-light);
  border-radius: 30px;
  padding: 40px 30px 30px 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 18px;
}

.tristeps-cols .tristeps-cols--item.drive-col .drive-col--item {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tristeps-cols .tristeps-cols--item.drive-col .drive-col--item:first-of-type {
  min-width: calc(56% - 20px);
}

.tristeps-cols .tristeps-cols--item.drive-col .drive-col--item p + button {
  margin-top: auto;
}

@media only screen and (max-width: 768px) {
  .tristeps-cols .tristeps-cols--item.drive-col .drive-col--item p + button {
    margin-top: 16px;
  }
}

@media only screen and (max-width: 440px) {
  .drive-col--item .line-number + button.plastic {
    font-size: 16px;
  }
}

.tristeps-cols .tristeps-cols--item.drive-col .drive-col--item:last-of-type {
  min-width: calc(44% - 20px);
}

.drive-col--item.dc-divider {
  width: 1px;
  max-width: 1px;
  background-color: #d9d9d9;
  overflow: hidden;
}

@media only screen and (max-width: 1200px) {
  .tristeps-cols {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

@media only screen and (max-width: 1200px) {
  .tristeps-cols .tristeps-cols--item.login-col {
    max-width: 380px;
  }
}

@media only screen and (max-width: 1200px) {
  .tristeps-cols .tristeps-cols--item.drive-col {
    min-width: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .tristeps-cols .tristeps-cols--item.drive-col {
    flex-direction: column;
  }
}

/* Carousel */

.carousel.slide.pds {
  padding: 42px 8px;
  background-color: var(--color-light);
  border-radius: 20px;
}

.carousel-inner > .carousel-item {
  padding: 0 54px;
  border-radius: 16px;
}

.carousel-inner > .carousel-item > img {
  border-radius: 16px;
}

.carousel-control-next, .carousel-control-prev {
  width: 48px;
  right: 8px;
  left: auto;
}

.carousel-control-prev {
  right: auto;
  left: 8px;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
  background-image: none;
  background-color: var(--color-light);
  color: var(--color-blue);
  width: 44px;
  height: 44px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
  color: var(--color-blue);
}

/* Box tarif */

.box-tarif {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 20px 0;
  margin-bottom: 45px;
}

.box-tarif--item {
  width: calc(20% - 10px);
  background-color: var(--color-light);
  color: var(--color-dark);
  border-radius: 20px;
  min-height: 350px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  transition: box-shadow .3s ease-in-out;
  flex-grow: 1;
  width: 100%;
}

.box-tarif--item:hover {
  box-shadow: 0 0 40px rgba(0, 0, 0, .3);
}

.box-tarif--item.box-blue:hover {
  box-shadow: 0 0 40px rgba(0, 0, 0, .4);
}

.box-tarif--item > div {
  width: 100%;
}

.box-tarif--item .btn {
  width: 100%;
  font-size: 18px;
  font-weight: bold;
}

.box-tarif--item .btn > .fa-rouble {
  font-size: .75em;
}

.box-tarif--item.box-blue {
  margin-top: -20px;
  margin-bottom: -20px;
}

@media only screen and (max-width: 1200px) {
  .box-tarif {
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 1200px) {
  .box-tarif .box-tarif--item {
    width: calc(50% - 10px);
  }
}

@media only screen and (max-width: 1200px) {
  .box-tarif .box-tarif--item.box-blue {
    margin-top: 0;
    margin-bottom: 0;
    /*width: 100%;*/
  }
}

@media only screen and (max-width: 600px) {
  .box-tarif .box-tarif--item {
    width: 100%;
  }
}

/* FAQ */

.box-faq button {
  margin: 30px 0;
}

/* Accordion */

.accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
}

.accordion-item, .accordion-item:focus, .accordion-button:not(.collapsed) {
  background-color: var(--color-light);
  border-radius: 20px;
  border-color: var(--color-light);
  box-shadow: none;
  color: var(--color-dark);
}

.accordion-item h2, .accordion-item h2 button, .accordion-item:first-of-type, .accordion-item:last-of-type, .accordion-item:first-of-type > .accordion-header .accordion-button, .accordion-item:last-of-type > .accordion-header .accordion-button, .accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-radius: 20px;
  outline: none;
  box-shadow: none;
}

.accordion-body {
  padding: 10px 20px 30px 20px;
  font-size: 18px;
}

.accordion-item h2 button:focus {
  outline: none;
  box-shadow: none !important;
}

.accordion-button {
  font-size: var(--font24);
}

/* mix */

.line-number {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 8px;
  line-height: 1;
  align-items: center;
}

.line-number > span {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  border-radius: 100%;
  color: var(--color-light);
  background-color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-active {
  color: rgba(0, 0, 0, .3);
}

.no-active .note {
  color: var(--color-blue);
  font-weight: bold;
}

.specinfo {
  font-size: 18px;
  line-height: 1.1;
  color: var(--color-dark);
}

.specinfo span {
  display: block;
  font-size: var(--font40);
  font-weight: bold;
  color: var(--color-blue);
}

.specinfo.accent span {
  color: var(--color-accent-h);
}

.plus-circle {
  width: 56px;
  height: 56px;
  background-color: var(--color-light);
  color: var(--color-dark);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: normal;
  line-height: 1;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  padding-top: 2px;
}

.btn:has(.plus-circle) {
  margin: 0;
  padding: 0;
  border: none;
  height: auto;
}

.section-mb {
  margin-bottom: 45px;
  gap: 20px 0;
}

.section-finish {
  margin-top: 100px;
  margin-bottom: 60px;
  background-image: linear-gradient(-135deg, #1E89FF 0%, #014EC9 100%);
  border-radius: 20px;
  padding: 40px 20px;
  gap: 20px 0;
}

.section-finish .finish-item {
  background-color: var(--color-light);
  border-radius: 20px;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 20px;
  position: relative;
}

.finish-item .finish-text {
  width: calc(60% - 10px);
  padding: 20px 0 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.finish-item .finish-img {
  width: calc(40% - 10px);
}

.finish-item .finish-img img {
  display: block;
  width: 100%;
}

.box-incol {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

.box-incol > .box-incol--item, .box-simple {
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 60px;
  background-color: var(--color-light);
  border-radius: 20px;
  padding: 30px 20px;
  justify-content: flex-start;
}

.box-simple.fd-row {
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}

@media only screen and (max-width: 600px) {
  .box-simple.fd-row {
    flex-direction: column;
  }
}

.box-simple *:last-child {
  margin-top: auto;
}

.box-heading {
  font-size: var(--font28);
  text-align: center;
  padding: 20px;
}

.box-simple .box-heading + form {
  margin-top: 0 !important;
  height: 100%;
}

.box-heading.c-accent {
  background-color: var(--color-accent-h);
  color: var(--color-light);
}

.box-heading.c-blue {
  background-color: var(--color-blue);
  color: var(--color-light);
}

.box-simple .box-heading {
  margin: -30px -20px 20px -20px;
  border-radius: 20px 20px 0 0;
}

.plastic-double {
  background-image: url(../img//plastic-double.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 100% 100%;
  min-height: 400px;
}

.plastic-double .tricols {
  margin-bottom: 0;
}

.plastic-double h3 {
  width: 50%;
}

.box-blue {
  background-image: linear-gradient(-135deg, var(--bnr-lg0) 0%, var(--bnr-lg1) 100%);
  color: var(--color-light);
  /*overflow: hidden;*/
}

.garden .row:first-of-type {
  margin-bottom: 20px;
  height: 100%;
}

.garden .row {
  gap: 20px 0;
}

.garden .row + .row {
  margin-top: auto;
}

.garden .row .box-simple {
  height: 100%;
  margin-bottom: 20px;
}

.garden .row .box-simple:last-of-type {
  margin-bottom: 0;
}

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

.img30 {
  display: inline-block;
  width: 30px;
  height: auto;
}

.bi.bi-lightning-charge-fill {
  color: var(--color-accent-h);
}

ul.icon-list {
  list-style-type: none;
  margin-top: 12px;
}

ul.icon-list li {
  position: relative;
  margin-bottom: 16px;
}

ul.icon-list li:last-of-type {
  margin-bottom: 0;
}

ul.icon-list li svg, ul.icon-list li img {
  display: block;
  font-size: 24px;
  position: absolute;
  left: -34px;
  top: 5px;
}

ul.icon-list li strong {
  display: block;
  margin-bottom: 4px;
  font-size: 30px;
  line-height: 1;
}

.title-60bold .plastic-gear {
  display: block;
  width: 180px;
  height: 180px;
  position: absolute;
  bottom: -140px;
  right: -40px;
}

.title-60bold:has(.plastic-gear) {
  margin-bottom: 90px;
}

.b-shadow {
  box-shadow: 0 4px 18px rgba(0, 0, 0, .1);
}

.bg-accent, .modal-header.bg-accent {
  background-color: var(--color-accent-h);
}

.modal-header.head-empty {
  background-color: var(--color-grey);
  color: var(--color-czero);
  border-bottom: none;
  height: 60px;
}

.modal-header.head-empty .btn-close {
  color: var(--color-czero);
}

.row figure {
  display: block;
  width: 100%;
  border-radius: 20px;
  margin: 0;
}

figure .figure-img {
  display: block;
  width: 100%;
  object-fit: cover;
  margin: 0;
  border-radius: 20px;
}

.faqman {
  display: block;
  margin-bottom: -30px;
}

.social {
  display: inline-block;
  width: 48px;
  height: 48px;
}

a:has(.social) {
  margin-right: 8px;
}

.navbar-toggler {
  padding-left: 8px;
  padding-right: 8px;
}

/* Modals */

.modal-dialog {
  height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  max-width: 690px;
}

.modal-content {
  max-height: 90vh;
  border-color: transparent;
  border-radius: 20px;
  background-color: transparent;
}

.modal-content a {
  text-decoration: none;
  color: var(--color-blue);
}

.modal-header {
  background-color: var(--color-blue);
  color: var(--color-light);
  height: 80px;
  border-radius: 20px 20px 0 0;
  padding: 10px 24px;
}

.modal-body {
  background-color: var(--color-grey);
  padding: 20px;
}

.modal-centered .modal-body {
  text-align: center;
}

.modal-centered .box-btn-line {
  justify-content: center;
}

.modal-centered p {
  margin-top: -.6em;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
  font-size: 20px;
  max-width: 400px;
}

.modal-body:last-child {
  border-radius: 0 0 20px 20px;
}

.modal-body p {
  line-height: 1.3;
}

.modal-footer {
  background-color: var(--color-grey);
  border-radius: 0 0 20px 20px;
  justify-content: flex-start;
  padding: 20px;
}

.modal-footer .ftr-img img {
  max-width: 100%;
  margin-left: -6px;
}

.modal-footer .footer-title {
  font-size: var(--font28);
}

@media only screen and (max-width: 575px) {
  .modal-footer .ftr-img {
    max-width: 80px;
  }
}

.modal-header .modal-title {
  font-size: var(--font28);
}

.modal-header .btn-close {
  --bs-btn-close-color: #ffffff;
  background: none;
}

.modal-header.head-empty + .modal-body {
  padding-top: 0;
}

.registration-form {
  display: flex;
  width: 100%;
  gap: 20px;
  flex-direction: column;
  margin: 12px 0;
  height: 100%;
}

.registration-form input:not(.form-check-input), .registration-form .form-select, .registration-form textarea {
  height: 52px;
  border-radius: 20px;
  background-color: var(--color-light);
  padding: 10px 20px;
  border: none;
}

.registration-form.on-light input:not(.form-check-input), .registration-form.on-light .form-select, .registration-form.on-light textarea {
  background-color: var(--color-grey);
}

.form-label.form-select {
  padding-top: 14px;
  margin-bottom: 0;
}

.mselect-box select.form-select {
  height: auto;
  border-radius: 20px 0 0 0;
}

.mselect-box select.form-select + .btn {
  height: 52px;
  border-radius: 0 0 20px 20px;
  background-color: var(--color-blue-light);
}

.mselect-box {
  overflow: hidden;
  max-height: 0;
}

.form-label.form-select.opened + .mselect-box {
  max-height: 500px;
}

.registration-form textarea {
  padding-top: 14px;
  padding-bottom: 14px;
  min-height: 9rem;
  height: auto;
}

.box-btn-line {
  display: flex;
  width: 100%;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
}

.box-btn-line button {
  width: 50%;
}

@media only screen and (max-width: 575px) {
  .box-btn-line {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media only screen and (max-width: 575px) {
  .box-btn-line button {
    width: 100%;
  }
}

.tarif-name span {
  display: inline-block;
  margin-left: 1rem;
  color: var(--color-accent-h);
}

.tarif-description {
  padding: 1rem 0;
  border-top: 1px solid var(--color-czero);
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.tarif-description + .tarif-description {
  margin-top: -20px;
}

.tarif-description span:last-of-type {
  min-width: 4em;
  text-align: right;
}

.tarif-note {
  background-color: var(--color-note);
  padding: 14px;
}

.breadcrumb {
  margin-bottom: 40px;
}

.breadcrumb-item a {
  font-weight: 600;
  text-decoration: none;
  color: var(--color-blue);
}

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

.tab-heading {
  margin: 0;
  padding: 20px 40px;
  color: var(--color-light);
  background-color: var(--color-blue);
  border-radius: 20px 20px 0 0;
  font-weight: 600;
}

.search-field {
  width: 100%;
  padding: 32px 28px;
  background-image: var(--bg-linear02);
  border-radius: 0 20px 20px 20px;
  display: flex;
  gap: 20px;
}

.search-field .form-check-label {
  font-size: 12px;
}

.search-field .search-item {
  width: 100%;
}

.search-field .search-item .row {
  gap: 20px 0;
}

.search-field .search-item hr {
  border-top-color: var(--color-light);
}

.search-field .search-item.search-info {
  max-width: 22%;
  color: var(--color-light);
}

.search-field .search-item.search-action {
  padding-top: 4px;
}

.search-field .search-item.search-info h4 {
  font-size: 18px;
  font-weight: normal;
}

.search-field .search-item.search-info h4 span {
  margin: 0 0 0 .2rem;
  color: var(--color-accent-h);
  display: inline-block;
  font-size: 20px;
}

.search-field .search-item.search-info h4 span:has(span) {
  white-space: nowrap;
  display: block;
  margin-left: 0;
  margin-top: .5em;
}

.search-field .search-item.search-info h4 span span:first-of-type {
  margin-left: .2rem;
}

.search-field .search-item.search-button {
  max-width: 135px;
  min-width: 135px;
}

.search-field .search-item.search-button .btn {
  width: 100%;
  height: 100%;
  min-height: 72px;
  line-height: 1.1;
}

@media only screen and (max-width: 1199px) {
  .search-field {
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 1199px) {
  .search-field .search-item.search-info {
    min-width: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 1199px) {
  .search-field .search-item.search-action {
    width: calc(100% - 155px);
  }
}

@media only screen and (max-width: 767px) {
  .search-field .search-item.search-action {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .search-field .search-item.search-button {
    width: 100%;
    max-width: 100%;
    height: 52px;
  }
}

.search-icon {
  display: block;
  position: relative;
  width: 100%;
}

.search-icon svg {
  position: absolute;
  right: 12px;
  top: 50%;
  margin-top: -9px;
  font-size: 20px;
}

.list-group.tags {
  width: 100%;
  margin: 24px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  border-radius: 0;
  flex-direction: row;
}

.list-group.tags .list-group-item {
  width: fit-content;
  border-radius: 20px;
  display: flex;
  flex-wrap: nowrap;
  gap: .25rem;
  align-items: center;
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 600;
}

.list-group.tags .list-group-item .btn svg {
  font-size: 18px;
  color: currentColor;
  fill: var(--color-dark);
}

.table-box {
  display: block;
  width: 100%;
  overflow: hidden;
  overflow-x: auto;
  margin: 40px 0;
}

.table-heading {
  width: calc(100% + 40px);
  margin: 0 -20px 20px -20px;
  border-bottom: 1px solid var(--color-greye5);
  padding: 0 20px 8px 20px;
}

.table-heading h3 {
  font-size: var(--font28);
  font-weight: 600;
}

.table-box.box-simple .table-heading {
  margin-top: -10px;
}

.table-box .table.tbl-default {
  width: 100%;
  min-width: 1100px;
  background-color: transparent;
}

.tbl-default th {
  color: var(--color-czero);
  font-size: 16px;
  line-height: 1.2;
  font-weight: normal;
  letter-spacing: -1px;
  vertical-align: middle;
  padding-bottom: 24px;
}

.tbl-default th, .tbl-default td {
  background: transparent;
  vertical-align: middle;
}

.tbl-default td p {
  font-size: 14px;
  margin-bottom: .25rem;
}

.tbl-default td .contact-box p {
  font-size: 12px;
  margin-bottom: 0;
}

.tbl-default td p.ellipse {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 180px;
}

.tbl-default tr:hover td:not(.row-divider) {
  background: var(--color-light);
}

.tbl-default tr:hover td:first-child {
  border-radius: 20px 0 0 20px;
}

.tbl-default tr:hover td:last-child {
  border-radius: 0 20px 20px 0;
}

.def-cell-01 {
  width: 80px;
}

.def-cell-02 {
  width: 155px;
  max-width: 155px;
}

.def-cell-03 {
  width: 180px;
  max-width: 180px;
}

.def-cell-04 {
  width: 180px;
  max-width: 180px;
}

.def-cell-05 {
  width: auto;
}

.def-cell-06 {
  width: 165px;
  max-width: 165px;
}

/* table subscriptions */

.tbl-subscriptions .def-cell-01 {
  width: 128px;
}

.tbl-subscriptions .def-cell-02 {
  width: 148px;
  max-width: 148px;
}

.tbl-subscriptions .def-cell-03 {
  width: 188px;
}

.tbl-subscriptions .def-cell-04 {
  width: 88px;
  max-width: 88px;
}

.tbl-subscriptions .def-cell-05 {
  width: 148px;
  max-width: 148px;
}

.tbl-subscriptions .def-cell-06 {
  width: 200px;
  max-width: 200px;
}

.table-box.box-simple .tbl-subscriptions th, .table-box.box-simple .tbl-subscriptions td {
  padding-left: 0;
}

.tbl-subscriptions .b-number, .tbl-subscriptions .b-days {
  display: inline-block;
  margin: 0 0 0 .75em;
}

.tbl-subscriptions .b-days {
  margin-left: 0.25em;
}

.row-divider div {
  width: 100%;
  height: 1px;
  background-color: var(--color-greye5);
  margin: 8px 0;
}

figure.pers {
  position: relative;
  border-radius: 20px;
  background-color: var(--color-greye5);
  margin: 0;
  padding: 0;
  display: block;
}

figure.pers img {
  display: block;
  border-radius: 20px;
}

figure.pers figcaption {
  width: fit-content;
  padding: 4px 6px;
  line-height: 1;
  font-size: 16px;
  font-weight: 700;
  background-color: var(--color-accent-h);
  color: var(--color-light);
  position: absolute;
  right: -6px;
  top: -10px;
  border-radius: 6px;
}

.contact-box {
  width: 100%;
  height: 60px;
  background-color: var(--color-blue);
  color: var(--color-light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.contact-box p {
  font-size: 14px;
  font-weight: 600;
  width: fit-content;
}

.contact-info p {
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 180px;
}

.contact-info {
  display: none;
}

/* Show room */

.show-room {
  display: block;
}

.show-room.open .contact-info {
  display: block;
  cursor: pointer;
}

.show-room.open .contact-box {
  display: none;
}

.pro-tag {
  display: inline-block;
  margin: 0 .5em .25rem 0;
}

.pro-tag:last-of-type {
  margin-right: 0;
}

.pro-tags {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: .5rem 1rem;
}

.pro-tags .pro-tag {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.txt-date {
  display: block;
  color: var(--color-czero);
}

.line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.pagination-box h5 {
  font-size: 16px;
  margin: 0 auto;
  width: fit-content;
  max-width: 180px;
  color: var(--color-blue);
}

.pagination-box .pagination {
  text-align: center;
  margin: 0 auto;
  width: fit-content;
}

.pagination-box .page-link {
  background: none;
  box-shadow: none;
  border: none;
  color: var(--color-dark);
  font-size: 24px;
  font-weight: 600;
  padding: 4px 8px;
}

.pagination-box .page-item.active .page-link {
  color: var(--color-accent-h);
}

.pagination-box .page-item:first-of-type .page-link, .pagination-box .page-item:last-of-type .page-link {
  opacity: .25;
}

/* Pers card */

.pers2cols .row {
  gap: 1rem 0;
}

.pers-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  padding: 20px 0 0 0;
}

.pers-box figure.pers .figure-caption {
  border: 6px solid var(--color-light);
  background-color: var(--color-salad);
  padding: 16px 20px;
  border-radius: 26px;
  font-size: var(--font28);
  top: -36px;
  right: -16px;
}

.pers-box figure .likes {
  position: absolute;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
}

.pers-info p, .pers-info a {
  color: var(--color-dark);
  font-weight: 600;
  margin: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5em 1em;
}

.pers-info p span {
  max-width: initial;
  white-space: normal;
}

.pers-info p:first-of-type {
  padding: 16px 0 12px 0;
  border-bottom: 1px solid var(--color-czero);
  color: var(--color-blue);
}

.pers-info p:first-of-type a {
  color: var(--color-blue);
}

.pers-info p:first-of-type + p {
  padding: 12px 0 16px 0;
}

.pers-comment {
  padding: 20px 12px;
  background-color: var(--color-light);
  border-radius: 20px;
}

.pers-comment h5 {
  font-weight: 600;
  padding: 4px 12px 24px 12px;
  margin: 0 -12px 20px -12px;
  border-bottom: 1px solid var(--color-czero);
}

.pers-comment p {
  margin: 20px 0;
  padding: 8px 0 24px 0;
  border-bottom: 1px solid var(--color-czero);
}

.pers-comment p:last-of-type {
  padding-bottom: 4px;
  border: none;
}

.pers-comment p span {
  display: block;
  margin-bottom: 12px;
  color: var(--color-grey97);
}

.rate-box {
  padding: 24px 20px;
  background-image: var(--bg-linear01);
  color: var(--color-light);
  border-radius: 20px;
}

.rate-box h5 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0 -20px 16px -20px;
  padding: 0 20px 16px 20px;
  border-bottom: 1px solid var(--color-greye5);
}

.rate-box h5 > span {
  display: flex;
  gap: 6px;
  align-items: center;
  font-weight: 600;
}

.rate-stars {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: .5em;
  font-size: 32px !important;
  line-height: 1;
}

.rate-stars .star.yes {
  fill: var(--color-sun);
}

.rate-mode {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  margin-top: 4px;
}

.rate-mode .rate-stars {
  width: fit-content;
  margin: -4px 0 0 0;
  font-size: 22px !important;
}

.par2cols .rate-stars {
  font-size: 18px !important;
  max-width: 125px;
  min-width: 125px;
  gap: .15em;
}

.cards {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.cards .cards-item {
  width: calc(50% - 20px);
  padding: 24px 32px;
  background-color: var(--color-light);
  flex-grow: 1;
  border-radius: 20px;
}

@media only screen and (max-width: 1199px) {
  .cards .cards-item {
    width: 100%;
  }
}

.cards .cards-item h4 {
  text-align: center;
  margin: 0 -32px 24px -32px;
  padding: 4px 32px 23px 32px;
  border-bottom: 1px solid var(--color-czero);
  font-size: 20px;
  font-weight: normal;
}

.rd-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
  background-color: var(--color-light);
  border-radius: 20px;
}

.rd-card-title {
  margin: 0;
  padding: 23px 32px;
  border-bottom: 1px solid var(--color-czero);
  font-size: 20px;
  font-weight: normal;
  border-radius: 20px 20px 0 0;
}

.rd-card-blue .rd-card-title {
  background-color: var(--color-blue);
  color: var(--color-light);
}

.rd-card-body {
  margin: 0;
  padding: 23px 32px;
  border-radius: 0 0 20px 20px;
  background-color: var(--color-light);
}

.rd-card-blue .rd-card-body {
  background-color: var(--color-blue-light);
}

.par2cols {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

@media only screen and (max-width: 575px) {
  .par2cols {
    flex-direction: column;
  }
}

.par2cols > span:last-of-type {
  text-align: right;
  min-width: 125px;
  max-width: 125px;
}

.par2cols > span:last-of-type > span {
  display: block;
  color: var(--color-grey97);
}

.date-name {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: .25rem 1rem;
  font-weight: 600;
}

@media only screen and (max-width: 475px) {
  .date-name {
    flex-direction: column;
  }
}

.dn-date {
  color: var(--color-grey97);
  font-weight: normal;
}

/* Collapse */

.btn.show-me, .btn.show-me:active {
  height: auto;
  margin: 0;
  padding: 23px 32px;
  color: var(--color-dark);
  background-color: var(--color-light);
  border-color: transparent;
  /*border-bottom: 1px solid var(--color-czero);*/
  font-size: 20px;
  font-weight: normal;
  border-radius: 20px 20px 0 0;
  justify-content: space-between;
}

.btn.show-me[aria-expanded="false"] {
  border-radius: 20px;
}

.btn.show-me[aria-expanded="false"] svg.chevron-up, .btn.show-me[aria-expanded="true"] svg.chevron-down {
  display: none;
}

.lining::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-czero);
  padding: 23px 0 24px 0;
}

/* Tabs box */

.tabs-box {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
}

.tabs-box .nav-tabs {
  min-width: 32%;
  max-width: 356px;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  border: none;
}

.tabs-box .nav-item.box-simple {
  padding: 0;
  flex-grow: 1;
}

.tabs-box .nav-item .nav-link {
  padding: 30px 20px;
  margin: 0;
  border: none;
  background-color: transparent;
  color: currentColor;
}

.tabs-box .nav-item:has(.active) {
  background-image: linear-gradient(-135deg, var(--bnr-lg0) 0%, var(--bnr-lg1) 100%);
  color: var(--color-light);
  overflow: hidden;
}

.tabs-box .tab-content {
  width: 100%;
  padding: 42px;
  background-color: var(--color-light);
  border-radius: 20px;
}

.tabs-box .tab-content .tab-pane img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 0;
  border-radius: 20px;
}

.tabs-box .tab-content .tab-pane {
  height: 100%;
}

@media only screen and (max-width: 991px) {
  .tabs-box {
    flex-direction: column;
  }
}

@media only screen and (max-width: 991px) {
  .tabs-box .nav-tabs {
    flex-direction: row;
    flex-wrap: nowrap;
    min-width: 30%;
    max-width: none;
  }
}

@media only screen and (max-width: 768px) {
  .tabs-box .nav-tabs {
    flex-direction: column;
  }
}

@media only screen and (max-width: 768px) {
  .tabs-box .tab-content {
    padding: 20px;
  }
}

/* Personal Account */

.pers-account {
  margin-top: 0;
}

.select-subscription {
  margin-top: 20px;
}

.select-subscription h3 {
  font-weight: 600;
  margin-bottom: 0;
}

.select-subscription .btn-accent {
  min-width: 30%;
}

.pers-subscription {
  margin-top: 20px;
}

.pers-subscription .table-box {
  margin: 0;
}

.div2cols {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .div2cols {
    flex-direction: column;
  }
}

/* Common */

a {
  color: var(--color-blue);
  text-decoration: none;
}

.vanishing, .vanishing.box-flexcol {
  display: none;
}

.form-check:has(input:checked) + .vanishing {
  display: block;
}

.form-check:has(input:checked) + .vanishing.box-flexcol {
  display: flex;
}

form input:not(.form-check-input), form .form-select, form textarea {
  height: 52px;
  border-radius: 20px;
  background-color: var(--color-light);
  padding: 10px 40px 10px 20px;
  border: none;
}

.form-control[type="search"] {
  padding-right: 40px;
}

.ss-main.form-select {
  height: auto;
  min-height: 52px;
}

.ss-main.form-select .ss-arrow {
  display: none;
}

.ss-content .ss-search {
  /*display: none;*/
}

.ss-main .ss-values {
  max-width: 100%;
}

.ss-main .ss-values .ss-value .ss-value-text {
  white-space: normal;
}

.form-select {
  padding-right: 30px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.img-status {
  display: inline-block;
  margin-right: 0.5em;
  position: relative;
  top: -.075em;
}

.abs-link {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
}

.box-flexcol {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

textarea.form-control::-webkit-input-placeholder {
  color: #c0c0c0;
}

textarea.form-control::-moz-placeholder {
  color: #c0c0c0;
}

textarea.form-control::-ms-input-placeholder {
  color: #c0c0c0;
}

input.form-control::placeholder {
  color: #c0c0c0;
}

input.form-control::-webkit-placeholder {
  color: #c0c0c0;
}

input.form-control::-moz-placeholder {
  color: #c0c0c0;
}

input.form-control::-ms-input-placeholder {
  color: #c0c0c0;
}

