/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}


.nav.nav-tabs.nav-tabs-vertical {
    border-bottom:0
}

.nav.nav-tabs.nav-tabs-vertical .nav-link {
    cursor: pointer;
    width: 100%;
    border-radius: 6px;
    padding: 15px 15px;
    margin-bottom: 6px;
    color: #5d5d5d;
    background-color:#ffffff;
    font-weight: 500;
    font-size: 15px;
    border: 0px;
    transition: all .3s ease;
}

.nav.nav-tabs.nav-tabs-vertical .nav-link:first-child {

    
}

.nav.nav-tabs.nav-tabs-vertical .nav-link:last-child {

    
}

.nav.nav-tabs.nav-tabs-vertical .nav-link:hover {
    color: #191919;
    cursor: pointer;
    background: #f8f9fa;
    border: 0px;
}

.nav.nav-tabs.nav-tabs-vertical .nav-link.active {
    color: #191919;
    background: #f8f9fa;
    border: 0px;
}

.table-services{
    color: #5d5d5d;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    overflow: hidden;
    background: #f8f9fa;
    transition: all .3s ease;
    margin-bottom: 10px;
    cursor: pointer;
}

.table-services:hover{
    color: #191919;
    transform: translateX(5px);
    background: #f8f9fa;
}

.table-services .quantity span{
    background: transparent;
    padding: 0;
    margin-right: 6px;
    color: #5d5d5d;
    font-weight: 400;
    font-size: 13px;
}

.table-services .image-div-last{
    overflow: hidden;
    border-radius: 0 6px 6px 0;
    /*clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);*/
    -webkit-border-radius: 0 6px 6px 0;
}

.table-services .image-div-last img{
    opacity: 1;
    filter: grayscale(60%);
    transition: all .3s ease;
    border-radius: 0 6px 6px 0;
    -webkit-border-radius: 0 6px 6px 0;
}

.table-services:hover .image-div-last img{
    filter: grayscale(20%);
   transform-origin: 50% 50%;
   opacity: 1;
    
}


.table-services tr.table-collapsed td:first-child{
    border-radius: 6px 0 0 6px;
}
.table-services tr.table-collapsed td:last-child{
    border-radius: 0 6px 6px 0;
}


.show-tablet {
    display: none;
    visibility:hidden
}

@media (max-width: 991.98px) {
    .hide-tablet {
        display: none;
        visibility:hidden
    }

    .show-tablet {
        display: block;
        visibility:visible
    }
} 
    
