.text-dgt {
  color: #2f3a5f !important;
}

.text-dgt:hover {
  color: #27a6dd !important;
}

.loadingoverlay {
  background: rgb(40, 255, 219, 0.20);
}

.loadingoverlay_element {
    width: 150px;
    height: 150px;
    border-radius: 75%;
    border: 3px solid transparent;
    border-top-color: #2d385e;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.loadingoverlay_element:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 75%;
    border: 3px solid transparent;
    border-top-color: #38678b;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

.loadingoverlay_element:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 75%;
    border: 3px solid transparent;
    border-top-color: #27a6dd;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

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

.table {
    width: 100% !important;
}
    .table thead tr th {
        text-align: center;
        vertical-align: middle;
        color: #f8f9fa;
        background-color: #20c997;
        font-weight: normal;
        font-size: 12px;
    }

    .table tbody tr td {
        vertical-align: middle;
        font-size: 12px;
    }

        .table tbody tr td a img {
            width: 17px;
        }

    .table tfoot tr th {
        text-align: center;
        vertical-align: middle;
        color: #f8f9fa;
        background-color: #20c997;
        font-weight: normal;
        font-size: 12px;
    }

.table-icon-center {
    text-align: center;
    vertical-align: middle;
}

.dt-layout-table .dt-layout-cell {
    width: 100% !important;
}

.dataTables_info {
    font-size: 12px !important;
}

.form-control {
    font-size: 12px !important;
}
label {
    font-size: 14px !important;
    font-weight: bold !important;
}

select {
    font-size: 12px !important;
}

.dataTables_paginate {
    font-size: 12px !important;
}

.dataTables_filter {
    font-size: 12px !important;
}

.dataTables_length {
    font-size: 12px !important;
}

.buttons-copy span {
    font-size: 12px !important;
}

.buttons-csv span {
    font-size: 12px !important;
}

.buttons-excel span {
    font-size: 12px !important;
}

.buttons-pdf span {
    font-size: 12px !important;
}

.buttons-print span {
    font-size: 12px !important;
}

.buttons-colvis span {
    font-size: 12px !important;
}

.button-action-bot-left {
    text-align: left;
    vertical-align: bottom;
}

.button-action-bot-center {
    text-align: center;
    vertical-align: bottom;
}

.button-action-bot-right {
    text-align: right;
    vertical-align: bottom;
}

.form-control:disabled, .form-control[readonly] {
    cursor: not-allowed;
}

.form-control[disabled] {
    cursor: not-allowed;
}

.disabled {
    cursor: not-allowed;
}

.xdsoft_datetimepicker .xdsoft_label {
    z-index: 1060 !important;
}

.swal2-container {
    z-index: 9999 !important;
}

section div div div h1 {
    font-size: 1.25rem;
    font-weight: 300;
}

.select2-container--bootstrap4 .select2-selection--single {
    font-size: 12px !important;
}

.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    /*height: 28px;*/
    user-select: none;
    -webkit-user-select: none;
}

.d-lg-select-block {
    display: inline-block !important;
    margin: 6px 0 0 0 !important;
}

.center-title-report {
    align-items: center;
    justify-content: center;
    display: flex;
}

.ui-datepicker {
    width: 17em;
    padding: .2em .2em 0;
    display: none;
    z-index: 1100 !important;
}

/*
 * CSS para botón single
 */
.button_single {
  cursor: pointer;
  border: none;
  background: #2f3a5f;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  display: grid;
  place-content: center;
  transition:
    background 300ms,
    transform 200ms;
  font-weight: 600;
  margin-left: 5px;
  margin-right: 10px;
}

.button_single__text {
  position: absolute;
  inset: 0;
  animation: text-rotation 8s linear infinite;

  > span {
    position: absolute;
    transform: rotate(calc(19deg * var(--index)));
    inset: 7px;
  }
}

.button_single__circle {
  position: relative;
  width: 25px;
  height: 25px;
  overflow: hidden;
  background: #fff;
  color: #2f3a5f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button_single__icon--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.button_single:hover {
  background: #27a6dd;
  transform: scale(1.05);
}

.button_single:hover .button_single__icon {
  color: #27a6dd;
}

.button_single:hover .button_single__icon:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.button_single:hover .button_single__icon--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

@keyframes text-rotation {
  to {
    rotate: 360deg;
  }
}

/*
 * CSS para botón cierre
 */
 .btn_logout {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 40px !important;
  height: 40px !important;
  border: none !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
  transition-duration: .3s !important;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199) !important;
  background-color: #2f3a5f !important;
  margin-right: 15px !important;
}

/* plus sign */
.sign_logout {
  width: 100% !important;
  transition-duration: .3s !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.sign_logout svg {
  width: 17px !important;
}

.sign_logout svg path {
  fill: white !important;
}

/* text */
.text_logout {
  position: absolute !important;
  right: 0% !important;
  width: 0% !important;
  opacity: 0 !important;
  color: white !important;
  font-size: 1.2em !important;
  font-weight: 600 !important;
  transition-duration: .3s !important;
}
/* hover effect on button width */
.btn_logout:hover {
  width: 125px !important;
  border-radius: 40px !important;
  transition-duration: .3s !important;
}

.btn_logout:hover .sign_logout {
  width: 30% !important;
  transition-duration: .3s !important;
  padding-left: 20px !important;
}

/* hover effect button's text_logout */
.btn_logout:hover .text_logout {
  opacity: 1 !important;
  width: 70% !important;
  transition-duration: .3s !important;
  padding-right: 10px !important;
}

/* button click effect*/
.btn_logout:active {
  transform: translate(2px ,2px) !important;
}

.btn-conteiner {
  display: flex;
  justify-content: center;
  --color-text: #ffffff;
  --color-background: #2f3a60;
  --color-shadow: #6ba7d5;
  margin-bottom: 10px;
}

.btn-content {
  display: flex;
  align-items: center;
  padding: 5px 30px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-background);
  transition: 1s;
  border-radius: 100px;
  box-shadow: 0 0 0.2em 0 var(--color-background);
}

.btn-content:hover, .btn-content:focus {
  transition: 0.5s;
  -webkit-animation: btn-content 1s;
  animation: btn-content 1s;
  outline: 0.1em solid transparent;
  outline-offset: 0.2em;
  box-shadow: 0 0 0.4em 0 var(--color-background);
}

.btn-content .icon-arrow {
  transition: 0.5s;
  margin-right: 0px;
  transform: scale(0.6);
}

.btn-content:hover .icon-arrow {
  transition: 0.5s;
  margin-right: 25px;
}

.icon-arrow {
  width: 20px;
  margin-left: 15px;
  position: relative;
  top: 6%;
}
  
/* SVG */
#arrow-icon-one {
  transition: 0.4s;
  transform: translateX(-60%);
}

#arrow-icon-two {
  transition: 0.5s;
  transform: translateX(-30%);
}

.btn-content:hover #arrow-icon-three {
  animation: color_anim 1s infinite 0.2s;
}

.btn-content:hover #arrow-icon-one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}

.btn-content:hover #arrow-icon-two {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}

/* SVG animations */
@keyframes color_anim {
  0% {
    fill: white;
  }

  50% {
    fill: var(--color-background);
  }

  100% {
    fill: white;
  }
}

/* Button animations */
@-webkit-keyframes btn-content {
  0% {
    outline: 0.3em solid var(--color-background);
    outline-offset: 0;
  }
}

@keyframes btn-content {
  0% {
    outline: 0.2em solid var(--color-background);
    outline-offset: 0;
  }
}