/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
/***
 COLOR START
 ***/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&display=swap');
/* ===========================================================================================
============================================================================================== */
/* Override variables ant start */
/* Override variables ant end */
.ant-switch {
  margin: 0;
  padding: 0;
  color: #1d2939;
  font-size: 16px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  min-width: 40px;
  height: 16px;
  line-height: 16px;
  vertical-align: middle;
  background-color: #f2f4f7;
  border-radius: 16px;
  border: 0;
  cursor: pointer;
  transition: all 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.ant-switch:focus {
  outline: 0;
}
.ant-switch-checked:focus {
  box-shadow: 0 0 0 2px #fff3e6;
}
.ant-switch:focus:hover {
  box-shadow: none;
}
.ant-switch-checked {
  background: #f4600c;
}
.ant-switch-checked.ant-switch-disabled {
  background-color: #fccfb6;
}
.ant-switch-checked.ant-switch-disabled .ant-switch-handle::before {
  background-color: #fcfcfd !important;
}
.ant-switch-loading,
.ant-switch-disabled {
  cursor: not-allowed;
}
.ant-switch-loading *,
.ant-switch-disabled * {
  box-shadow: none;
  cursor: not-allowed;
}
.ant-switch-inner {
  display: block;
  margin: 0 4px 0 24px;
  color: #fff;
  font-size: 14px;
  transition: margin 0.2s;
}
.ant-switch-checked .ant-switch-inner {
  margin: 0 24px 0 4px;
}
.ant-switch-handle {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 24px;
  height: 24px;
  transition: all 0.2s ease-in-out;
}
.ant-switch-handle::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0px 0.5px 1px rgba(0, 0, 0, 0.12), 0px 1px 4px rgba(0, 0, 0, 0.24);
  transition: all 0.2s ease-in-out;
  content: '';
}
.ant-switch.ant-switch-disabled .ant-switch-handle::before {
  background-color: #eaecf0;
}
.ant-switch-checked .ant-switch-handle {
  left: calc(100% - 24px);
}
.ant-switch:not(.ant-switch-disabled):active .ant-switch-handle::before {
  right: -30%;
  left: 0;
}
.ant-switch:not(.ant-switch-disabled):active.ant-switch-checked .ant-switch-handle::before {
  right: 0;
  left: -30%;
}
.ant-switch-loading-icon.anticon {
  position: relative;
  top: 4px;
  color: rgba(0, 0, 0, 0.65);
  vertical-align: top;
}
.ant-switch-checked .ant-switch-loading-icon {
  color: #f4600c;
}
.ant-switch-small {
  min-width: 28px;
  height: 10px;
  line-height: 10px;
}
.ant-switch-small .ant-switch-inner {
  margin: 0 3px 0 11px;
  font-size: 14px;
}
.ant-switch-small .ant-switch-handle {
  width: 18px;
  height: 18px;
}
.ant-switch-small .ant-switch-loading-icon {
  top: 4.5px;
  font-size: 9px;
}
.ant-switch-small.ant-switch-checked .ant-switch-inner {
  margin: 0 11px 0 3px;
}
.ant-switch-small.ant-switch-checked .ant-switch-handle {
  left: calc(100% - 18px);
}
.ant-switch-rtl {
  direction: rtl;
}
.ant-switch-rtl .ant-switch-inner {
  margin: 0 24px 0 4px;
}
.ant-switch-rtl .ant-switch-handle {
  right: 2px;
  left: auto;
}
.ant-switch-rtl:not(.ant-switch-rtl-disabled):active .ant-switch-handle::before {
  right: 0;
  left: -30%;
}
.ant-switch-rtl:not(.ant-switch-rtl-disabled):active.ant-switch-checked .ant-switch-handle::before {
  right: -30%;
  left: 0;
}
.ant-switch-rtl.ant-switch-checked .ant-switch-inner {
  margin: 0 4px 0 24px;
}
.ant-switch-rtl.ant-switch-checked .ant-switch-handle {
  right: calc(100% - 24px);
}
.ant-switch-rtl.ant-switch-small.ant-switch-checked .ant-switch-handle {
  right: calc(100% - 18px);
}
