/**
 * rwetelemedicina.com.br
 * Luis Guilherme | luis.guilherme@rwesistemas.com.br
 * Felipe Aquino | emerson.aquino@rwesistemas.com.br
 * Pedro Borges | pedro.jose@rwesistemas.com.br
 * Juliana Gutierrez | juliana.gutierrez@rwesistemas.com.br
 * Edgar Gutierrez | edgar.gutierrez@rwesistemas.com.br
 * Development Date | Abr-2022
 */

/**
 * Custom Scrollbar
 *
*/
  .blue-scrollbar{
    scrollbar-width: auto;
    scrollbar-color: #1553d1 #9dbfcd;
  }
  .blue-scrollbar::-webkit-scrollbar { /* Chrome, Edge, and Safari */
    width: 27px;
  }
  .blue-scrollbar::-webkit-scrollbar-track {
    background: #000000;
    border-radius: 23px;
  }
  .blue-scrollbar::-webkit-scrollbar-thumb {
    background-color: #1e87f0;
    border-radius: 23px;
    border: 2px solid #000000;
  }
  
  .blue-scrollbar2{
    scrollbar-width: auto;
    scrollbar-color: #1e87f0 #9dbfcd;
  }
  .blue-scrollbar2::-webkit-scrollbar { /* Chrome, Edge, and Safari */
    width: 27px;
  }
  .blue-scrollbar2::-webkit-scrollbar-track {
    background: #e5e5e5;
    border-radius: 23px;
  }
  .blue-scrollbar2::-webkit-scrollbar-thumb {
    background-color: #1e87f0;
    border-radius: 23px;
    border: 2px solid #e5e5e5;
  }

/**
 * Bluebox - Caixas de marcação - Oit
 *
*/
  .selected-bluebox {
    background-color:#1e87f0;
    color: white;
  }

  .bluebox{
    cursor: pointer;
  }

/**
 * Efeito de Loading para Laudo e Pré-laudo
 *
*/
  .gelatine {
    animation: gelatine 0.8s infinite;
  }
  @keyframes gelatine {
    from, to { transform: scale(1, 1); }
    25% { transform: scale(0.9, 1.1); }
    50% { transform: scale(1.1, 0.9); }
    75% { transform: scale(0.95, 1.05); }
  }
  
  .emergency-car {
    position: relative;
    animation: emergency-car 1s infinite;
    animation-direction: alternate;
  }
  
  @keyframes emergency-car {
    0%{
      left: 0%;
    }
    100%{
      left: 60%;
      transform: rotate(-35deg);
    }
  }
  

/**
 * Button - Pulse
 *
*/
.pulse {
  box-shadow: 0,0,0 rgba(250,160,90, 1);
  transform: scale(1);
  animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(250,160,90, 0.4);
	}
	70% {
		-webkit-box-shadow: 0 0 0 10px rgba(250,160,90, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(250,160,90, 0);
  }
}

@keyframes pulse {
	0% {
		-moz-box-shadow: 0 0 0 0 rgba(250,160,90, 0.4);
    box-shadow: 0 0 0 0 rgba(250,160,90, 0.4);
	}
	70% {
		-moz-box-shadow: 0 0 0 10px rgba(250,160,90, 0);
    box-shadow: 0 0 0 10px rgba(250,160,90, 0);
	}
	100% {
		-moz-box-shadow: 0 0 0 0 rgba(250,160,90, 0);
    box-shadow: 0 0 0 0 rgba(250,160,90, 0);
  }
}

.phone-landscape {
  animation-name: spin;
  animation-duration: 1500ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-direction: alternate;
  --fa-secondary-opacity: 1.0;
  --fa-primary-color: gray;
  --fa-secondary-color: darkred;
}

@keyframes spin {
    0% {
        transform:rotate(0deg);
        --fa-secondary-color: darkred;
    }
    30% {
        transform:rotate(0deg);
        --fa-secondary-color: darkred;
    }
    70% {
        transform:rotate(90deg);
        --fa-secondary-color: darkgreen;
    }
    100% {
      transform:rotate(90deg);
      --fa-secondary-color: darkgreen;
  }
}

/**
 * Border
 */
/* LIGHT */
.border-silver-light-3{
  border: dashed 3px #e6e6e6;
}
.border-silver-light-top-3{
  border-top: dashed 3px #e6e6e6;
}
.border-silver-light-bottom-3{
  border-bottom: dashed 3px #e6e6e6;
}
.border-silver-light-left-3{
  border-left: dashed 3px #e6e6e6;
}
.border-silver-light-right-3{
  border-right: dashed 3px #e6e6e6;
}

.border-silver-light{
  border: solid 1px #e6e6e6;
}
.border-silver-light-top{
  border-top: solid 1px #e6e6e6;
}
.border-silver-light-bottom{
  border-bottom: solid 1px #e6e6e6;
}
.border-silver-light-left{
  border-left: solid 1px #e6e6e6;
}
.border-silver-light-right{
  border-right: solid 1px #e6e6e6;
}

/* MEDIUM */
.border-silver-medium-3{
  border: dashed 3px #d6d6d6;
}
.border-silver-medium-top-3{
  border-top: dashed 3px #d6d6d6;
}
.border-silver-medium-bottom-3{
  border-bottom: dashed 3px #d6d6d6;
}
.border-silver-medium-left-3{
  border-left: dashed 3px #d6d6d6;
}
.border-silver-medium-right-3{
  border-right: dashed 3px #d6d6d6;
}
  
.border-silver-medium{
  border: solid 1px #d6d6d6;
}
.border-silver-medium-top{
  border-top: solid 1px #d6d6d6;
}
.border-silver-medium-bottom{
  border-bottom: solid 1px #d6d6d6;
}
.border-silver-medium-left{
  border-left: solid 1px #d6d6d6;
}
.border-silver-medium-right{
  border-right: solid 1px #d6d6d6;
}

/* HARD */
.border-silver-hard-3{
  border: dashed 3px #888;
}
.border-silver-hard-top-3{
  border-top: dashed 3px #888;
}
.border-silver-hard-bottom-3{
  border-bottom: dashed 3px #888;
}
.border-silver-hard-left-3{
  border-left: dashed 3px #888;
}
.border-silver-hard-right-3{
  border-right: dashed 3px #888;
}

.border-silver-hard-dashed{
  border: dashed 1px #888;
}
.border-silver-hard-top-dashed{
  border-top: dashed 1px #888;
}
.border-silver-hard-bottom-dashed{
  border-bottom: dashed 1px #888;
}
.border-silver-hard-left-dashed{
  border-left: dashed 1px #888;
}
.border-silver-hard-right-dashed{
  border-right: dashed 1px #888;
}

.border-silver-hard{
    border: solid 1px #444;
}
.border-silver-hard-top{
    border-top: solid 1px #444;
}
.border-silver-hard-bottom{
    border-bottom: solid 1px #444;
}
.border-silver-hard-left{
    border-left: solid 1px #444;
}
.border-silver-hard-right{
    border-right: solid 1px #444;
}

.border-primary-hard-dashed{
  border: dashed 1px #1e87f0;
}
.border-primary-hard-top-dashed{
  border-top: dashed 1px #1e87f0;
}
.border-primary-hard-bottom-dashed{
  border-bottom: dashed 1px #1e87f0;
}
.border-primary-hard-left-dashed{
  border-left: dashed 1px #1e87f0;
}
.border-primary-hard-right-dashed{
  border-right: dashed 1px #1e87f0;
}
/**
 * Font
 */
.text-xsmall {
  font-size: 0.680rem !important;
  line-height: 1.5;
}
.text-light-extra {
  color: rgba(255,255,255,0.9)
}

/* Fonte para distinguir caracteres 0, O, I, L, etc
========================================================================== */
.distinguish-font{
  font-family: Consolas, monaco, monospace;
  letter-spacing: 2px;
  /* font-style: normal; */
}

/* Texto Verde-escuro
========================================================================== */
.text-darkgreen {
  color: #227917;
  }
/* Hover */
.text-darkgreen:hover {
  color: #1c6113;
}
/* OnClick + Active */
.text-darkgreen:active,
.text-darkgreen.uk-active {
  color: #164d0f;
}

/* Texto com Outline (Text Shadow)
========================================================================== */
.text-outline-white {
	font: Tahoma, Geneva, sans-serif;
    color: white;
    text-shadow:
    /* Outline */
    -1px -1px 0 #000000,
    1px -1px 0 #000000,
    -1px 1px 0 #000000,
    1px 1px 0 #000000,  
    -1px 0 0 #000000,
    1px 0 0 #000000,
    0 1px 0 #000000,
    0 -1px 0 #000000;
}

/* Capitalize
========================================================================== */
.capitalizeAll
{
    text-transform:capitalize;
}

/**
 * Cursor
 */
.cursor-pointer{
  cursor: pointer;
}
.cursor-nodrop{
  cursor: no-drop;
}

/**
 * Background
 */
.background-muted-medium {
  background-color: #e6e6e6;
}

.uk-background-blue {
background-color: #024ac2;
}

.uk-background-dark-blue {
background-color: #0a1a42;
}

.uk-background-sidebar {
background-color: #1F2937;
}

.uk-background-danger {
background-color: #f0506e;
}

.uk-background-warning {
  background-color: #faa05a;
}

.uk-background-success {
  background-color: #32d296;
}

.uk-background-purple {
  background-color: #939;
}

.background-report-title{
  background-color: #e6e6e6 !important;
}

.background-report-type{
  background-color: #f8f8f8 !important;
}

.uk-background-dark-blue-hover:hover {
  background-color: #0d2153;
  border: solid 3px #0d2153 !important;
}

.uk-background-alert-primary-hover:hover {
  background-color: #c6e0fb !important;
  
}

/**
 * Button
 */
.uk-button-success {
  background-color: #32d296;
  color: #fff;
  border: 1px solid transparent;
}
/* Hover */
.uk-button-success:hover {
  background-color: #45bf91;
  color: #fff;
}
/* OnClick + Active */
.uk-button-success:active,
.uk-button-success.uk-active {
  background-color: #58ac8c;
  color: #fff;
}

.uk-button-warning {
  background-color: #faa05a;
  color: #fff;
  border: 1px solid transparent;
  }
/* Hover */
.uk-button-warning:hover {
  background-color: #f98a34;
  color: #fff;
}

.uk-button-success:disabled,
.uk-button-warning:disabled {
  background-color: transparent;
  color: #999;
  border-color: #e5e5e5;
}

/* OnClick + Active */
.uk-button-warning:active,
.uk-button-warning.uk-active {
  background-color: #f87f21;
  color: #fff;
}

.uk-button-secondary {
  background-color: #222;
  color: #fff;
  border: 1px solid transparent;
  }
/* Hover */
.uk-button-secondary:hover {
  background-color: #0e0e0e;
  color: #fff;
}
/* OnClick + Active */
.uk-button-secondary:active,
.uk-button-secondary.uk-active {
  background-color: #050505;
  color: #fff;
}

/* Hover */
.uk-button-secondary:hover {
  background-color: #939;
  color: #fff;
}
/* OnClick + Active */
.uk-button-purple:active,
.uk-button-purple.uk-active {
  background-color: #939;
  color: #fff;
}

.button-darkred {
  background-color: #791717;
  color: #fff;
  border: 1px solid transparent;
  }
/* Hover */
.button-darkred:hover {
  background-color: #571010;
  color: #fff;
}
/* OnClick + Active */
.button-darkred:active,
.button-darkred.uk-active {
  background-color: #440d0d;
  color: #fff;
}

.button-orange {
  background-color: #c98225;
  color: #fff;
  border: 1px solid transparent;
  }
/* Hover */
.button-orange:hover {
  background-color: #a1681e;
  color: #fff;
}
/* OnClick + Active */
.button-orange:active,
.button-orange.uk-active {
  background-color: #654113;
  color: #fff;
}

.button-darkgreen {
  background-color: #227917;
  color: #fff;
  border: 1px solid transparent;
  }
/* Hover */
.button-darkgreen:hover {
  background-color: #1c6113;
  color: #fff;
}
/* OnClick + Active */
.button-darkgreen:active,
.button-darkgreen.uk-active {
  background-color: #164d0f;
  color: #fff;
}

.uk-text-purple{
  color: #939
}

/**
 * Icon
 */
.hover-selected:hover{
  border: solid 1px #444;
  background-color: rgba(0,0,0,0.05);
  cursor: pointer;
}

.uk-alert-hover:hover{
  background-color: #eee;
}

.uk-alert-primary-hover:hover{
  background-color: #c6e0fb;
}

.uk-alert-warning-hover:hover{
  background-color: #ffecda;
}

.uk-alert-success-hover:hover{
  background-color: #ddf7ee;
}

.uk-alert-danger-hover:hover{
  background-color: #fce2e7;
}

/**
 * Padding
 */
.padding-xsmall {
  padding: 5px;
}

/**
 * Width
 */
 .width-xsmall {
  width: 75px;
}

/**
 * Timeline
 */
.timeline .timeline-item {
  display: flex;
  position: relative;
}

.timeline .timeline-item::before {
  background: #b1d5fa;
  content: "";
  height: 100%;
  left: 19px;
  position: absolute;
  width: 3px;
  z-index: -1;
}

.timeline .timeline-item .timeline-icon .uk-badge {
  margin-top: 26px;
  width: 40px;
  height: 40px;
}

.timeline .timeline-item .timeline-content {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 0 0 0 1rem;
}

/**
 * Proposal
 */

.proposal-page-width {
  min-width: 210mm;
  max-width: 210mm;
}

.proposal-page-height {
  min-height: 297mm;
  max-height: 297mm;
}

.page-a4{
  min-width: 210mm;
  max-width: 210mm;
  min-height: 297mm;
  max-height: 297mm;
}

/**
 * Box Shadow
 */
.box-shadow-primary-alert {
  animation: box-shadow-primary-alert 2s infinite;
  box-shadow: 0 0 0 rgba(30,135,240, 0.6);
}

@keyframes box-shadow-primary-alert{
  0% {
    box-shadow: 0 0 0 0 rgba(30,135,240, 0.6);
    -moz-box-shadow: 0 0 0 0 rgba(30,135,240, 0.6);
  }
  70% {
    box-shadow: 0 0 0 30px rgba(30,135,240, 0);
    -moz-box-shadow: 0 0 0 30px rgba(30,135,240, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(30,135,240, 0);
    -moz-box-shadow: 0 0 0 0 rgba(30,135,240, 0);
  }
}

.box-shadow-muted-alert {
  box-shadow: 0 0 0 0 rgba(102, 102, 102, 0.6);
  animation: box-shadow-muted-alert 2s infinite;
}

@keyframes box-shadow-muted-alert{
  0% {
    box-shadow: 0 0 0 0 rgba(102, 102, 102, 0.6);
    -moz-box-shadow: 0 0 0 0 rgba(102, 102, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 30px rgba(102, 102, 102, 0);
    -moz-box-shadow: 0 0 0 30px rgba(102, 102, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(102, 102, 102, 0);
    -moz-box-shadow: 0 0 0 0 rgba(102, 102, 102, 0);
  }
}

.box-shadow-secondary-alert {
  box-shadow: 0 0 0 0 rgba(34, 34, 34, 0.6);
  animation: box-shadow-secondary-alert 2s infinite;
}

@keyframes box-shadow-secondary-alert{
  0% {
    box-shadow: 0 0 0 0 rgba(34, 34, 34, 0.6);
    -moz-box-shadow: 0 0 0 0 rgba(34, 34, 34, 0.6);
  }
  70% {
    box-shadow: 0 0 0 30px rgba(34, 34, 34, 0);
    -moz-box-shadow: 0 0 0 30px rgba(34, 34, 34, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 34, 34, 0);
    -moz-box-shadow: 0 0 0 0 rgba(34, 34, 34, 0);
  }
}

.box-shadow-danger-alert {
  box-shadow: 0 0 0 0 rgba(240, 80, 110, 0.6);
  animation: box-shadow-danger-alert 2s infinite;
}

@keyframes box-shadow-danger-alert{
  0% {
    box-shadow: 0 0 0 0 rgba(240, 80, 110, 0.6);
    -moz-box-shadow: 0 0 0 0 rgba(240, 80, 110, 0.6);
  }
  70% {
    box-shadow: 0 0 0 30px rgba(240, 80, 110, 0);
    -moz-box-shadow: 0 0 0 30px rgba(240, 80, 110, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(240, 80, 110, 0);
    -moz-box-shadow: 0 0 0 0 rgba(240, 80, 110, 0);
  }
}

.box-shadow-success-alert {
  box-shadow: 0 0 0 0 rgba(50, 210, 150, 0.6); 
  animation: box-shadow-success-alert 2s infinite;
}

@keyframes box-shadow-success-alert{
  0% {
    box-shadow: 0 0 0 0 rgba(50, 210, 150, 0.6);
    -moz-box-shadow: 0 0 0 0 rgba(50, 210, 150, 0.6);
  }
  70% {
    box-shadow: 0 0 0 30px rgba(50, 210, 150, 0);
    -moz-box-shadow: 0 0 0 30px rgba(50, 210, 150, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(50, 210, 150, 0);
    -moz-box-shadow: 0 0 0 0 rgba(50, 210, 150, 0);
  }
}

/**
 * Button Switch
 */
.uk-button-switch-default {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

/* Hide default HTML checkbox */
.uk-button-switch-default input {
  display: none;
}

/* Slider */
.uk-button-switch-slider {
  background-color: #ddd;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 500px;
  bottom: 0;
  cursor: pointer;
  transition-property: background-color;
	transition-duration: .2s;
  box-shadow: inset 0 0 2px rgba(0,0,0,0.07);
}
/* Switch pointer */
.uk-button-switch-slider:before {
  content: '';
  background-color: #fff;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 2px;
  bottom: 2px;
  border-radius: 50%;
  transition-property: transform, box-shadow;
	transition-duration: .2s;
}

/* Pointer active animation */
input:checked + .uk-button-switch-slider:before {
  transform: translateX(16px);
}

/* Modifiers */
.uk-button-switch-slider.uk-switch-on-off {
  background-color: #f0506e;
}
input:checked + .uk-button-switch-slider.uk-switch-on-off {
  background-color: #32d296 !important;
}

input:checked + .uk-button-switch-slider.uk-switch-primary {
  background-color: #39f !important;
}

input:checked + .uk-button-switch-slider.uk-switch-warning {
  background-color: #faa05a !important;
}

input:checked + .uk-button-switch-slider.uk-switch-success {
  background-color: #32d2969f !important;
}

/* .uk-button-switch-slider.uk-switch-danger {
  background-color: #f0506e !important;
} */

input:checked + .uk-button-switch-slider.uk-switch-danger {
  background-color: #f0506e !important;
}

.uk-button-switch-slider.uk-switch-secondary {
  background-color: #494949;
}

input:checked + .uk-button-switch-slider.uk-switch-secondary {
  background-color: #848484 !important;
}


/* Style Modifier */
.uk-button-switch-slider.uk-switch-big:before {
  transform: scale(1.2);
  box-shadow: 0 0 6px rgba(0,0,0,0.22);
}
.uk-button-switch-slider.uk-switch-small:before {
  box-shadow: 0 0 6px rgba(0,0,0,0.22);
}
input:checked + .uk-button-switch-slider.uk-switch-big:before {
  transform: translateX(26px) scale(1.2);
}

.position-xsmall{
  margin: 5px;
}

/* Overflow */
::-webkit-scrollbar {
  width: 8px;
}

#content .content .offcanvas-thumbnails ::-webkit-scrollbar {
  width: 1px;
}

#content .content [uk-overflow-auto]::-webkit-scrollbar {
  width: 1px;
}

::-webkit-scrollbar-thumb {
  background: #999;
}

#content .patient-data, .exam-data, .report-data{
  text-shadow: 0 0 3px #111;
}

.countdown-number {
  font-variant-numeric: tabular-nums;
  font-weight: bold;
}
/* Separator
 ========================================================================== */
.countdown-separator {
  content: ':';
  font-weight: bold;
}

.text-decoration-line-through{
  text-decoration: line-through;
}

/* Padding Report OIT */
.padding-oit{
  padding: 4px 10px;
}
.padding-oit-sub{
  padding: 0 4px;
}

@media print {
  @page {
    size: A4;
    margin: 0mm;
  }
  .background-report-title{
    background-color: #e6e6e6 !important;
  }
  .background-report-type{
    background-color: #f8f8f8 !important;
  }

  input[type=checkbox]:checked:before {
    border-width: 1px;
    border-color: transparent !important;
    background-color: #1e87f0 !important;
    border-style: solid;
    height: 100%;
    width: 100%;
    display: block;
    content: '';
  }

  input[type=radio]:checked:before {
    border-width: 1px;
    border-color: transparent !important;
    background-color: #1e87f0 !important;
    border-style: solid;
    height: 100%;
    width: 100%;
    display: block;
    content: '';
  }

  .bluebox{
    background-color: #1e87f0 !important;
    color: #fff !important;
  }

  .uk-background-success {
    background-color: #32d296 !important;
  }

  blockquote {
    border: transparent !important;
  }

  .uk-alert-primary {
    background: #d8eafc !important;
    color: #1e87f0 !important;
  }

  .uk-background-muted {
    background-color: #f8f8f8 !important;
  }

  .uk-alert-success {
    background: #edfbf6 !important;
    color: #32d296 !important;
  }

  /* Dicom print font color */
  #print .canvas .data{
    color: #fff !important;
    font-size: 20px;
  }

  body{
    color: #fff !important;
    font-size: 20px;
  }

}

.autocomplete-suggestions {
  border: 1px solid #d6d6d6; 
  background: #FFF; 
  overflow: auto; 
  background-color: #fff;
}
.autocomplete-suggestion {
  padding: 2px 5px; 
  white-space: nowrap; 
  overflow: hidden; 
  cursor: pointer;
}
.autocomplete-selected { background: #F0F0F0; }
.autocomplete-suggestions strong {
  font-weight: normal; 
  color: #3399FF; 
}
.autocomplete-group { padding: 2px 5px; }
.autocomplete-group strong { 
  display: block; 
  border-bottom: 1px solid #000; 
}

.code{
  font-family: Consolas,monaco,monospace;
  font-size: .775rem;
}

.financial-report-clinics-margin-top:nth-child(n+2){
   margin-top: 15px;
}

li#for-users .for-users > div:nth-child(n+2),
li#for-exams .for-users > div:nth-child(n+2){
  margin-top: 15px;
}

.layout .marked{
  border: solid 1px #1e87f0;
}

#accordion > div:nth-child(n + 2){
  margin-top: 15px
}

.offcanvas-large .uk-offcanvas-bar {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(-33.333vw);
  /* 2 */
  box-sizing: border-box;
  width: calc(33.333vw);
  padding: 15px;
  background: #222;
  /* 3 */
  overflow-y: auto;
}

.offcanvas-large.uk-offcanvas-flip .uk-open > .uk-offcanvas-bar {
  left: auto;
  right: 0;
}

.offcanvas-large.uk-offcanvas-flip .uk-offcanvas-bar-animation {
  transition-property: right;
}

.offcanvas-large.uk-offcanvas-flip .uk-offcanvas-reveal .uk-offcanvas-bar {
  /* 4 */
  left: auto;
  right: 0;
}

.offcanvas-large.uk-offcanvas-flip .uk-offcanvas-reveal {
  right: 0;
  left: auto;
}

.offcanvas-large.uk-offcanvas-flip.uk-offcanvas-container-animation {
  left: calc(-33.333vw);
}

.uk-range::-webkit-slider-runnable-track {  
  background-color: orange;
}

.uk-range:focus::-webkit-slider-runnable-track {  
  background-color: orange;
}

.uk-range::-moz-range-track {  
  background-color: orange;
}

.uk-range:focus::-moz-range-track {  
  background-color: orange;
}

.uk-range::-webkit-slider-thumb {  
  background-color: orange;
}

.uk-range:focus::-moz-range-thumb {  
  background-color: orange;
}

th .th-input {
  border-left: none;
  border-top: none;
  border-right: none;
  border-bottom: solid 1px #d6d6d6;
  background-color: transparent !important;
  box-shadow: 0 0 0 0;
  outline: none;
  font-size: 0.680rem !important;
  font-weight: 400;
  color: #999;
  text-transform: uppercase;
  text-decoration: none;
  padding: 4px;
}

th .th-input:focus {
  background-color: #fdfdfd !important;
  box-shadow: 0 0 0 0;
  outline: none;
  font-size: 0.680rem !important;
  font-weight: 400;
  color: #999;
  text-transform: uppercase;
  text-decoration: none;
}

th .icon{
  cursor: pointer;
  font-size: 1.469rem !important;
  color: #444;
}


/* TIMELINE NEW */
/* .timeline-modal {
  min-width: 300px;
  margin: auto;
} */

.timeline-modal .item {  
  border-top: 3px solid;
  -o-border-image: linear-gradient(to right, #743ad5 0%, #d53a9d 100%);
     border-image: linear-gradient(to right, #743ad5 0%, #d53a9d 100%);
  border-image-slice: 1;
  border-width: 3px;
  margin: 0;
  padding: 40px;
  counter-increment: section;
  position: relative;
  color: #34435E;
}
.timeline-modal .item:before {
  content: counter(section);
  position: absolute;
  border-radius: 50%;
  padding: 10px;
  height: 1.25em;
  width: 1.25em;
  background-color: #34435E;
  text-align: center;
  line-height: 1.25em;
  color: #ffffff;
  font-size: 1em;
}

.timeline-modal .item:nth-child(odd) {
  border-right: 3px solid;
  padding-left: 0;
}
.timeline-modal .item:nth-child(odd):before {
  left: 100%;
  margin-left: -20px;
}

.timeline-modal .item:nth-child(even) {
  border-left: 3px solid;
  padding-right: 0;
}
.timeline-modal .item:nth-child(even):before {
  right: 100%;
  margin-right: -20px;
}

.timeline-modal .item:first-child {
  border-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.timeline-modal .item:last-child {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}