main{
  display: grid;
    align-content: center;
    justify-content: center;
    height: 100%;
}
.nowrap{
  white-space: nowrap;
}
.row-center-button{
  display: grid;
  place-content: center;
}
.row-end-button{
  display: grid;
  place-content: end;
}
.required::after{
  color: red;
  font-weight: bold;
  content: ' *';
}
.input-error{
  font-size: small;
  color: red;
  font-weight: bold;
}
.vertical-separator{
  border-left: 4px solid gray;
  margin: 10px;
}
.collapsible-element{
  cursor: pointer;
}
.collapsed-item{
  transition: all .5s linear;
}
.collapsed{
  display: none;
}
.collapsing{
  opacity: 0;
}
.border-solid{
  border-style: solid;
}
.border-strong-green{
  border-color: #157166;
}
.border-x-2 {
  border-left-width: 2px;
  border-right-width: 2px;
}
/* table.striped-table-collapsable tbody .collapsible-element:nth-child(2n){
  background-color: #93d3bd;
}
table.striped-table-collapsable tbody .second-row-heading:nth-child(2n +1){
  background-color: #93d3bd;
}
table.striped-table-collapsable tbody .second-row-data:nth-child(2n){
  background-color: #93d3bd;
}
table.striped-table-collapsable tbody .third-row-heading:nth-child(2n +1){
  background-color: #93d3bd;
}
table.striped-table-collapsable tbody .third-row-data:nth-child(2n){
  background-color: #93d3bd;
}
table.striped-table-collapsable tbody .extra-row-heading:nth-child(2n +1){
  background-color: #93d3bd;
}
table.striped-table-collapsable tbody .extra-row-data:nth-child(2n){
  background-color: #93d3bd;
} */
table.striped-table tbody tr:nth-child(2n) {
  background-color: #93d3bd;
}
.location-extra-data{
  background-color: #93d3bd;
}
.truncate{
  min-width: 190px; 
  max-width: 190px; 
  white-space: nowrap; 
  overflow: hidden; 
  text-overflow: ellipsis;
}
.button:hover{
  background-color: #93d3bd !important;
}
.row-button:hover{
  background-color: #A8DCCA !important;
}
.row-button-error:hover{
  background-color: #F06F6A !important;
  color: white !important;
}
.center-image{
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.large-form{
  width: 700px;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 10px;
}
.block-delete{
  display: flex;
  justify-content: end;
  padding-right: 10px;
}
.sortable-item{
  justify-content: space-between;
  padding: 1rem;
}
.cursor-pointer{
  cursor: grabbing;
}
.char_counter{
  text-align: end;
    display: block;
    font-size: small;
    font-weight: bold;
}
/* loader */
.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #93d3bd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
  top: 50%;
  left: 50%;
  position: relative;
}

.card-profile{
  background: #93d3bd;
  padding: 30px;
  border-radius: 12px;
  margin-left: 25px;
  width: 400px;
  max-width: 400px;
  height: 515px;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* fixed side bar */
.scrolling-sidebar{
  background-color: #13675E;
  overflow-y: auto;
  max-height: 100vh;
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 1;
  overflow-x: hidden;
  /* padding-bottom: 80px; */
}
.fixed-bottom-sidebar{
  background-color: #10564F;
  position: fixed;
  width: 100%;
  top: 87vh;
}
.hide{
  display: none;
}
/* multi select */
.form-outline{
  position: relative;
}
.form-arrow{
color: #000;
text-align: center;
font-size: .8rem;
position: absolute;
right: 9px;
top: 9px;
}
.list-select{
  width: 250px;
  height: 150px;
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0px 1px 5px 0px;
  position: absolute;
  display: none;
  z-index: 1;
  background: white;
}
.form-control-select{
min-width: 250px;
}
input.form-control.form-control-select:focus~.list-select {
display: block;
}
.list-select:hover {
display: block;
}
.select-item{
  height: 35px;
}
.select-item:hover{
background: #ddd;
}
.dot{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
}
/* The check container */
.check-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  top: 4px;
  left: 4px;
}
/* Hide the browser's default checkbox */
.check-container input {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}

/* Create a custom checkbox */
.checkmark {
position: absolute;
top: 0;
left: 0;
height: 25px;
width: 25px;
background-color: #eee;
}

/* On mouse-over, add a grey background color */
.check-container:hover input ~ .checkmark {
background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.check-container input:checked ~ .checkmark {
background-color: #10564F;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
content: "";
position: absolute;
display: none;
}

/* Show the checkmark when checked */
.check-container input:checked ~ .checkmark:after {
display: block;
}

/* Style the checkmark/indicator */
.check-container .checkmark:after {
  left: 10px;
  top: 5px;
  width: 6px;
  height: 14px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.movement-arrow {
  background-image: url('../../assets/icons/panel/movement.png');
  display: block;
  width: 16px;
  height: 16px;
}
@media only screen and (min-width: 300px) and (min-height:600px) {
  .fixed-bottom-sidebar{  
    bottom: 0;
    top: 84vh;
  }
}
@media only screen and (min-width: 700px) and (min-height:800px) {
  .fixed-bottom-sidebar{  
    bottom: 0;
    top: 87vh;
  }
}
@media only screen and (min-width: 900px) and (min-height:600px) {
  .fixed-bottom-sidebar{  
    bottom: 0;
    top: 79vh;
  }
}
@media only screen and (min-width: 992px) and (min-height:600px) {
  .fixed-bottom-sidebar{
    top: 82vh;
  }
}

@media only screen and (min-width: 1200px) and (min-height:800px) {
  .fixed-bottom-sidebar{
    top: 87vh;
  }
}
/* modal */

/* .open-modal {
    font-weight: bold;
    background: var(--blue);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    margin-bottom: 1rem;
    border-radius: 5px;
  }

.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: gray;
    cursor: pointer;
    visibility: hidden;
    opacity: 0.5;
    transition: all 0.35s ease-in;
    z-index: 1000;
  }
  
  .custom-modal.is-visible {
    visibility: visible;
    opacity: 1;
  }
  
  .custom-modal-dialog {
    position: relative;
    max-width: 500px;
    max-height: 80vh;
    border-radius: 5px;
    background: white;
    overflow: auto;
    cursor: default;
    width: 100%;
    height: 100%;
  }
  .custom-modal-scrollable{
    max-height: calc(100vh - 1rem);
    overflow: hidden;
  }
  .custom-modal-content {
    padding: 1rem;
  }
  .custom-modal-content .custom-modal-scrollable {
    overflow-y: auto;
  }
  .custom-modal-dialog > * {
    padding: 1rem;
  }
  
  .custom-modal-header,
  .custom-modal-footer {
    background: #93d3bd;
    font-weight: bold;
    color: #157166;
    font-size: larger;
  }
  .custom-modal-header span{
    margin: auto;
  }
  
  .custom-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .custom-modal-header .close-modal {
    font-size: 1.5rem;
  }
  
  .custom-modal p + p {
    margin-top: 1rem;
  }

   */
   .custom-modal-header{
    background: #93d3bd;
    color: #157166;
    font-size: larger;
   }
  /* FOOTER
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .page-footer {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
  }
  
  .page-footer span {
    color: #e31b23;
  }

  /* 404 */
  .fallback-container{
    display: flex;
    margin-left: 10px;
  }
  .fallback-mensaje{
    display: grid;
    text-align: center;
    padding-left: 15px;
    padding-top: 100px;
    z-index: 2;
  }
  .fallback-animation-container{
    width: 500px;
    position: relative;
  }
  .monitor{
    position: absolute;
    z-index: 0;
    min-width: 500px;
  }
  .alert-icon{
    position: absolute;
    z-index: 1;
    width: 300px;
    top: 50px;
    bottom: 0;
    left: 90px;
  }
  @-webkit-keyframes rotating {
    0%{
        -webkit-transform: rotate(-25deg);
    }
    25%{
        -webkit-transform: rotate(00deg);
    }
    50%{
        -webkit-transform: rotate(25deg);
    }
    75%{
        -webkit-transform: rotate(00deg);
    }
    100%{
      -webkit-transform: rotate(-25deg);
    }
}

.rotating {
    -webkit-animation: rotating 2s linear infinite;
}
.btn-no-focus:focus {
  outline: none;
  box-shadow: none;
}
.bg-custom-warning {
  background-color: rgba(218 175 74) !important;
}