:root {
    --meeo-accent-color: #e41157;
    --meeo-accent-hover-color: #C30843;

    --adam-accent-color: #0098ff;
    --adam-accent-hover-color: #005B99;

    --adam-white: #eaebef;
    --adam-font-size: .875rem;
    --adam-font-h1: 2rem;
    --adam-font-h2: 1.75rem;
    --adam-font-h3: 1.3rem;
    --adam-font-h4: 1.15rem;
    --adam-font-h5: 1rem;
    --adam-border-radius: 10px;
    --adam-secondary-border-radius: 7px;
    --adam-transition: all .2s ease-in-out;

    --font-medium: 1.2vh;
    --font-small: calc( var(--font-medium) * 0.5 );
    --font-large: calc( var(--font-medium) * 2 );
}

body {
  font-size: 0.85rem;
}

.default-color {
  background-color: rgba(52, 58, 64);
}

div.input-group.adam-dark span.input-group-text {
  background: transparent;
  border: 0px;
  color: rgb(9, 59, 130);
  font-size: 1.2rem;
  padding-right: .1rem;
  min-width: 2rem;
}

div.input-group.adam-dark input.form-control {
  background: transparent;
  border: 0px;
  border-radius: 0px !important;
  border-bottom: 2px solid rgb(9, 59, 130);
  color: #343a40;
}

div.input-group.adam-dark input.form-control:focus {
  box-shadow: none
}

div.panel, div.panel > div.wrapper-row, div.task-info-container, div.task-accordion, div.task-accordion > div.card {
  height: max-content;
}

/* ADAM GRID TABLES */
.grid-table {
  font-size: .875rem;
}

.grid-table.grid-table-header {
  font-weight: bold;
}

.grid-table .grid-table-th.label, .grid-table .grid-table-td.label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.grid-table.grid-table-striped>.grid-table-tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, .05);
}
/* ################ */

/* ADAM LOGIN POPUP */

#loginPopup {
  width: 100%;
  height: 100%;
}

#loginPopup>.login-container {
  position: relative;
  display: flex;
  top: 40vh;
  margin-left: auto;
  margin-right: auto;
  margin: auto;
  overflow: auto;
}

#loginPopup>.login-container .login-btn {
  width: 24vh;
  height: 10vh;
}

#loginPopup>.login-container .login-btn>.login-label {
  display: block;
  font-size: 3rem;
}
/* *************** */

/* bootsrap alerts */
div.alert[role="alert"] {
  position: fixed;
  top: 8vh;
  right: 3vw;
  min-width: 20vw;
  animation: alert_slide .3s linear;
  -webkit-animation: alert_slide .3s linear;
  z-index: 1031;
}

@keyframes alert_slide {
  0% {
    right: -3vw;
  }
  100% {
    right: 3vw;
  }
}

@-webkit-keyframes alert_slide {
  0% {
    right: -3vw;
  }
  100% {
    right: 3vw;
  }
}
/* ############### */

/* Button Slider */
.switch {
  position: relative;
  display: inline-block;
  width: 3rem;
  height: 1.5rem;
}

/* Hide default HTML checkbox */

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

input:checked+.slider {
  background-color: #343a40;
}

input:focus+.slider {
  box-shadow: 0 0 1px #343a40;
}

input:checked+.slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* ************* */

.bg-orange {
  background-color: rgba(255, 140, 0);
}

@media only screen and (min-width:319px) and (max-width:575.98px) {
  .grid-table-tr {
    flex-wrap: nowrap;
  }
}

button.close.closer {
  position: absolute;
  right: .5rem;
  top: 0;
}

/* CARDS POPUP */
.adam-card-popup {
  position: fixed;
  top: 3vw;
  right: 1vw;
  width: 25vw;
  max-height: 75vh;
  z-index: 21;
}

.adam-card-popup>.card {
  background-color: rgba(248, 249, 250, 0.81);
}

.adam-card-popup>.card>.card-header {
  padding: .2rem .5rem 0 0;
  background-color: unset;
  border-bottom: unset;
}

.adam-card-popup>.card>.card-footer {
  padding-top: 0;
  border-top: 0;
  background-color: unset;
}