.w-select {
  -webkit-appearance: none;
  -moz-appearance: none;
}
.text-field {
  resize: none;
}
button {
  cursor: pointer;
  -webkit-appearance: none;
  background-color: transparent;
}
.dashboard-column-wrapper {
  min-height: 0px;
}
.selector {
  cursor: pointer;
}

.mb-20 {
  margin-bottom: 10px;
}

.hidden-file-input {
  width: 0px;
  height: 0px;
  opacity: 0;
  visibility: hidden;
}

.multiselect,
.multiselect__tags,
.multiselect__input,
.multiselect__single {
  color: #52537a !important;
  font-size: 12px !important;
  border: none !important;
}

.multiselect {
  margin-bottom: 18px !important;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  border: 1px solid #f3f3f7 !important;
  border-radius: 8px !important;
  line-height: 16px !important;
}

.multiselect__tag {
  background-color: #4a5ee5 !important;
}

.multiselect__tag-icon {
  width: 20px !important;
	line-height: 20px !important;
}

.multiselect__tag-icon::after {
  background-color: #4a5ee5 !important;
	color: white !important;
}

.multiselect__tag-icon:hover::after {
  background-color: #4a5ee5 !important;
}

.multiselect__tag-icon:hover {
  background-color: #4a5ee5 !important;
}

.multiselect__option--highlight:after {
  background: #4a5ee5 !important;
}

.multiselect__option--highlight {
  background: #4a5ee5 !important;
}

.multiselect__option--highlight:hover {
	background: #4a5ee5 !important;
}

.form-field.large {
  min-height: 200px;
  height: 200px;
}

.quick-toggle-action {
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
}

.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
  margin-right: 8px;
  margin-bottom: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #c6c7d2;
  background-color: #c6c7d2;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  left: 3px;
  bottom: 2.5px;
  background-color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #4a5ee5;
  border: 1px solid #4a5ee5;
}

input:focus + .slider {
  box-shadow: 0 0 1px #45469b;
}

input:checked + .slider:before {
  -webkit-transform: translateX(12px);
  -ms-transform: translateX(12px);
  transform: translateX(12px);
  background-color: white;
}

/* Rounded sliders */

.slider.round {
  border-radius: 17px;
}

.slider.round:before {
  border-radius: 50%;
}

.upload-button {
  position: relative;
  display: flex;
}

.color-picker {
  z-index: 10;
}

/*  Tooltip */
.v-tip-body {
  padding: 10px 15px;
  background-color: #45469b;
  color: white;
  font-size: 12px;
}
.variants-prompt {
  color: #5e6c82;
  padding-left: 0;
}

.delete-and-edit-flex {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.centered-text {
  text-align: center;
}

.image.cover {
  object-fit: cover;
}

@media screen and (max-width: 414px){

.product-column {
  flex-direction: column;
  align-items: flex-start;
  -webkit-box-align: flex-start;
}
}

.uploaded-image {
    width: 50px;
    height: 50px;
    position: relative;
    margin-right: 24px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.clear-link {
  border-radius: 50%;
  background-color: #fff;
  background-image: url(/assets/images/Vector.svg);
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  width: 15px;
  height: 15px;
  top: 0px;
  right: 0px;
  left: auto;
  bottom: auto;
  cursor: pointer;
}

.product-other-image {
  position: relative;
}

.product-other-image:hover > .close-button.product-images{
  opacity: 1;
  visibility: visible;
}

.close-button.product-images {
  filter: invert(1);
  position: absolute;
  right: -5px;
  top: -5px;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
}

.button.small {
  font-size: 10px;
  padding: 5px 7px;
  flex-shrink: 0;
}

.form-label {
  position: relative;
}

.error-message {
  position: absolute;
  left: auto;
  right: 0;
  color: red;
}


/* Utilities */
.image-contain {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.orange-text {
  color: #fa7e61;
}

.lock {
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.pointer {
  cursor: pointer;
}