@charset "UTF-8";
/* Vuexy Custom Checkbox */

.vs-checkbox-con {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: start;
          justify-content: flex-start;
  margin: 0.25rem 0;
}

.vs-checkbox-con input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 200;
  cursor: pointer;
  top: 0;
}

.vs-checkbox-con input:checked ~ .vs-checkbox {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  border-color: #7367f0;
}

.vs-checkbox-con input:checked ~ .vs-checkbox .vs-checkbox--check {
  -webkit-transform: translate(0);
          transform: translate(0);
  background-color: #7367f0;
}

.vs-checkbox-con input:checked ~ .vs-checkbox .vs-checkbox--check .vs-icon {
  -webkit-transform: translate(0);
          transform: translate(0);
  line-height: 1.2;
  opacity: 1;
}

.vs-checkbox-con input:checked ~ .vs-checkbox.vs-checkbox-sm .vs-checkbox--check .vs-icon {
  font-size: 0.75rem;
}

.vs-checkbox-con input:checked ~ .vs-checkbox.vs-checkbox-lg .vs-checkbox--check .vs-icon {
  font-size: 1.2rem;
}

.vs-checkbox-con input:active:checked + .vs-checkbox .vs-checkbox--check {
  -webkit-transform: translate(3px);
          transform: translate(3px);
  background-color: #7367f0;
}

.vs-checkbox-con input:active:checked + .vs-checkbox .vs-checkbox--check .vs-icon {
  opacity: 1;
  -webkit-transform: translate(6px);
          transform: translate(6px);
}

.vs-checkbox-con input:disabled {
  cursor: default;
  pointer-events: none;
}

.vs-checkbox-con input:disabled + .vs-checkbox {
  cursor: default;
  opacity: 0.5;
}

.vs-checkbox-con .vs-checkbox {
  cursor: pointer;
  position: relative;
  width: 20px;
  height: 20px;
  border-width: 2px;
  border-style: solid;
  border-color: #b8c2cc;
  border-radius: 2px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  overflow: hidden;
  margin-right: 0.5rem;
}

.vs-checkbox-con .vs-checkbox.vs-checkbox-sm {
  width: 15px;
  height: 15px;
}

.vs-checkbox-con .vs-checkbox.vs-checkbox-lg {
  width: 24px;
  height: 24px;
}

.vs-checkbox-con .vs-checkbox .vs-checkbox--check {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  -webkit-transform: translate(100%);
          transform: translate(100%);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 10;
}

.vs-checkbox-con .vs-checkbox .vs-checkbox--check .vs-icon {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  color: #fff;
}

/* Vuexy Custom Radio */

.vs-radio-con {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: start;
          justify-content: flex-start;
  margin: 0.25rem 0;
}

.vs-radio-con input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 200;
  cursor: pointer;
}

.vs-radio-con input:checked ~ .vs-radio {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  outline: 0;
}

.vs-radio-con input:checked ~ .vs-radio .vs-radio--circle {
  background: #7367f0;
  box-shadow: 0 3px 12px 0 rgba(115, 103, 240, 0.4);
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.vs-radio-con input:checked ~ .vs-radio .vs-radio--border {
  opacity: 0;
  -webkit-transform: scale(0.3);
          transform: scale(0.3);
}

.vs-radio-con input:disabled {
  cursor: default;
  pointer-events: none;
}

.vs-radio-con input:disabled + .vs-radio {
  cursor: default;
  opacity: 0.5;
}

.vs-radio-con input:active ~ .vs-radio {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.vs-radio-con .vs-radio {
  cursor: pointer;
  position: relative;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-right: 0.5rem;
}

.vs-radio-con .vs-radio.vs-radio-sm {
  width: 13px;
  height: 13px;
}

.vs-radio-con .vs-radio.vs-radio-lg {
  width: 22px;
  height: 22px;
}

.vs-radio-con .vs-radio .vs-radio--border,
.vs-radio-con .vs-radio .vs-radio--circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  top: 0;
  border-radius: 50%;
}

.vs-radio-con .vs-radio .vs-radio--border {
  background: transparent;
  border: 2px solid #b8c2cc;
}

.vs-radio-con .vs-radio .vs-radio--circle {
  opacity: 0;
  -webkit-transform: scale(0.1);
          transform: scale(0.1);
}
