@font-face {
    font-family: 'sourcesans';
    src: url(../fonts/SourceSansPro-Light.ttf);
    font-style: normal;
    font-weight: 300;
}
@font-face {
    font-family: 'sourcesans';
    src: url(../fonts/SourceSansPro-Regular.ttf);
    font-style: normal;
    font-weight: 400;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'sourcesans' ,tahoma;
}
body { 
    font-family: 'sourcesans' ,tahoma;
}
.ngdialog.ngdialog-theme-default .ngdialog-content {
    font-family: 'sourcesans' ,tahoma;
}

.actions{
    padding-bottom: 0;
    padding-top: 0;
}
.actions a{
  cursor: pointer;
  font-size: 30px;
  padding-right: 10px;
  color: rgb(110, 110, 110);
}
.actions a:hover{ 
  transition: all .3s ease;
}

.actions a.hover-red{
  transition: all .3s ease;
}
.actions a.hover-red:hover{
  color: rgb(212, 61, 61);
  transition: all .3s ease;
}
.actions a.hover-orange{
  transition: all .3s ease;
}
.actions a.hover-orange:hover{
  color: #F9690E;
  transition: all .3s ease;
}

.actions a.hover-green{
  transition: all .3s ease;
}
.actions a.hover-green:hover{
  color: rgb(37, 175, 78);
  transition: all .3s ease;
}
.actions a.hover-purple{
  transition: all .3s ease;
}
.actions a.hover-purple:hover{
  color: #1F3A93;
  transition: all .3s ease;
}
.actions a.hover-dodger{
  transition: all .3s ease;
}
.actions a.hover-dodger:hover{
  color: #19B5FE;
  transition: all .3s ease;
}
  
.table>thead>tr>th, 
.table>tbody>tr>th, 
.table>tfoot>tr>th, 
.table>thead>tr>td, 
.table>tbody>tr>td, 
.table>tfoot>tr>td {
  vertical-align: middle;
} 
.table-hover>tbody>tr.no-hover:hover {
  background-color: unset;
}

.modal-dialog {
  -webkit-transform: translate(0,0)  scale(0) !important;
  -ms-transform: translate(0,0)  scale(0) !important;
  transform: translate(0,0) scale(0) !important;
  transition: all .4 ease;
}
.modal.in > .modal-dialog{
  -webkit-transform: translate(0,0) !important;
  -ms-transform: translate(0,0) !important;
  transform: translate(0,0) !important;
}

.modal-content{
  padding: 30px;

}

.fade-scale {
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all .25s linear;
  -o-transition: all .25s linear;
  transition: all .25s linear;
}

.fade-scale.in {
  opacity: 1;
  transform: scale(1);
}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #909090;
  border-color: #828282;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 12px 0;
  border-radius: 4px;
}
.content-wrapper {
  overflow: hidden
}

@media (max-width: 768px){
  .content-wrapper{
    width: 100%;
  }
}


.radio,
.checkbox {
  padding-left: 20px;
  position: relative;
  display: block;
}
.radio input,
.checkbox input {
  opacity: 0;
  position: absolute;
  z-index: 1;
  cursor: pointer;
  margin-left: -20px;
}
.radio input:checked + label::before,
.checkbox input:checked + label::before {
  border-color: #9575cd;
}
.radio input:checked + label::after,
.checkbox input:checked + label::after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 13px;
  height: 13px;
  left: 2px;
  top: 4px;
  margin-left: -20px;
  border: 1px solid #9575cd;
  border-radius: 50%;
  background-color: #9575cd;
}
.radio label,
.checkbox label {
  display: inline-block;
  position: relative;
  padding-left: 5px;
}
.radio label::before,
.checkbox label::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  top: 2px;
  margin-left: -20px;
  border: 1px solid #ccc;
  border-radius: 50%;
  background-color: #fff;
}
.radio.disabled label,
.checkbox.disabled label {
  color: #ccc;
}
.radio.disabled label::before,
.checkbox.disabled label::before {
  opacity: 0.54;
  border-color: #ccc;
}
.checkbox input:checked + label::before {
  border-color: #f39c12;
  background-color: #f39c12;
}
.checkbox input:checked + label::after {
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 13px;
  color: #fff;
  top: 0;
  left: 1px;
  border-color: transparent;
  background-color: transparent;
}
.checkbox label::before {
  border-radius: 2px;
}