@charset "utf-8";

:root {
  --body-bg: rgba(31, 28, 28, 1);
  --box-bg: #2E2B2B;
  --box-border: #6B5E5E;
  --box-input-bg: #373232;
  --box-input-border: #5b5151;
  --button-bg: #7A6E6E;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  -webkit-filter: brightness(118%); /* Safari 6.0 - 9.0 */
  filter: brightness(118%);
}
::-moz-selection {
  /* Code for Firefox */
  color: white;
  background: #8ba1eb;
}
::selection {
  color: rgba(0, 0, 0, 0.72);
  background: rgba(0, 0, 0, 0.12);
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.clearfix {
  display: inline-table;
}

/* Hides from IE-mac */

* html .clearfix {
  height: 1%;
}
.clearfix {
  display: block;
}

/* End hide from IE-mac */

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-transition: all 0.06s linear;
  -moz-transition: all 0.06s linear;
  -o-transition: all 0.06s linear;
  transition: all 0.06s linear;
  caret-color: transparent;
  font-family: "Inter", sans-serif;
}
body {
  min-height: 100vh;
  float: none;
  position: relative;
  padding: 0;
  margin: 0;
  color: #434343;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
  overscroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
}
body.darkmode {
  background-color: var(--body-bg);
}
[data-scroll-top] div,
[data-scroll-bottom] div,
[data-scroll-top-hidden] div,
[data-scroll-bottom-hidden] div {
  touch-action: manipulation;
}

/* ------------------------------------------------------------------------------------------ */
/* Calendar --------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------ */

.calendar-container {
  margin: 0 auto;
  text-align: center;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 16px;
}
.calendar-header button{
  flex-shrink: 0;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

.calendar-grid div {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
  font-weight: 700;
  color: rgba(53, 99, 160, 1);
  background-color: rgba(53, 99, 160, 0.04);
  cursor: pointer;
}
.calendar-grid div:hover{
  transform: scale(1.1);
}

.calendar-grid .header {
  font-weight: bold;
  background-color: transparent;
  color: rgba(53, 99, 160, 1);
  
}

.calendar-grid .highlight {
  background-color: rgba(53, 99, 160, 1);
  color: #fff;
}

.calendar-grid .editable-highlight {
  background-color: #28a745;
  color: #fff;
}

.calendar-grid .selected-start, .calendar-grid .selected-end {
  font-weight: bold;
}

.calendar-grid .prev-month, .calendar-grid .next-month {
  background-color: transparent;
  opacity: 0.5;
}


/* ------------------------------------------------------------------------------------------ */
/* Texts ------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------ */

h1{
  width: 85px;
  height: 45px;
  background-image: url('../assets/logos/horsecontrol_black.svg');
  background-size: cover;
  background-repeat: no-repeat;
  filter: invert(1);
  color: transparent;
}
a {
  text-decoration: none;
  font-size: 14px;
  color: inherit;
  cursor: pointer;
}
p {
  font-size: 16px;
  color: #4d4d4d;
}
body.darkmode p{
  color: #fff;
}
h2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 32px;
  line-height: 50px;
  color: #774949;
  font-weight: 600;
  text-align: center;
}
body.darkmode h2{
  color: #fff;
}
h2 img {
  margin: 0 16px 0 0;
}
h3 {
  font-size: 16px;
  margin: 0;
  padding: 0;
  color: #774949;
  font-weight: 700;
}
h4{
  font-weight: 600;
  font-size: 16px;
  color: #774949;
}
body.darkmode h3,
body.darkmode h4{
  color: #fff;
}
h4 {
  font-size: 16px;
  font-weight: 400;
}
header {
  font-size: 54px;
  text-align: center;
  margin-bottom: 64px;
  color: #314a63;
}
body.darkmode header{
  color: #fff;
}
body.darkmode div{
  color: #fff;
}
.form_warning_big{
  display: flex;
  width: 100%;
  max-width: 764px;
  font-size: 16px;
  border-radius: 6px;
  padding: 16px;
  border: 1px solid #C52929;
  grid-column: 1 / span 2;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
  border: 1px solid #314a63;
  gap: 8px;
}
.form_warning_big p{
  color: #314a63;
}
body.darkmode .form_warning_big p{
  color: #314a63;
}
.form_warning_big a{
  text-decoration: underline;
}

/* ------------------------------------------------------------------------------------------ */
/* Colors ----------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------ */

.brown{
  color: #000;
  filter: invert(30%) sepia(11%) saturate(1668%) hue-rotate(314deg) brightness(99%) contrast(86%);
}
body.darkmode .brown{
  filter: invert(49%) sepia(4%) saturate(1650%) hue-rotate(314deg) brightness(89%) contrast(94%);
}
.blue{
  color: #000;
  filter: invert(26%) sepia(89%) saturate(391%) hue-rotate(178deg) brightness(92%) contrast(86%);
}
body.darkmode .blue{
  filter: invert(88%) sepia(19%) saturate(1148%) hue-rotate(181deg) brightness(100%) contrast(108%);
}
.green{
  color: #000;
  filter: invert(57%) sepia(10%) saturate(3112%) hue-rotate(78deg) brightness(101%) contrast(66%);
}
.red{
  color: #000;
  filter: invert(32%) sepia(12%) saturate(3666%) hue-rotate(316deg) brightness(126%) contrast(71%);
}
body.darkmode .red{
  filter: invert(46%) sepia(71%) saturate(828%) hue-rotate(318deg) brightness(119%) contrast(110%);
}
.yellow{
  color: #000;
  filter: invert(73%) sepia(42%) saturate(883%) hue-rotate(338deg) brightness(98%) contrast(86%);
}
.orange{
  color: #000;
  filter: invert(87%) sepia(40%) saturate(3473%) hue-rotate(320deg) brightness(103%) contrast(103%);
}
.purple{
  color: #000;
  filter: invert(30%) sepia(76%) saturate(379%) hue-rotate(240deg) brightness(88%) contrast(85%);
}
body.darkmode .purple{
  filter: invert(73%) sepia(42%) saturate(2452%) hue-rotate(286deg) brightness(79%) contrast(83%);
}
.dark_gray{
  color: #000;
  filter: invert(26%) sepia(0%) saturate(2005%) hue-rotate(156deg) brightness(88%) contrast(86%);
}
.marine_blue{
  color: #000;
  filter: invert(68%) sepia(24%) saturate(575%) hue-rotate(142deg) brightness(91%) contrast(88%);
}

/* ------------------------------------------------------------------------------------------ */
/* Buttons ---------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------ */

div[data-toggle="modal"] {
  cursor: pointer;
}
button {
  display: flex;
  height: 44px;
  width: auto;
  color: white;
  background-color: var(--button-bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0px 6px 6px 0px rgba(88, 129, 137, 0.04);
  padding: 0 16px;
  border-radius: 4px;
  font-size: 14px;
  align-items: center;
  align-self: center;
  justify-content: flex-start;
  flex-direction: row;
  grid-column: 1 / span 2;
  cursor: pointer;
  fill: #fff;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
  user-select: none;
  gap: 8px;
}
body.darkmode button{
  background-color: #7A6E6E;
  box-shadow: none;
}
button:hover,
.btn-submit:hover {
  background-color: #403636;
  text-decoration: none !important;
  box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.04);
}
button img {
  width: 24px;
  filter: invert(70%) sepia(3%) saturate(1269%) hue-rotate(314deg) brightness(96%) contrast(92%);
  pointer-events: none !important;
  flex-shrink: 0;
}
button .counter{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 12px;
  height: 20px;
  right: 10px;
  min-width: 26px;
  padding: 0px 4px;
  color: #fff;
  background-color: rgba(119, 73, 73, 1);
  border-radius: 20px;
}
body.darkmode button .counter{
  background-color: rgba(255, 255, 255, 1);
  color: rgba(119, 73, 73, 1);
  font-weight: 500;
}
button.btnArrow .counter{
  right: calc(24px + 10px + 10px);
}
button.btnArrow{
  position: relative;
}
button.btnArrow::after{
  position: absolute;
  height: 24px;
  width: 24px;
  right: 0;
  content: '';
  background: url('../assets/icons/chevron_right.svg') no-repeat;
  box-sizing: content-box;
  padding-right: 10px;
  opacity: 0.72;
  filter: invert(1);
}
.arrow_left,
.arrow_right{
  filter: invert(27%) sepia(52%) saturate(644%) hue-rotate(169deg) brightness(93%) contrast(90%) !important;
  opacity: 0.24;
}
button.btnTransparent{
  background-color: transparent;
  border: none;
}
button.tiny{
  height: fit-content;
  width: fit-content;
  background-color: transparent;
  box-shadow: none;
  padding: 0px !important;
  border: none;
  color: #444444;
}
button.tiny:hover{
  text-decoration: underline !important;
}
body.darkmode button.tiny{
  background-color: transparent;
  color: #fff;
  opacity: 0.64;
}
button.tiny img{
  filter: invert(26%) sepia(55%) saturate(0%) hue-rotate(259deg) brightness(76%) contrast(83%);
}
body.darkmode button.tiny img{
  filter: invert(1);
}
button.whatsapp{
  background-color: #5ab96a;
  height: 52px;
}
button.whatsapp img{
  filter: invert(89%) sepia(23%) saturate(117%) hue-rotate(95deg) brightness(103%) contrast(107%);
}
button.blue_gray{
  background-color: #9EAFC6;
}
button.small{
  height: 28px;
  width: fit-content;
  background-color: rgba(0, 0, 0, 0.04);
  box-shadow: none;
  font-size: 11px;
  text-transform: uppercase;
  padding: 0px 10px;
  border: none;
  color: #6D6D6D;
}
button.small img{
  height: 20px;
  width: 20px;
  filter: invert(43%) sepia(4%) saturate(0%) hue-rotate(146deg) brightness(99%) contrast(96%);
}
body.darkmode button.small{
  color: #fff;
  background-color: #373030;
}
body.darkmode button.small img{
  filter: invert(1);
}
button:hover{
  text-decoration: underline;
}
button:disabled{
  opacity: 0.24;
  cursor: not-allowed;
}
button.back {
  color: #000;
  border: 1px solid rgba(0,0,0,0.24);
  background-color: rgba(0,0,0,0.14);
  background-image: url('../assets/icons/chevron_left.svg');
  background-repeat: no-repeat;
  filter: invert(29%) sepia(5%) saturate(6630%) hue-rotate(169deg) brightness(66%) contrast(73%);
  background-position: 4px;
  padding: 0 12px 0 28px;
}
body.darkmode button.back{
  background-color: rgba(0,0,0,0.16);
  filter: invert(88%) sepia(19%) saturate(1148%) hue-rotate(181deg) brightness(100%) contrast(108%);
  opacity: 0.5;
}
button.error{
  background-color: #C65959;
}
button.error img{
  filter: invert(1);
}
button.error::after{
  content: '';
  background: none;
}
button.warning{
  background-color: #D78B60;
}
button.warning img{
  filter: invert(1);
}
button.warning::after{
  content: '';
  background: none;
}
button.success{
  background-color: #518E76;
}
body.darkmode button.success{
  background-color: #518E76;
}
button.success img{
  filter: invert(97%) sepia(78%) saturate(302%) hue-rotate(69deg) brightness(102%) contrast(104%);
}
button.success::after{
  content: '';
  background: none;
}
button.btn_gray{
  background-color: #EEEEEE;
  border: none;
  color: #636363;
}
body.darkmode button.btn_gray{
  background-color: #4d4545 !important;
  border: none;
  color: #fff;
}
button.btn_gray:hover{
  background-color: #EEEEEE;
}
button.btn_gray img{
  filter: invert(1);
}
button.btn_light_brown{
  background-color: #b4a6a6;
  border: none;
  color: #fff;
}
body.darkmode button.btn_light_brown{
  background-color: #403939;
}
button.btn_light_brown img{
  filter: invert(1);
}
button.btn_green{
  background-color: #4d886b;
  border: none;
  color: #fff;
}
body.darkmode button.btn_green{
  background-color: #4d886b !important;
  border: none;
  color: #fff;
}
button.btn_green:hover{
  background-color: #3a6f55;
}
button.btn_green img{
  filter: invert(1);
}
button.btn_red{
  background-color: #C65959;
  border: none;
  color: #fff;
}
body.darkmode button.btn_red{
  background-color: #C65959 !important;
  border: none;
  color: #fff;
}
button.btn_red:hover{
  background-color: #ac4747;
}
button.btn_red img{
  filter: invert(1);
}
.btnContent{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.searchButtons{
  position: absolute;
  display: flex;
  flex-direction: row;
  height: 44px;
  width: fit-content;
  margin-right: 8px;
  right: 0;
  gap: 10px;
}
.valueList {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  column-gap: 10px;
}
.valueList li{
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  list-style-type: none;
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  margin-top: 10px;
  padding: 10px 14px 10px 34px;
  font-size: 14px;
  color: #6D6D6D;
  cursor: pointer;
}
body.darkmode .valueList li{
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.valueList li::after{
  position: absolute;
  content: '';
  height: 24px;
  width: 24px;
  left: 6px;
  opacity: 0.32;
  background-image: url('../assets/icons/cancel.svg');
  background-position: left center;
  background-origin: border-box;
  background-repeat: no-repeat;
}
body.darkmode .valueList li::after{
  filter: invert(1);
}
button.addValueBtn{
  position: absolute !important;
  height: 28px;
  width: fit-content !important;
  aspect-ratio: unset !important;
  flex: 0 !important;
  background-color: rgba(0, 0, 0, 0.04);
  border: none;
  border-radius: 4px;
  padding: 10px;
  font-size: 10px;
  text-transform: uppercase;
  box-shadow: none;
  color: #6D6D6D;
  right: 0;
  top: 0;
}
button.addValueBtn img{
  filter: invert(40%) sepia(0%) saturate(384%) hue-rotate(153deg) brightness(104%) contrast(84%);
}
body.darkmode button.addValueBtn{
  background-color: #645757;
  color: #fff;
}

@media only all and (max-width: 620px) {
  button.small{
    height: 44px;
    font-size: 12px;
    padding: 0px 16px;
  }
  .form-item,
  .form-select,
  .form-select select,
  button{
    height: 50px;
  }
}
select option {
  height: 50px;
}

/* ------------------------------------------------------------------------------------------ */
/* Graph ------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------ */

.graph-container {
  position: relative;
  --line-color: #51ca9a;
  --fill-color: rgba(67, 197, 145, 0.08);
  height: 100%;
  width: 100%;
}
.graph-container canvas {
  width: 100%;
  height: 80%;
}
.graph-container .dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
}
.graph-container .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  cursor: pointer;
  transform: translate(-50%, -50%);
}
.graph-container .dot::after {
  position: absolute;
  content: '';
  top: 2.5px;
  left: 2.5px;
  width: 6px;
  height: 6px;
  background-color: #51ca9a;
  border: 2px solid #fff;
  border-radius: 50%;
}
body.darkmode .graph-container .dot::after {
  border: 2px solid var(--box-bg);
}
.graph-container .labels {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.graph-container .label {
  font-size: 12px;
  font-weight: 600;
  color: #774949;
  text-transform: uppercase;
  width: fit-content;
}
body.darkmode .graph-container .label {
  color: #fff;
}

/* ------------------------------------------------------------------------------------------ */
/* Tooltips --------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------ */

[data-tooltip] {
  position: relative;
  cursor: pointer;
}
.custom-tooltip {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  color: #444444;
  border: solid 1px #d6d6d6;
  text-align: center;
  -webkit-box-shadow: 0px 0px 32px 0px rgba(0,0,0,0.04);
  -moz-box-shadow: 0px 0px 32px 0px rgba(0,0,0,0.04);
  box-shadow: 0px 0px 32px 0px rgba(0,0,0,0.04);
  padding: 8px;
  font-size: 14px;
  border-radius: 4px;
  z-index: 1000;
  max-width: 200px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
body.darkmode .custom-tooltip {
  color: #434343;
}
.custom-tooltip::after{
  position: absolute;
  content: '';
  height: 10px;
  width: 10px;
  top: 0;
  background-color: #fff;
  border-top: solid 1px #d6d6d6;
  border-left: solid 1px #d6d6d6;
  transform: rotate(45deg);
  margin-top: -6px;
}
/* ------------------------------------------------------------------------------------------ */
/* Files ------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------ */

.filesSystem {
  display: flex;
  width: 100%;
  margin-top: 16px;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}
.filesSystem .item {
  position: relative;
  display: flex;
  height: 70px;
  width: 100%;
  max-width: 374px;
  flex-direction: row;
  flex-wrap: nowrap;
  border: 1px solid #dedede;
  border-radius: 6px;
  gap: 16px;
  overflow: hidden;
}
.filesSystem .item:hover {
  border: 1px solid #707070;
}
.filesSystem .thumbnail {
  display: flex;
  height: 100%;
  width: 68px;
  border-right: 1px solid #efeff0;
  background: url("../assets/backgrounds/tempThumb.jpg") no-repeat;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}
.filesSystem .thumb_empty {
  border-right: none !important;
}
.filesSystem .thumbnail img {
  height: 32px;
  width: 32px;
}
.filesSystem .item .text {
  display: flex;
  height: inherit;
  max-width: 288px;
  flex-direction: column;
  justify-content: center;
  padding: 0 16px 0 0;
  overflow: hidden;
}
.filesSystem .item .text h5 {
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.filesSystem .item .text p {
  max-height: 14px;
  margin-top: 3px;
  font-size: 11px;
  overflow: hidden;
}
.filesSystem .img_spin{
  display: none;
}
.spin{
  height: 24px;
  -webkit-animation:spin 1.5s linear infinite;
  -moz-animation:spin 1.5s linear infinite;
  animation:spin 1.5s linear infinite;
}
@-moz-keyframes spin { 
  100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin { 
  100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
  100% { 
    -webkit-transform: rotate(360deg); 
    transform:rotate(360deg); 
  } 
}
.filesSystem .download {
  position: absolute;
  display: flex;
  height: inherit;
  right: 0;
  padding: 0 16px 0 0;
  background-color: #fff;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8px;
  opacity: 0;
}
.filesSystem .item:hover .download {
  display: flex;
  opacity: 1;
}
.filesSystem .download:before {
  position: absolute;
  height: 100%;
  width: 64px;
  left: -64px;
  content: " ";
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1)
  );
}
.filesSystem > p {
  color: #314a63;
}
.filesSystem .download button {
  display: flex;
  height: 24px;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 0;
  border: 0;
  color: #314a63;
  text-indent: 4px;
  z-index: 3;
  opacity: 0.8;
}
.filesSystem .download button img {
  margin: 0 !important;
  filter: invert(25%) sepia(12%) saturate(1570%) hue-rotate(169deg) brightness(101%) contrast(94%);
}
.thumb_red{
  filter: invert(18%) sepia(84%) saturate(2981%) hue-rotate(349deg) brightness(94%) contrast(88%) !important;
}
.thumb_lime{
  filter: invert(61%) sepia(61%) saturate(345%) hue-rotate(107deg) brightness(92%) contrast(93%) !important;
}
.thumb_green{
  filter: invert(60%) sepia(9%) saturate(6963%) hue-rotate(78deg) brightness(93%) contrast(55%) !important;
}
.thumb_orange{
  filter: invert(51%) sepia(82%) saturate(2314%) hue-rotate(11deg) brightness(96%) contrast(82%) !important;
}
.filesSystem .download button:hover {
  opacity: 1;
}
@media only all and (max-width: 852px) {
  .filesSystem .item {
    display: grid;
    height: auto;
    max-width: 340px;
    grid-template-columns: 105px auto;
    grid-template-rows: auto auto;
    gap: unset;
    column-gap: 16px;
  }
  .filesSystem .item:hover {
    border: 1px solid #dedede;
  }
  .filesSystem .item .thumbnail {
    width: 105px;
    grid-column: 1;
    grid-row: 1 / span 2;
  }
  .filesSystem .item .text {
    max-width: unset;
    grid-column: 2;
    grid-row: 1;
    margin: 0 !important;
    padding: 16px 16px 0 0;
    overflow: visible;
  }
  .filesSystem .item .text h5 {
    white-space: unset;
    overflow: unset;
    text-overflow: unset;
    text-align: left;
  }
  .filesSystem .item .text p {
    text-align: left;
  }
  .filesSystem .item .download::before {
    display: none;
  }
  .filesSystem .item .download {
    position: unset;
    margin: 14px 16px 16px 0;
    grid-column: 2;
    grid-row: 2;
    opacity: 1;
  }
}
@media only all and (max-width: 743px) {
  .filesSystem .item {
    width: 100%;
    max-width: 100%;
  }
}

/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */

#underConstruction{
  width: fit-content;
}
.underConstruction{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.underConstruction .text{
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 320px;
  gap: 16px;
}
.underConstruction img{
  height: 124px;
}
@media only all and (max-width: 620px) {
  #underConstruction{
    width: 100%;
  }
  .underConstruction{
    flex-direction: column;
  }
  .underConstruction p,
  .underConstruction h4{
    text-align: center;
  }
}

/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */

img {
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.maxWidth {
  max-width: 1920px;
}
.paddingLimit {
  position: relative;
  padding: 0 64px;
}

@media only all and (min-width: 1698px) {
  .paddingLimit {
    padding: 0 49px;
  }
}
@media only all and (min-width: 1920px) {
  .paddingLimit {
    padding: 0 0px;
  }
}
@media only all and (max-width: 1024px) {
  .paddingLimit {
    padding: 0 44px;
  }
}
@media only all and (max-width: 768px) {
  .paddingLimit {
    padding: 0 24px;
  }
}
@media only all and (max-width: 385px) {
  .paddingLimit {
    padding: 0 16px;
  }
}