/*!
 * Cropper.js v1.6.1
 * https://fengyuanchen.github.io/cropperjs
 *
 * Copyright 2015-present Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2023-09-17T03:44:17.565Z
 */.cropper-container{direction:ltr;font-size:0;line-height:0;position:relative;touch-action:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.cropper-container img{backface-visibility:hidden;display:block;height:100%;image-orientation:0deg;max-height:none!important;max-width:none!important;min-height:0!important;min-width:0!important;width:100%}.cropper-canvas,.cropper-crop-box,.cropper-drag-box,.cropper-modal,.cropper-wrap-box{bottom:0;left:0;position:absolute;right:0;top:0}.cropper-canvas,.cropper-wrap-box{overflow:hidden}.cropper-drag-box{background-color:#fff;opacity:0}.cropper-modal{background-color:#000;opacity:.5}.cropper-view-box{display:block;height:100%;outline:1px solid #39f;outline-color:rgba(51,153,255,.75);overflow:hidden;width:100%}.cropper-dashed{border:0 dashed #eee;display:block;opacity:.5;position:absolute}.cropper-dashed.dashed-h{border-bottom-width:1px;border-top-width:1px;height:33.33333%;left:0;top:33.33333%;width:100%}.cropper-dashed.dashed-v{border-left-width:1px;border-right-width:1px;height:100%;left:33.33333%;top:0;width:33.33333%}.cropper-center{display:block;height:0;left:50%;opacity:.75;position:absolute;top:50%;width:0}.cropper-center:after,.cropper-center:before{background-color:#eee;content:" ";display:block;position:absolute}.cropper-center:before{height:1px;left:-3px;top:0;width:7px}.cropper-center:after{height:7px;left:0;top:-3px;width:1px}.cropper-face,.cropper-line,.cropper-point{display:block;height:100%;opacity:.1;position:absolute;width:100%}.cropper-face{background-color:#fff;left:0;top:0}.cropper-line{background-color:#39f}.cropper-line.line-e{cursor:ew-resize;right:-3px;top:0;width:5px}.cropper-line.line-n{cursor:ns-resize;height:5px;left:0;top:-3px}.cropper-line.line-w{cursor:ew-resize;left:-3px;top:0;width:5px}.cropper-line.line-s{bottom:-3px;cursor:ns-resize;height:5px;left:0}.cropper-point{background-color:#39f;height:5px;opacity:.75;width:5px}.cropper-point.point-e{cursor:ew-resize;margin-top:-3px;right:-3px;top:50%}.cropper-point.point-n{cursor:ns-resize;left:50%;margin-left:-3px;top:-3px}.cropper-point.point-w{cursor:ew-resize;left:-3px;margin-top:-3px;top:50%}.cropper-point.point-s{bottom:-3px;cursor:s-resize;left:50%;margin-left:-3px}.cropper-point.point-ne{cursor:nesw-resize;right:-3px;top:-3px}.cropper-point.point-nw{cursor:nwse-resize;left:-3px;top:-3px}.cropper-point.point-sw{bottom:-3px;cursor:nesw-resize;left:-3px}.cropper-point.point-se{bottom:-3px;cursor:nwse-resize;height:20px;opacity:1;right:-3px;width:20px}@media (min-width:768px){.cropper-point.point-se{height:15px;width:15px}}@media (min-width:992px){.cropper-point.point-se{height:10px;width:10px}}@media (min-width:1200px){.cropper-point.point-se{height:5px;opacity:.75;width:5px}}.cropper-point.point-se:before{background-color:#39f;bottom:-50%;content:" ";display:block;height:200%;opacity:0;position:absolute;right:-50%;width:200%}.cropper-invisible{opacity:0}.cropper-bg{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC")}.cropper-hide{display:block;height:0;position:absolute;width:0}.cropper-hidden{display:none!important}.cropper-move{cursor:move}.cropper-crop{cursor:crosshair}.cropper-disabled .cropper-drag-box,.cropper-disabled .cropper-face,.cropper-disabled .cropper-line,.cropper-disabled .cropper-point{cursor:not-allowed}
/* layout */
input[type=file] {
  width: unset;
}

.image-preview--small img {
  width: 15rem;
}

.image-preview--smaller img {
  width: 10rem;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 33%);
  grid-gap: 1px;
}

.grid-item .image-container {
  text-align: center;
  height: 400px;
  overflow-y: hidden;
}

.grid-item .controls {
  display: flex;
}

.profile-image-preview {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-images {
  display: flex;
  gap: 10px;
}

.gallery-images {
  width: 100%;
  min-height: 230px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

.gallery-images.preview {
  min-height: unset;
}

input[type=file]::file-selector-button {
  border-radius: 3px;
  padding: 10px 15px;
  height: 40px;
  cursor: pointer;
  background-color: var(--blank-color);
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
  transition: background-color 200ms;
}

input[type=file]::file-selector-button:hover {
  background-color: #f3f4f6;
}

input[type=file]::file-selector-button:active {
  background-color: #e5e7eb;
}

.card {
  border-left: 1px solid rgba(128, 128, 128, 0.3411764706);
  border-right: 1px solid rgba(128, 128, 128, 0.3411764706);
  padding: 1rem;
  margin-bottom: 1rem;
}
.card input[type=submit] {
  width: 13rem;
}
.card input[type=submit].auto-width {
  width: auto;
}

.card.card-column--no-border {
  border: none;
  padding: 5px;
}

hr {
  border: none;
  border-top: 1px solid rgba(128, 128, 128, 0.3411764706);
}

textarea {
  border-radius: 3px;
}

.wysiwyg-editor-wrapper small {
  display: none !important;
}

.card hr {
  margin-top: 0;
  margin-bottom: 1.5rem;
  width: 100%;
}

@media screen and (max-width: 600px) {
  .card {
    border: none;
    padding: 0;
    margin-bottom: 1rem;
  }
}
[data-lastpass-icon-root] {
  display: none;
}

[data-component=draggable] .draggable {
  cursor: move;
}

ul.errors {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
ul.errors li {
  background-color: #f1d4d4;
  color: rgba(114, 28, 36, 0.8509803922);
  padding: 0.75rem 2.5rem;
  margin-bottom: 10px;
  border: none;
  border-radius: 4px;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.text-editor-wrapper {
  position: relative;
  width: 100%;
}

.text-editor-toolbar {
  display: flex;
  gap: 8px;
  padding: 8px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  align-items: center;
}

.text-editor-wrapper textarea {
  border-radius: 0 0 4px 4px;
  resize: vertical;
}

.text-editor-btn {
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  transition: all 0.2s;
  min-width: 36px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.text-editor-btn:hover {
  background: #e9ecef;
  border-color: #adb5bd;
}
.text-editor-btn:active {
  transform: scale(0.95);
  background: #dee2e6;
}

.text-editor-color-container {
  position: relative;
}

.text-editor-color-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.text-editor-color-option {
  width: 32px;
  height: 32px;
  border: 2px solid #dee2e6;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.text-editor-color-option:hover {
  border-color: #495057;
  transform: scale(1.1);
}
.text-editor-color-option:active {
  transform: scale(0.95);
}

.emoji-picker-wrapper {
  position: relative;
  width: 100%;
}

.emoji-picker-button {
  position: absolute;
  right: 10px;
  top: 10px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  transition: all 0.2s;
  z-index: 10;
}
.emoji-picker-button:hover {
  background: #e9ecef;
  transform: scale(1.1);
}
.emoji-picker-button:active {
  transform: scale(0.95);
}

.emoji-picker {
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 350px;
  max-height: 400px;
  z-index: 1000;
  overflow: hidden;
}
@media (max-width: 600px) {
  .emoji-picker {
    width: 100%;
    right: auto;
    left: 0;
  }
}

.text-editor-wrapper .emoji-picker {
  top: 100%;
  margin-top: 4px;
}

.emoji-picker-close {
  position: absolute;
  right: 8px;
  top: 8px;
  background: transparent;
  border: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  color: #6c757d;
  z-index: 10;
  transition: color 0.2s;
}
.emoji-picker-close:hover {
  color: #000;
}

.emoji-picker-tabs {
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid #dee2e6;
  background: #f8f9fa;
  padding: 8px 8px 0 8px;
  gap: 4px;
}
.emoji-picker-tabs::-webkit-scrollbar {
  height: 4px;
}
.emoji-picker-tabs::-webkit-scrollbar-thumb {
  background: #dee2e6;
  border-radius: 2px;
}

.emoji-picker-tab {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 13px;
  white-space: nowrap;
  color: #6c757d;
  transition: all 0.2s;
}
.emoji-picker-tab:hover {
  color: #495057;
  background: rgba(0, 0, 0, 0.05);
}
.emoji-picker-tab.active {
  color: #007bff;
  border-bottom-color: #007bff;
  font-weight: 500;
}

.emoji-picker-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
  padding: 12px;
  max-height: 320px;
  overflow-y: auto;
}
.emoji-picker-grid::-webkit-scrollbar {
  width: 8px;
}
.emoji-picker-grid::-webkit-scrollbar-thumb {
  background: #dee2e6;
  border-radius: 4px;
}
.emoji-picker-grid::-webkit-scrollbar-thumb:hover {
  background: #adb5bd;
}

.emoji-picker-emoji {
  background: transparent;
  border: none;
  font-size: 24px;
  padding: 8px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.15s;
  line-height: 1;
}
.emoji-picker-emoji:hover {
  background: #f8f9fa;
  transform: scale(1.2);
}
.emoji-picker-emoji:active {
  transform: scale(1.1);
}
