body {
  margin: 0;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
}

.course-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.alogritm-theme {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0 auto;


}

#suggest_code_options,
#invoice_options {
  display: none;
}

#loader_box {
  display: none;
  filter: none;
  pointer-events: auto;
}

.blur_active {
  background-size: cover;
  filter: blur(5px);
  pointer-events: none;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}



#result_repair_add {
  display: none;
}

#algoritm {
  margin-bottom: 30px;
}

.alogritm-theme div {
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: #fdfdfd;
  border: 2px solid #8f8e96;
  border-radius: 50%;
  flex: 0 0 22%;
  color: #fdfdfd;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;



}

.alogritm-theme div.box-pattern-show {

  width: 30px;
  height: 30px;
  background-color: #fdfdfd;
  border: 2px solid #8f8e96;
  border-radius: 50%;
  flex: 0 0 22%;
  color: #fdfdfd;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;



}



.active-algoritm {
  background-color: #7367f0 !important;
}

.disable-click {
  pointer-events: none;
}

#loading-bg {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--initial-loader-bg, #fff);
  block-size: 100%;
  gap: 1rem 0;
  inline-size: 100%;
}

.loading {
  position: relative;
  box-sizing: border-box;
  border: 3px solid transparent;
  border-radius: 50%;
  block-size: 55px;
  inline-size: 55px;
}

.loading .effect-1,
.loading .effect-2,
.loading .effect-3 {
  position: absolute;
  box-sizing: border-box;
  border: 3px solid transparent;
  border-radius: 50%;
  block-size: 100%;
  border-inline-start: 3px solid var(--initial-loader-color, #eee);
  inline-size: 100%;
}

.custom-radio.active {
  border-width: 10px !important;
}

.loading .effect-1 {
  animation: rotate 1s ease infinite;
}

.loading .effect-2 {
  animation: rotate-opacity 1s ease infinite 0.1s;
}

.loading .effect-3 {
  animation: rotate-opacity 1s ease infinite 0.2s;
}

.loading .effects {
  transition: all 0.3s ease;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(1turn);
  }
}

@keyframes rotate-opacity {
  0% {
    opacity: 0.1;
    transform: rotate(0deg);
  }

  100% {
    opacity: 1;
    transform: rotate(1turn);
  }
}
