html{
  height: 100%;
}
.content-wrapper {
  display: flex;
  align-items: stretch;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: space-between;
}

.nav-link.active g{
  fill:  #fff;
  stroke: #fff;
  stroke-width: 0.5;
}

.nav-link g{
  fill:  #3A416F;
  stroke: #3A416F;
  stroke-width: 0.35;
}

table th{
  font-size: 0.75rem;
  font-weight: 700;
}

table td{
  font-size: 0.9rem;

}

#users_table_info{
  font-size: 0.8rem;
}


.table.condensed > :not(caption) > * > * {
  padding: 0 0.5rem;
}

.table thead th {
  /*background-color: #f7f7f7;*/
  font-weight: 600;
  font-size: 0.8rem;
}

.table thead th {
  padding: 0.25rem 1.5rem;
}

.bold{
  font-weight: 700;
}

.select2-container {
  width: 100% !important;
}

.btn-link{
  color: #859096;
}

.btn-link:hover{
  color: #8f8f9d;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #d2d6da;
  border-radius: 0.2rem;
  padding-left: 10px !important;
  border-left-width: 1px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #495057 !important;
  font-size: 0.8rem !important;
}

.select2-selection__rendered {
    /*line-height: 40px !important;*/
}
.select2-container .select2-selection--single {
    height: 35px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  top:  75% !important;

}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #f25d0d;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #f88b36;
  font-size: 0.8rem;
  color:  #67757c;
}

.dataTables_info{
  font-size: 0.8rem;
}


/*.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #f88b36;
}*/


/*.select2-selection__arrow {
    height: 35px !important;
}*/

/*.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0.5rem 1rem 0.5rem 0.75rem;
}*/

.choices__inner {
  background-color: #fff;
}

.choices__list--single{
  padding: 0.025rem 0.02rem 0.05rem 0.75rem
}

.is-focused .choices__inner, .is-open .choices__inner{
  border-color: #ec7c34 !important;
}


.filepond--credits{
  display: none;
}

small{
  font-size: 0.7rem;
  color: #929292;
}

.progress, .progress-bar {
  height: 8px; /*10px;*/
  font-size: 0.6rem;
  margin-top: 0;
}


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

.pull-center-top {
  display: flex;
  justify-content: center;
  align-items: top;
}

.pull-right{
    display: flex;
    align-items: right;
    justify-content: right;
}

.f-5{
  font-size: 5rem;
}

/*span{
  font-size: 0.7rem !important;
}*/

.file{
  padding-left: 10px !important;
}

.elipses {
    white-space: nowrap; 
    width: 300px; 
    overflow: hidden;
    text-overflow: ellipsis; 
}

.nav.nav-pills .nav-link.active{
  /*background-color: #fd7e14;
  color: #fff;*/
}

.square{
  width: 300px;
  height: 300px;
}
.square-md{
  width: 200px;
  height: 200px;
}
.square-sm{
  width: 150px;
  height: 150px;
}

.img-fit{
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.img-fill{
  object-fit: contain;
  height: 100%;
}

.table-plain > :not(caption) > * > * {
  padding: 0.3rem 0.5rem !important;
  border: 0 !important;
}

.table-plain {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
  border-collapse: collapse;
}

.table-plain td, .table-plain th{
  vertical-align: top;
 /* border-top: 1px solid #dee2e6 !important;*/
}

.offcanvas-md{
  width: 600px !important;
}

.offcanvas-full{
  width: 100% !important;
}

.playing{
    /*color: #fff;*/
    background-image: linear-gradient(-200deg, #fff, #cbcbcb);
}

.normal thead th {
  background-color: #fff !important;
}


video {
  width: 100%;
  height: auto;
}


.wrap{
  word-break: break-all !important;
}
/*MUSIC PLAYER*/

.audio-player {
  height: 50px;
  width: 100%;
  background: #ec7c34;
  /*box-shadow: 0 0 20px 0 #000a;
  font-family: arial;*/
  color: white;
  font-size: 1em;
  overflow: hidden;
  display: grid;
  grid-template-rows: 6px auto;
}
.audio-player .timeline {
  background: white;
  width: 100%;
  position: relative;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 #0008;
}
.audio-player .timeline .progress {
  background: coral;
  width: 0%;
  height: 100%;
  transition: 0.25s;
}
.audio-player .controls {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 0 20px;
}
.audio-player .controls > * {
  display: flex;
  justify-content: center;
  align-items: center;
}
.audio-player .controls .toggle-play.play {
  cursor: pointer;
  position: relative;
  left: 0;
  height: 0;
  width: 0;
  border: 7px solid #0000;
  border-left: 13px solid white;
}
.audio-player .controls .toggle-play.play:hover {
  transform: scale(1.1);
}
.audio-player .controls .toggle-play.pause {
  height: 15px;
  width: 20px;
  cursor: pointer;
  position: relative;
}
.audio-player .controls .toggle-play.pause:before {
  position: absolute;
  top: 0;
  left: 0px;
  background: white;
  content: "";
  height: 15px;
  width: 3px;
}
.audio-player .controls .toggle-play.pause:after {
  position: absolute;
  top: 0;
  right: 8px;
  background: white;
  content: "";
  height: 15px;
  width: 3px;
}
.audio-player .controls .toggle-play.pause:hover {
  transform: scale(1.1);
}
.audio-player .controls .time {
  display: flex;
}
.audio-player .controls .time > * {
  padding: 2px;
}
.audio-player .controls .volume-container {
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.audio-player .controls .volume-container .volume-button {
  height: 26px;
  display: flex;
  align-items: center;
}
.audio-player .controls .volume-container .volume-button .volume {
  transform: scale(0.7);
}
.audio-player .controls .volume-container .volume-slider {
  position: absolute;
  left: -3px;
  top: 15px;
  z-index: -1;
  width: 0;
  height: 15px;
  background: white;
  box-shadow: 0 0 20px #000a;
  transition: 0.25s;
}
.audio-player .controls .volume-container .volume-slider .volume-percentage {
  background: coral;
  height: 100%;
  width: 75%;
}
.audio-player .controls .volume-container:hover .volume-slider {
  left: -123px;
  width: 120px;
}


.select2-results__option--selected {  display: none; } 

/*.select2-results__option[aria-selected=true] {
    display: none;
}*/


.page-item.active .page-link {
  background-color: #343a40;
  border-color: #343a40;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  padding: 0;
}

.page-link {
  line-height: 0.5;
}

.form-control:focus {
  box-shadow: 0 0 0 .07rem rgb(206, 212, 218);
  border-color: #ced4da;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
  background-color: #ff8334;
  border-color: #ff8334;
}

.btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary.focus:active, .btn-primary:active:focus, .btn-primary:active:hover, .open > .dropdown-toggle.btn-primary.focus, .open > .dropdown-toggle.btn-primary:focus, .open > .dropdown-toggle.btn-primary:hover, .btn-primary.focus, .btn-primary:focus {
  background-color: #ff8334;
  border-color: #ff8334;
}

form label {
  font-size: 0.8rem;
  color: #99abb4;
}

label {
  margin-bottom: .2rem;
}

.form-control {
  font-size: 0.9rem;
  padding: .325rem .5rem;
}

.modal-header {
  border-bottom:  0;
}

.semi-bold{
  font-weight: 600;
}

.btn {
  font-size: 0.7rem;
}

.table td{
  padding: .2rem .5rem;
}

.table th{
  text-align: center;
}

.w-5{
  width: 5%;
}

.btn-primary.disabled, .btn-primary:disabled {
  background-color: #ff8334;
  border-color: #ff8334;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 24px;
}

.select2-results {
  font-size: 0.8rem;
}

.alert-danger {
  background-image: linear-gradient(310deg, #ea0606 0%, #ff3d59 100%);
  color: #fff;
  background-color: #fbcdcd;
  border-color: #f9b4b4;
}


.alert-success {
  background-image: linear-gradient(310deg, #17ad37 0%, #84dc14 100%);
  color: #fff;
  background-color: #e6f7d0;
  border-color: #daf3b9;
}

.modal-content {
  border-radius: 0;
}

table.dataTable {
  margin-top: 30px !important;
}

.fix-sidebar .left-sidebar {
  position: fixed !important;
}

.dropify-message p {
  text-align: center !important;
}

.progress {
  border-radius: 0;
}

[type="radio"].with-gap.radio-col-orange:checked + label::before {
  border: 2px solid #f76e17;
  -webkit-animation: ripple 0.2s linear forwards;
  animation: ripple 0.2s linear forwards;
}

[type="radio"].with-gap.radio-col-orange:checked + label::after {
  background-color: #f76e17;
  border: 2px solid #f76e17;
  -webkit-animation: ripple 0.2s linear forwards;
  animation: ripple 0.2s linear forwards;
}

.text-xs{
  font-size: 0.75rem;
}

a {
  color: #f76e17;
}
a:hover{
  color: #f76000;
}

.f-icon-sm{
  font-size: 1rem !important;
}

.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #929292;
  opacity: 0.4; /* Firefox */
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #929292;
}

.form-control::-ms-input-placeholder { /* Microsoft Edge */
  color: #929292;
 }

.badge {
  padding: .38em .5em;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  font-size: 0.85rem;
}

.select2-container .select2-search--inline .select2-search__field {
  color: #67757c;
}

.text-dark {
  color: #455a64 !important;
}

.avatar{
  width: 30px;
  height: 30px;
}

.w-10{
  width: 10%;
}

.w-15{
  width: 15%;
}

.w-20{
  width: 20%;
}

.w-30{
  width: 30%;
}

.w-40{
  width: 40%;
}

#toast-container{
  font-size: 0.9rem;
}

.modal-xl {
  max-width: 80%;
}

.modal-xxl {
  max-width: 95%;
}

.page-item.disabled .page-link {
  font-size: 0.8rem;
}


.badge-primary-round{
  color: #f76e17;
  border: 0.1rem solid #f76e17;
}

.badge-secondary-round{
  color: #6c757d;
  border: 0.1rem solid #6c757d;
}

.badge-success-round{
  color: #26dad2;
  border: 0.1rem solid #26dad2;
}

.badge-info-round{
  color: #1976d2;
  border: 0.1rem solid #1976d2;
}

.badge-dark-round{
  color: #263238;
  border: 0.1rem solid #263238;
}

.tbl{
  width: 100%;
  background: transparent;
}

.tbl thead th {
  padding: 0.25rem 1.5rem;
}

.tbl td, .tbl th {
  padding: .75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.tbl thead th {
  padding: 0.25rem 1.5rem;
  font-weight: 600;
  font-size: 0.8rem;
}

.tbl td {
  padding: .2rem .5rem;
}

.tbl td, .tbl th {
  border-color: #f3f1f1;
}

.bg-semi-dark{
  background-color: #eef5f9;
}

.chk-sm{
  height: 15px !important;
}

