/*
.gradient {
  background: linear-gradient(90deg,#33ccff, #cc00ff 50%, #ff00bb 73%,#ffbb00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
*/
/*
.gradient {
  background: #363636;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
*/
/*
loader ring
 */
.lds-dual-ring {
  display: none;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  position: absolute;
  right: 20px;
  top: 6px;
}
.loading {
  opacity: 0.3;
}
.loading .lds-dual-ring {
  display: inline-block;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 20px;
  height: 20px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #7aa6c7;
  border-color: #7aa6c7 transparent #7aa6c7 transparent;
  animation: lds-dual-ring 1.3s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
svg {
  fill: currentColor;
}
.btn {
  display: inline-block;
  background-image: linear-gradient(45deg, #812fe5, #5fc4f8);
  color: #fff;
  text-align: center;
  text-decoration: none;
  width: 100%;
  border-radius: 10px;
  font-family: "Lexend";
  border: 0px solid #fff;
  transition: all 300ms;
  position: relative;
  line-height: 50px;
  height: 50px;
  font-size: 16px;
}
.btn span {
  font-family: "Lexend";
  color: #fff;
  line-height: 50px;
  height: 50px;
  font-size: 16px;
  font-weight: 500;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.btn_big {
  font-size: 28px;
  line-height: 60px;
  font-weight: 700;
}
.btn_small {
  border-radius: 6px;
  border-width: 2px;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  padding-left: 12px;
  padding-right: 12px;
  width: auto;
}
.btn:hover {
  background-color: #363636;
  color: #fff;
}
.notificationalert {
  width: 100%;
  max-width: 400px;
  position: fixed;
  z-index: 600;
  top: 20px;
  right: 20px;
  padding: 20px;
  border-radius: 10px;
  background: linear-gradient(90deg, #fa9f00, #e1c400);
  color: #fff;
  transform: translateX(600px);
  transition: all 400ms;
}
.notificationalert_error {
  background: linear-gradient(90deg, #e8935e, #e246bd);
}
.notificationalert_success {
  background: linear-gradient(90deg, #7b47e9, #64aff6);
}
.notificationalert_info {
  background: linear-gradient(90deg, #56c2f6, #5a99e5);
}
.notificationalert.active {
  transform: translateX(0px);
}
.notificationalert__title {
  font-weight: bold;
  display: block;
  text-align: left;
  line-height: 30px;
}
.notificationalert__close {
  position: absolute;
  font-weight: bold;
  font-size: 32px;
  line-height: 20px;
  top: 10px;
  right: 10px;
  text-decoration: none;
  color: #fff;
}
.custom_checkbox {
  /* для элемента input c type="checkbox" */
  /* для элемента label, связанного с .custom-checkbox */
  /* создание в label псевдоэлемента before со следующими стилями */
  /* стили при наведении курсора на checkbox */
  /* стили для активного чекбокса (при нажатии на него) */
  /* стили для чекбокса, находящегося в фокусе */
  /* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
  /* стили для чекбокса, находящегося в состоянии checked */
  /* стили для чекбокса, находящегося в состоянии disabled */
}
.custom_checkbox > input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.custom_checkbox > span {
  display: inline-flex;
  align-items: center;
  user-select: none;
  font-size: 16px;
  line-height: 20px;
  font-family: "Lexend";
  color: #807F89;
  cursor: pointer;
}
.custom_checkbox > span::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #DFDFEB;
  border-radius: 2px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}
.custom_checkbox > input:not(:disabled):not(:checked) + span:hover::before {
  border-color: #b3d7ff;
}
.custom_checkbox > input:not(:disabled):active + span::before {
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}
.custom_checkbox > input:focus + span::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom_checkbox > input:focus:not(:checked) + span::before {
  border-color: #80bdff;
}
.custom_checkbox > input:checked + span::before {
  border-color: #5746FB;
  background-color: #5746FB;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
.custom_checkbox > input:disabled + span::before {
  background-color: #e9ecef;
}
