html {
  font-family: "Roboto";
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100%;
  margin: 0px;
}

::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  transition: all ease 0.5s;
}

/* Track */

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */

::-webkit-scrollbar-thumb {
  background: #b8b8b8;
  border-radius: 10px;
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
  background: #8f8f8f;
}

a {
  text-decoration: none;
}

a:visited {
  color: inherit;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  cursor: pointer;
}

select {
  border: 0px;
}

input:focus,
select:focus,
button:focus {
  outline: none !important;
}

button .loader {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

button .loader img {
  height: 100%;
}

.error-box {
  padding: 0;
  color: #b94b4b;
  font-size: 12px;
  width: 100%;
  margin-bottom: 5px;
  line-height: 16px;
}


/*==================================== FORMS ====================================*/

.field {
  font-size: 0px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5px;
}

.field label {
  color: #8a8a8a;
  padding-bottom: 7px;
  display: block;
  font-size: 0.95rem;
  flex: 1;
  min-width: 100%;
}

.field.field-input-no-margin .field-input {
  margin-bottom: 0px !important;
}

.field.field-input-smaller .select {
  height: 30px !important;
  line-height: 30px !important;
}

.field .field-input {
  border: 1px solid hsl(var(--main-hue), calc(var(--main-sat) - 36%), calc(var(--main-lum) + 35%));
  background-color: white;
  border-radius: 5px;
  margin-bottom: 10px;
  width: 100%;
  display: flex;
  box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.04);
  transition: all ease 0.3s;
}

.field .field-input input:not([type='checkbox']):not([type='file']):not([type='radio']) {
  width: 100%;
  display: block;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  background: none;
  padding: 5px 15px;
  color: #8a8a8a;
  font-weight: 300;
  transition: all ease 0.5s;
  outline: none !important;
  border: 0px;
}

.field .field-input textarea {
  width: 100%;
  display: block;
  height: 100px;
  line-height: 20px;
  font-size: 15px;
  background: none;
  padding: 5px 15px;
  color: #8a8a8a;
  font-weight: 300;
  transition: all ease 0.5s;
  outline: none !important;
  border: 0px;
}

.field .field-input .select {
  width: 100%;
  display: inline-flex;
  height: 40px;
  line-height: 40px;
  background-color: transparent;
  font-size: 15px;
  color: #8a8a8a;
  font-weight: 300;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  outline: none !important;
  cursor: pointer;
  z-index: 100;
  position: relative;
  padding: 0px 7px;
}

.field .field-input .select-small {
  height: 27px;
  line-height: 27px;
}

.field .field-input .select-multiple {
  align-items: center;
  flex-wrap: wrap;
  height: auto !important;
  min-height: 40px;
  padding: 5px 0px 2px 5px;
}

.field .field-input-icon input,
.field .field-input-icon .select {
  display: inline-flex;
  width: calc(100% - 50px);
  padding-left: 3px !important;
}

.field .field-input-icon .icon-input {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  text-align: center;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  transition: all ease 0.5s;
  background: none;
}

.field .field-input-icon .icon-input i {
  line-height: 16px;
  font-size: 20px;
  color: hsl(var(--main-hue), calc(var(--main-sat) - 5%), calc(var(--main-lum) + 19%));
}

.field .field-input:focus-within {
  border-color: hsl(var(--main-hue), calc(var(--main-sat) + 16%), calc(var(--main-lum) + 11%));
  box-shadow: 0px 0px 0px 1px hsl(var(--main-hue), calc(var(--main-sat) + 16%), calc(var(--main-lum) + 11%)), 0px 2px 2px rgba(0, 0, 0, 0.04);
}

.field .field-input-disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.field.small input:not([type='checkbox']):not([type='file']) {
  height: 28px;
  line-height: 28px;
  font-size: 13px;
  padding: 5px 8px;
}

/* .field.small input:not([type='checkbox']):not([type='file']):focus {
  box-shadow: inset 0px 1px 4px rgba(0, 0, 0, 0.1);
} */

.field.small select {
  height: 28px;
  line-height: 28px;
  font-size: 13px;
  padding: 0px 5px;
}

.field:last-child {
  margin-bottom: 0px;
}

.field:last-child input,
.field:last-child select {
  margin-bottom: 0px;
}

.field:hover input:not([type='checkbox']) {
  background-color: white;
}

.field:last-child label.checkbox-label {
  padding-bottom: 0px;
}

.field-link {
  font-size: 14px;
  color: hsl(var(--main-hue), calc(var(--main-sat) + 16%), calc(var(--main-lum) + 11%));
  cursor: pointer;
  transition: all ease 0.5s;
  margin-bottom: 10px;
}

.field-link:hover {
  color: hsl(var(--main-hue), calc(var(--main-sat) + 16%), calc(var(--main-lum) + 20%));
}

::-webkit-input-placeholder {
  color: #d1d1d1;
}

:-moz-placeholder {
  color: #d1d1d1;
}

::-moz-placeholder {
  color: #d1d1d1;
}

:-ms-input-placeholder {
  color: #d1d1d1;
}

/*==================================== CHECKBOXES ====================================*/

.select2 {
  font-size: 13px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple, .select2-container--default .select2-selection--multiple {
  border: 0px none!important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  padding: 3px 6px!important;
}

/*==================================== CHECKBOXES ====================================*/


/* Remove default checkbox */

[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

[type="checkbox"] {
  /* checkbox aspect */
}

[type="checkbox"]+span:not(.lever) {
  position: relative;
  font-size: 14.5px;
  padding-left: 30px;
  cursor: pointer;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[type="checkbox"]:not(.filled-in)+span:not(.lever) {
  line-height: 23px;
}

[type="checkbox"].filled-in+span:not(.lever) {
  line-height: 20px;
}

[type="checkbox"]+span:not(.lever):before,
[type="checkbox"]:not(.filled-in)+span:not(.lever):after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  z-index: 0;
  border: 2px solid #5a5a5a;
  border-radius: 1px;
  margin-top: 3px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

[type="checkbox"]:not(.filled-in)+span:not(.lever):after {
  border: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

[type="checkbox"]:not(:checked):disabled+span:not(.lever):before {
  border: none;
  background-color: rgba(0, 0, 0, 0.42);
}

[type="checkbox"].tabbed:focus+span:not(.lever):after {
  -webkit-transform: scale(1);
  transform: scale(1);
  border: 0;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.1);
}

[type="checkbox"]:checked+span:not(.lever):before {
  top: -4px;
  left: -5px;
  width: 12px;
  height: 22px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid hsl(var(--main-hue), calc(var(--main-sat) + 16%), calc(var(--main-lum) + 11%));
  border-bottom: 2px solid hsl(var(--main-hue), calc(var(--main-sat) + 16%), calc(var(--main-lum) + 11%));
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

[type="checkbox"]:checked:disabled+span:before {
  border-right: 2px solid rgba(0, 0, 0, 0.42);
  border-bottom: 2px solid rgba(0, 0, 0, 0.42);
}


/* Indeterminate checkbox */

[type="checkbox"]:indeterminate+span:not(.lever):before {
  top: -11px;
  left: -12px;
  width: 10px;
  height: 22px;
  border-top: none;
  border-left: none;
  border-right: 2px solid hsl(var(--main-hue), calc(var(--main-sat) + 16%), calc(var(--main-lum) + 11%));
  border-bottom: none;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

[type="checkbox"]:indeterminate:disabled+span:not(.lever):before {
  border-right: 2px solid rgba(0, 0, 0, 0.42);
  background-color: transparent;
}

[type="checkbox"].filled-in+span:not(.lever):after {
  border-radius: 2px;
}

[type="checkbox"].filled-in+span:not(.lever):before,
[type="checkbox"].filled-in+span:not(.lever):after {
  content: '';
  left: 0;
  position: absolute;
  /* .1s delay is for check animation */
  -webkit-transition: border 0.25s, background-color 0.25s, width 0.2s 0.1s, height 0.2s 0.1s, top 0.2s 0.1s, left 0.2s 0.1s;
  transition: border 0.25s, background-color 0.25s, width 0.2s 0.1s, height 0.2s 0.1s, top 0.2s 0.1s, left 0.2s 0.1s;
  z-index: 1;
}

[type="checkbox"].filled-in:not(:checked)+span:not(.lever):before {
  width: 0;
  height: 0;
  border: 3px solid transparent;
  left: 6px;
  top: 10px;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

[type="checkbox"].filled-in:not(:checked)+span:not(.lever):after {
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 2px solid #5a5a5a;
  top: 0px;
  z-index: 0;
}

[type="checkbox"].filled-in:checked+span:not(.lever):before {
  top: 0;
  left: 1px;
  width: 8px;
  height: 13px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

[type="checkbox"].filled-in:checked+span:not(.lever):after {
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid hsl(var(--main-hue), calc(var(--main-sat) + 40%), calc(var(--main-lum) + 11%));
  background-color: hsl(var(--main-hue), calc(var(--main-sat) + 40%), calc(var(--main-lum) + 11%));
  z-index: 0;
}

[type="checkbox"].filled-in.tabbed:focus+span:not(.lever):after {
  border-radius: 2px;
  border-color: #5a5a5a;
  background-color: rgba(0, 0, 0, 0.1);
}

[type="checkbox"].filled-in.tabbed:checked:focus+span:not(.lever):after {
  border-radius: 2px;
  background-color: hsl(var(--main-hue), calc(var(--main-sat) + 40%), calc(var(--main-lum) + 11%));
  border-color: hsl(var(--main-hue), calc(var(--main-sat) + 40%), calc(var(--main-lum) + 11%));
}

[type="checkbox"].filled-in:disabled:not(:checked)+span:not(.lever):before {
  background-color: transparent;
  border: 2px solid transparent;
}

[type="checkbox"].filled-in:disabled:not(:checked)+span:not(.lever):after {
  border-color: transparent;
  background-color: #949494;
}

[type="checkbox"].filled-in:disabled:checked+span:not(.lever):before {
  background-color: transparent;
}

[type="checkbox"].filled-in:disabled:checked+span:not(.lever):after {
  background-color: #949494;
  border-color: #949494;
}


/*==================================== RADIO ====================================*/

[type="radio"]:not(:checked),
[type="radio"]:checked {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

[type="radio"]:not(:checked)+span,
[type="radio"]:checked+span {
  position: relative;
  padding-left: 29px;
  cursor: pointer;
  display: inline-block;
  height: 24px;
  line-height: 18px;
  font-size: 14px;
  -webkit-transition: 0.28s ease;
  transition: 0.28s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

[type="radio"]+span:before,
[type="radio"]+span:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  margin: 4px;
  width: 16px;
  height: 16px;
  z-index: 0;
  -webkit-transition: 0.28s ease;
  transition: 0.28s ease;
}


/* Unchecked styles */

[type="radio"]:not(:checked)+span:before,
[type="radio"]:not(:checked)+span:after,
[type="radio"]:checked+span:before,
[type="radio"]:checked+span:after,
[type="radio"].with-gap:checked+span:before,
[type="radio"].with-gap:checked+span:after {
  border-radius: 50%;
}

[type="radio"]:not(:checked)+span:before,
[type="radio"]:not(:checked)+span:after {
  border: 2px solid #5a5a5a;
}

[type="radio"]:not(:checked)+span:after {
  -webkit-transform: scale(0);
  transform: scale(0);
}


/* Checked styles */

[type="radio"]:checked+span:before {
  border: 2px solid transparent;
}

[type="radio"]:checked+span:after,
[type="radio"].with-gap:checked+span:before,
[type="radio"].with-gap:checked+span:after {
  border: 2px solid hsl(var(--main-hue), calc(var(--main-sat) + 16%), calc(var(--main-lum) + 11%));
}

[type="radio"]:checked+span:after,
[type="radio"].with-gap:checked+span:after {
  background-color: hsl(var(--main-hue), calc(var(--main-sat) + 16%), calc(var(--main-lum) + 11%));
}

[type="radio"]:checked+span:after {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}


/* Radio With gap */

[type="radio"].with-gap:checked+span:after {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}


/* Focused styles */

[type="radio"].tabbed:focus+span:before {
  -webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
}


/* Disabled Radio With gap */

[type="radio"].with-gap:disabled:checked+span:before {
  border: 2px solid rgba(0, 0, 0, 0.42);
}

[type="radio"].with-gap:disabled:checked+span:after {
  border: none;
  background-color: rgba(0, 0, 0, 0.42);
}


/* Disabled style */

[type="radio"]:disabled:not(:checked)+span:before,
[type="radio"]:disabled:checked+span:before {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.42);
}

[type="radio"]:disabled+span {
  color: rgba(0, 0, 0, 0.42);
}

[type="radio"]:disabled:not(:checked)+span:before {
  border-color: rgba(0, 0, 0, 0.42);
}

[type="radio"]:disabled:checked+span:after {
  background-color: rgba(0, 0, 0, 0.42);
  border-color: #949494;
}


/*==================================== SWITCH ====================================*/

.switch,
.switch * {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.switch {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.switch label {
  cursor: pointer;
}

.switch label input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch label input[type=checkbox]:checked+.lever {
  background-color: hsl(var(--main-hue), calc(var(--main-sat) + 19%), calc(var(--main-lum) + 26%));
}

.switch label input[type=checkbox]:checked+.lever:before,
.switch label input[type=checkbox]:checked+.lever:after {
  left: 18px;
}

.switch label input[type=checkbox]:checked+.lever:after {
  background-color: hsl(var(--main-hue), calc(var(--main-sat) + 16%), calc(var(--main-lum) + 11%));
}

.switch label .lever {
  content: "";
  display: inline-block;
  position: relative;
  width: 36px;
  height: 14px;
  background-color: rgba(0, 0, 0, 0.38);
  border-radius: 15px;
  margin-right: 10px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  vertical-align: middle;
  margin: 0 16px;
}

.switch label .lever:before,
.switch label .lever:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  left: 0;
  top: -3px;
  -webkit-transition: left 0.3s ease, background 0.3s ease, -webkit-box-shadow 0.1s ease, -webkit-transform 0.1s ease;
  transition: left 0.3s ease, background 0.3s ease, -webkit-box-shadow 0.1s ease, -webkit-transform 0.1s ease;
  transition: left 0.3s ease, background 0.3s ease, box-shadow 0.1s ease, transform 0.1s ease;
  transition: left 0.3s ease, background 0.3s ease, box-shadow 0.1s ease, transform 0.1s ease, -webkit-box-shadow 0.1s ease, -webkit-transform 0.1s ease;
}

.switch label .lever:before {
  background-color: rgba(38, 68, 166, 0.15);
}

.switch label .lever:after {
  background-color: #F1F1F1;
  -webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}

input[type=checkbox]:checked:not(:disabled)~.lever:active::before,
input[type=checkbox]:checked:not(:disabled).tabbed:focus~.lever::before {
  -webkit-transform: scale(2.4);
  transform: scale(2.4);
  background-color: rgba(38, 68, 166, 0.15);
}

input[type=checkbox]:not(:disabled)~.lever:active:before,
input[type=checkbox]:not(:disabled).tabbed:focus~.lever::before {
  -webkit-transform: scale(2.4);
  transform: scale(2.4);
  background-color: rgba(0, 0, 0, 0.08);
}

.switch input[type=checkbox][disabled]+.lever {
  cursor: default;
  background-color: rgba(0, 0, 0, 0.12);
}

.switch label input[type=checkbox][disabled]+.lever:after,
.switch label input[type=checkbox][disabled]:checked+.lever:after {
  background-color: #949494;
}

.dropbox {
  border: 2px dashed grey;
  /* the dash box */
  background: #EFEFF1;
  color: dimgray;
  min-height: 200px;
  /* minimum height */
  position: relative;
  cursor: pointer;
  border-radius: 6px;
  transition: all ease 0.5s;
}

.dropbox-form {
  width: 100%;
}

.input-file {
  opacity: 0;
  /* invisible but it's there! */
  width: 100%;
  height: 200px;
  position: absolute;
  cursor: pointer;
  z-index: 50;
}

.dropbox:hover {
  background: #DEDEE0;
  /* when mouse over to the drop zone, change color */
}

.dropbox p {
  font-size: 19.2px;
  text-align: center;
  padding: 45px 15px;
  margin: 0px;
}

.dropbox-dragenter {
  border: 2px solid grey;
  background: #EDEDED !important;
  color: dimgray !important;
}

.dropbox-failed {
  background: #FEEBEC;
  color: #BC000F;
  border: 0px !important;
}

.uploaded-files {
  margin-bottom: 15px;
  display: flex;
  max-width: 100%;
  overflow: auto;
  padding: 10px;
  background: #efeff1;
  border-radius: 6px;
  border: 1px solid #d9d9d9;
}

.uploaded-files::after {
  content: '';
  padding: 5px;
}

.uploaded-file {
  position: relative;
  background-position: center;
  background-size: cover;
  width: 150px;
  min-width: 150px;
  height: 100px;
  border-radius: 6px;
  margin-right: 10px;
  border: 1px solid #d9d9d9;
}

.uploaded-file:last-child {
  margin-right: 0px;
}

.uploaded-file a {
  width: 100%;
  height: 100%;
  padding: 9px;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 11px;
  overflow: hidden;
  display: flex;
  border-radius: 5px;
  position: relative;
}

.uploaded-file-ext {
  float: right;
  font-size: 18px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  text-transform: uppercase;
}

.uploaded-file-remove {
  cursor: pointer;
  position: absolute;
  right: 5px;
  width: 20px;
  background: white;
  border-radius: 100%;
  z-index: 10;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 5px;
  color: #4e4e4e;
  font-size: 10px;
}


/**** BUTTON **/

.button {
  border: 0px;
  color: #FFF;
  transition: all ease 0.5s;
  cursor: pointer;
  padding: 0.50rem 1.4rem;
  line-height: 26px;
  border-radius: 0.42rem;
  box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.35);
  text-align: center;
  display: inline-block;
  text-transform: none;
  font-weight: 400 !important;
  box-shadow: none;
  font-size: 14px;
  font-family: 'Inter', 'Roboto';
  height: 42px;
  min-width: 100px;
  box-sizing: border-box;
}

.button.big {
  padding: 0.2rem 1.8rem;
  line-height: 20px;
  font-weight: 500!important;
  font-size: 15px;
  height: 42px;
  text-transform: uppercase;
}

.button span {
  line-height: 21px;
}

.button:hover {
  box-shadow: inset 0px -25px 40px rgba(255, 255, 255, 0.20);
}

.button:focus {
  box-shadow: inset 0px -25px 80px rgba(255, 255, 255, 0.45);
}

.button:disabled {
  background: #a2a2a2 !important;
  box-shadow: none;
  cursor: not-allowed;
}

.button i {
  margin-right: 10px;
}

.button .loader {
  height: 100%;
}

.button .loader img {
  height: 100%;
}

.button-primary {
  color: #fff;
  background-color: hsl(var(--main-hue), calc(var(--main-sat) + 16%), calc(var(--main-lum) + 11%));
}

.button-success {
  background-color: #57b354;
  color: #ffffff;
}

.button-light {
  background-color: hsl(var(--main-hue), calc(var(--main-sat) + 50%), calc(var(--main-lum) + 42%));
  color: hsl(var(--main-hue), calc(var(--main-sat) + 16%), calc(var(--main-lum) + 11%));
}

.button-metal {
  background-color: #d1d1d1;
  color: #616161;
}

.button-danger {
  background-color: #d86161;
  color: #ffffff;
}

.button:hover {
  box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.35), inset 0px -25px 40px rgba(255, 255, 255, 0.2);
}

.button:focus {
  box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.35), inset 0px -25px 80px rgba(255, 255, 255, 0.45);
}

.button:disabled {
  background: #a2a2a2 !important;
  box-shadow: none;
  cursor: not-allowed;
}

.button-small-rounded {
  border-radius: 9999px;
  height: 2rem;
  width: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bdbdbd;
  transition: all ease 0.5s;
  color: #616161;
  background: white;
}

.button-small-rounded:hover {
  color: #a0a0a0;
}

/**** TOOLTIP **/

.tooltip {
  padding: 4px 9px;
  background: #000;
  color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 2px;
  font-size: 14px;
  font-family: inherit;
  transform: translateX(-50%);
  z-index: 9999;
}

/**** TAG ****/

.tagify {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 1px solid #ddd;
  padding: 0;
  cursor: text;
  position: relative;
  -webkit-transition: .1s;
  -o-transition: .1s;
  transition: .1s;
  border: 1px solid #ebedf2;
  border-radius: 0.25rem;
  font-size: 12px;
  min-width: 100%;
  border: 0px!important;
  padding: 3px 0px!important;
}

.tagify:focus, .tagify:active {
  border-color: #716aca;
  outline: none;
}

.tagify.tagify--focus {
  border-color: #716aca;
  outline: none;
}

.tagify tag {
  margin-bottom: 2px!important;
  margin-top: 2px!important;
  line-height: 20px;
}

.tagify tag x {
  margin-left: 3px!important;
}

.tagify tag:hover:not([readonly]) div::before {
  box-shadow: 0 0 0 17px #d3e2e2 inset;
}

.tagify__tag-text {
  margin-right: 5px;
}

/**** WYSIWYG *****/

.note-editor {
  font-family: 'Roboto'!important;
  font-weight: 400;
  font-size: 14px;
}

.note-toolbar-wrapper {
  height: auto!important;
}

.note-modal-footer {
  box-sizing: content-box;
}

/********* DISCONNECT BOX *********/

.disconnect-box {
  width: calc(80vw);
  max-width: 700px;
  margin: auto;
}

.disconnect-box .disconnect-heading {
  padding: 30px 30px 15px 30px;
  background: grey;
  font-family: 'Roboto';
  color: white;
  border-radius: 5px 5px 0px 0px;
  font-size: 24px;
  font-weight: 300;
}

.disconnect-box .disconnect-body {
  background: white;
  padding: 20px 30px;
  font-family: 'Roboto';
  font-size: 18px;
}

.disconnect-box .disconnect-body .disconnect-body-1 {
  font-size: 22px;
  margin-bottom: 7px;
}

.disconnect-box .disconnect-bottom {
  background: #efefef;
  height: 40px;
  border-radius: 0px 0px 5px 5px;
  border-top: 1px solid #d6d6d6;
}

/**** SPINNER ****/

.preloader-wrapper {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 50px; }
  .preloader-wrapper.small {
    width: 36px;
    height: 36px; }
  .preloader-wrapper.big {
    width: 64px;
    height: 64px; }
  .preloader-wrapper.active {
    /* duration: 360 * ARCTIME / (ARCSTARTROT + (360-ARCSIZE)) */
    -webkit-animation: container-rotate 1568ms linear infinite;
    animation: container-rotate 1568ms linear infinite; }

@-webkit-keyframes container-rotate {
  to {
    -webkit-transform: rotate(360deg); } }
@keyframes container-rotate {
  to {
    transform: rotate(360deg); } }
.spinner-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-color: #0288d1; }

.spinner-blue,
.spinner-blue-only {
  border-color: #4285f4; }

.spinner-red,
.spinner-red-only {
  border-color: #db4437; }

.spinner-yellow,
.spinner-yellow-only {
  border-color: #f4b400; }

.spinner-green,
.spinner-green-only {
  border-color: #0f9d58; }

/**
 * IMPORTANT NOTE ABOUT CSS ANIMATION PROPERTIES (keanulee):
 *
 * iOS Safari (tested on iOS 8.1) does not handle animation-delay very well - it doesn't
 * guarantee that the animation will start _exactly_ after that value. So we avoid using
 * animation-delay and instead set custom keyframes for each color (as redundant as it
 * seems).
 *
 * We write out each animation in full (instead of separating animation-name,
 * animation-duration, etc.) because under the polyfill, Safari does not recognize those
 * specific properties properly, treats them as -webkit-animation, and overrides the
 * other animation rules. See https://github.com/Polymer/platform/issues/53.
 */
.active .spinner-layer.spinner-blue {
  /* durations: 4 * ARCTIME */
  -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, blue-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, blue-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

.active .spinner-layer.spinner-red {
  /* durations: 4 * ARCTIME */
  -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, red-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, red-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

.active .spinner-layer.spinner-yellow {
  /* durations: 4 * ARCTIME */
  -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, yellow-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, yellow-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

.active .spinner-layer.spinner-green {
  /* durations: 4 * ARCTIME */
  -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, green-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, green-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

.active .spinner-layer,
.active .spinner-layer.spinner-blue-only,
.active .spinner-layer.spinner-red-only,
.active .spinner-layer.spinner-yellow-only,
.active .spinner-layer.spinner-green-only {
  /* durations: 4 * ARCTIME */
  opacity: 1;
  -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

@-webkit-keyframes fill-unfill-rotate {
  12.5% {
    -webkit-transform: rotate(135deg); }
  /* 0.5 * ARCSIZE */
  25% {
    -webkit-transform: rotate(270deg); }
  /* 1   * ARCSIZE */
  37.5% {
    -webkit-transform: rotate(405deg); }
  /* 1.5 * ARCSIZE */
  50% {
    -webkit-transform: rotate(540deg); }
  /* 2   * ARCSIZE */
  62.5% {
    -webkit-transform: rotate(675deg); }
  /* 2.5 * ARCSIZE */
  75% {
    -webkit-transform: rotate(810deg); }
  /* 3   * ARCSIZE */
  87.5% {
    -webkit-transform: rotate(945deg); }
  /* 3.5 * ARCSIZE */
  to {
    -webkit-transform: rotate(1080deg); }
  /* 4   * ARCSIZE */ }
@keyframes fill-unfill-rotate {
  12.5% {
    transform: rotate(135deg); }
  /* 0.5 * ARCSIZE */
  25% {
    transform: rotate(270deg); }
  /* 1   * ARCSIZE */
  37.5% {
    transform: rotate(405deg); }
  /* 1.5 * ARCSIZE */
  50% {
    transform: rotate(540deg); }
  /* 2   * ARCSIZE */
  62.5% {
    transform: rotate(675deg); }
  /* 2.5 * ARCSIZE */
  75% {
    transform: rotate(810deg); }
  /* 3   * ARCSIZE */
  87.5% {
    transform: rotate(945deg); }
  /* 3.5 * ARCSIZE */
  to {
    transform: rotate(1080deg); }
  /* 4   * ARCSIZE */ }
@-webkit-keyframes blue-fade-in-out {
  from {
    opacity: 1; }
  25% {
    opacity: 1; }
  26% {
    opacity: 0; }
  89% {
    opacity: 0; }
  90% {
    opacity: 1; }
  100% {
    opacity: 1; } }
@keyframes blue-fade-in-out {
  from {
    opacity: 1; }
  25% {
    opacity: 1; }
  26% {
    opacity: 0; }
  89% {
    opacity: 0; }
  90% {
    opacity: 1; }
  100% {
    opacity: 1; } }
@-webkit-keyframes red-fade-in-out {
  from {
    opacity: 0; }
  15% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  51% {
    opacity: 0; } }
@keyframes red-fade-in-out {
  from {
    opacity: 0; }
  15% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  51% {
    opacity: 0; } }
@-webkit-keyframes yellow-fade-in-out {
  from {
    opacity: 0; }
  40% {
    opacity: 0; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  76% {
    opacity: 0; } }
@keyframes yellow-fade-in-out {
  from {
    opacity: 0; }
  40% {
    opacity: 0; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  76% {
    opacity: 0; } }
@-webkit-keyframes green-fade-in-out {
  from {
    opacity: 0; }
  65% {
    opacity: 0; }
  75% {
    opacity: 1; }
  90% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@keyframes green-fade-in-out {
  from {
    opacity: 0; }
  65% {
    opacity: 0; }
  75% {
    opacity: 1; }
  90% {
    opacity: 1; }
  100% {
    opacity: 0; } }
/**
 * Patch the gap that appear between the two adjacent div.circle-clipper while the
 * spinner is rotating (appears on Chrome 38, Safari 7.1, and IE 11).
 */
.gap-patch {
  position: absolute;
  top: 0;
  left: 45%;
  width: 10%;
  height: 100%;
  overflow: hidden;
  border-color: inherit; }

.gap-patch .circle {
  width: 1000%;
  left: -450%; }

.circle-clipper {
  display: inline-block;
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-color: inherit; }
  .circle-clipper .circle {
    width: 200%;
    height: 100%;
    border-width: 3px;
    /* STROKEWIDTH */
    border-style: solid;
    border-color: inherit;
    border-bottom-color: transparent !important;
    border-radius: 50%;
    -webkit-animation: none;
    animation: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0; }
  .circle-clipper.left .circle {
    left: 0;
    border-right-color: transparent !important;
    -webkit-transform: rotate(129deg);
    transform: rotate(129deg); }
  .circle-clipper.right .circle {
    left: -100%;
    border-left-color: transparent !important;
    -webkit-transform: rotate(-129deg);
    transform: rotate(-129deg); }

.active .circle-clipper.left .circle {
  /* duration: ARCTIME */
  -webkit-animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

.active .circle-clipper.right .circle {
  /* duration: ARCTIME */
  -webkit-animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

@-webkit-keyframes left-spin {
  from {
    -webkit-transform: rotate(130deg); }
  50% {
    -webkit-transform: rotate(-5deg); }
  to {
    -webkit-transform: rotate(130deg); } }
@keyframes left-spin {
  from {
    transform: rotate(130deg); }
  50% {
    transform: rotate(-5deg); }
  to {
    transform: rotate(130deg); } }
@-webkit-keyframes right-spin {
  from {
    -webkit-transform: rotate(-130deg); }
  50% {
    -webkit-transform: rotate(5deg); }
  to {
    -webkit-transform: rotate(-130deg); } }
@keyframes right-spin {
  from {
    transform: rotate(-130deg); }
  50% {
    transform: rotate(5deg); }
  to {
    transform: rotate(-130deg); } }
#spinnerContainer.cooldown {
  /* duration: SHRINK_TIME */
  -webkit-animation: container-rotate 1568ms linear infinite, fade-out 400ms cubic-bezier(0.4, 0, 0.2, 1);
  animation: container-rotate 1568ms linear infinite, fade-out 400ms cubic-bezier(0.4, 0, 0.2, 1); }

@-webkit-keyframes fade-out {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
@keyframes fade-out {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
.slider {
  position: relative;
  height: 400px;
  width: 100%; }
  .slider.fullscreen {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
    .slider.fullscreen ul.slides {
      height: 100%; }
    .slider.fullscreen ul.indicators {
      z-index: 2;
      bottom: 30px; }
  .slider .slides {
    background-color: #9e9e9e;
    margin: 0;
    height: 400px; }
    .slider .slides li {
      opacity: 0;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
      width: 100%;
      height: inherit;
      overflow: hidden; }
      .slider .slides li img {
        height: 100%;
        width: 100%;
        background-size: cover;
        background-position: center; }
      .slider .slides li .caption {
        color: #fff;
        position: absolute;
        top: 15%;
        left: 15%;
        width: 70%;
        opacity: 0; }
        .slider .slides li .caption p {
          color: #e0e0e0; }
      .slider .slides li.active {
        z-index: 2; }
  .slider .indicators {
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0; }
    .slider .indicators .indicator-item {
      display: inline-block;
      position: relative;
      cursor: pointer;
      height: 16px;
      width: 16px;
      margin: 0 12px;
      background-color: #e0e0e0;
      transition: background-color .3s;
      border-radius: 50%; }
      .slider .indicators .indicator-item.active {
        background-color: #4CAF50; }