/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.loading-icon{
    display: none;
}
.ui-timepicker-wrapper{
    width: 150px;
}
.gd-pagination-nav li{
    position: relative;
    cursor: pointer;
}
.gd-pagination-nav li input[type=radio]{
    position: absolute;
    z-index: 99;
    width: 100%;
    height: 100%;
    opacity: 0;
    left: 0;
    top: 0;
    cursor: pointer;
}

.fc-day-top{
    background: var(--primary-color) !important;
}

table.dataTable thead .dt-orderable-asc, table.dataTable thead .dt-orderable-desc{
    background-image: none !important;
}
.step-list__item .line {
    width: 20px !important;
}
input[type=radio]{
    position: absolute;
    opacity: 0;
}
table tbody tr td{
    border-bottom: 1px solid #f1f1f1;
}

@media(max-width:991px){
    .dash-title{
        display: none;
    }
}

.taxonomy-list ul ul{
    padding-left: 1rem;
    margin: 0;
    list-style: disc;
}
.taxonomy-list ul ul li{
    margin-bottom: 15px;
}

.taxonomy-list-add-res ul > ul{
    padding-left: 1rem;
    margin: 0;
}
.taxonomy-list-add-res ul ul li{
    margin-bottom: 10px;
}

#main_svg {
  pointer-events: all;
}
.svg-clicks {
  display: block;  
  cursor: pointer;
}
#svg_filter_img tspan{
   font-weight: 900; 
}
.svg-middle tspan{
    font-size: 50px;
    font-weight: 900;
}
.helement{
    display: block;  
    cursor: pointer;
}
.helement:hover{
    fill:rgba(252, 227, 45, 1);
}

.custom-file{
    padding: 8px 16px;
    background-color: transparent !important;
    border: 1px solid var(--gray-100);
    border-radius: 5px;
}

#rotating-group {
    transform-origin: center;
    animation: rotatePath 50s linear infinite;
}

@keyframes rotatePath {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
}


@keyframes swing {
  0%   { transform: rotate(-12deg); }
  50%  { transform: rotate(12deg); }
  100% { transform: rotate(-12deg); }
}

#pendulum {
  transform-origin: center center; /* Or set a custom pivot with percentages */
  animation: swing 2s ease-in-out infinite;
}



/*

  .switch-color1 {
    fill: #FFFFFF;
    animation: colorSwitch1 4s infinite alternate;
  }

  .switch-color2 {
    fill: #2B0E78;
    animation: colorSwitch2 4s infinite alternate;
  }

  @keyframes colorSwitch1 {
    0% { fill: #FFFFFF; }
    100% { fill: #2B0E78; }
  }

  @keyframes colorSwitch2 {
    0% { fill: #2B0E78; }
    100% { fill: #FFFFFF; }
  }


*/





.selected-sub-cat{
    background-color: #1d72f2 !important;
    color: #fff !important;
}