@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
:root {
  --shadow: $btn-box-shadow;
  --bg-dark: $bg-blue-dark1;
  --bg-light: $bg-blue-light;
  --radius-sm: $radius-sm;
  --radius-lg: $radius-lg;
}

.dash * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

html,
body {
  height: 100%;
}

body {
  height: 100vh;
  overflow: hidden;
}

.dash-base {
  height: calc(100vh - 64px);
  overflow-y: auto;
  width: 100%;
}

.font-bold {
  font-weight: bold;
}

.text-pri {
  color: #4e62d5;
}

.border-pri {
  border-color: #4e62d5;
}

.bg-pri {
  background-color: #4e62d5;
}

.sortable-ghost {
  overflow: hidden;
}

.handle {
  cursor: grab;
}

.fade-fast-enter-active, .fade-fast-leave-active {
  transition: opacity 0.15s;
}

.fade-fast-enter, .fade-fast-leave-to {
  opacity: 0;
}

.fade-enter-active, .fade-leave-active {
  transition: opacity 0.25s;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

.hide-in-place {
  opacity: 0;
}

.text-xs {
  font-size: 75% !important;
}

.text-sm {
  font-size: 85% !important;
}

.text-lg {
  font-size: 110% !important;
}

.text-xl {
  font-size: 125% !important;
}

.dbg {
  box-shadow: 1px 1px 3px 2px rgba(255, 255, 255, 0.1333333333);
  background-color: rgba(255, 0, 0, 0.062745098);
}

.p-rel {
  position: relative;
}

.p-abs {
  position: absolute;
}

.no-bg {
  background: none;
}

.no-border {
  border: none !important;
}

.drop-shadow-lg {
  filter: drop-shadow(2px 4px 6px black);
}

.drop-shadow {
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2666666667));
}

.round-md {
  border-radius: 8px;
}

.round-xl {
  border-radius: 20px !important;
}

.inline-block {
  display: inline-block;
}

.abs-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.flex-horiz {
  display: flex;
  flex-direction: row;
}

.flex-vert {
  display: flex;
  flex-direction: column;
}

.flex-of {
  height: 0px;
  flex: 1;
}

.flex-ctr {
  align-items: center;
}

.flex-grow {
  flex-grow: 1;
}

.flex-ctr-self {
  align-self: center;
}

.btn {
  text-transform: none;
}

.hover-hider .hover-show {
  opacity: 0.25;
  filter: grayscale(1);
}

.hover-hider:hover .hover-show {
  filter: grayscale(0);
  opacity: 1;
}

.vidds-control {
  background-color: #f3f4f9;
  border: 1px solid #CDDCFF; /*rgb(206, 212, 218);*/
}

.vidds-border {
  border: 1px solid rgb(206, 212, 218);
}

.vidds-bg {
  background-color: #f3f4f9;
}

.vidds .dropdown:focus {
  box-shadow: 0 0 0 1px #4f46e5;
}

.vidds .form-control:focus {
  box-shadow: 0 0px 0px 1px #4f46e5;
}

.click-text {
  background-color: rgba(228, 234, 240, 0.5019607843);
  padding: 5px;
  font-size: 90%;
  padding-left: 5px;
  border-radius: 5px;
  cursor: pointer;
  line-height: 1.2rem;
}

.hover-base {
  transition: transform 0.25s;
}

.hover-base .hover-fc {
  filter: grayscale(0.7);
}

.hover-base:hover .hover-fc {
  filter: grayscale(0);
}

.hover-base .hover-show {
  opacity: 0;
}

.hover-base:hover .hover-show {
  opacity: 1;
}

.hover-base:hover .hover-rise {
  transform: scale(1.1);
}

.hover-border-dk {
  border: 1px solid rgba(0, 0, 0, 0);
}

.hover-border-dk:hover {
  border: 1px solid rgba(78, 98, 213, 0.5019607843);
}

.dash-video {
  display: inline-block;
  width: 275px;
  height: 175px;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 20px;
}

.dash-video-sm {
  width: 225px;
  height: 125px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
  font-size: 90%;
}

.dash-video-auto {
  flex-grow: 1;
  font-size: 90%;
  margin: 0 0 0 0;
}

.tmpl-preview {
  overflow: hidden;
  transition: all 0.2s;
  box-shadow: 2px 2px 3px 5px rgba(0, 0, 0, 0.0666666667);
  border-radius: 12px;
}

.media-thumb {
  background-color: white;
  position: relative;
  cursor: pointer;
  z-index: 0;
  transition: transform 0.25s;
  overflow: hidden;
  margin: 5px;
  border-radius: 5px;
  border: 2px solid #c0e0ff;
  display: inline-block;
  text-align: center;
}

.media-thumb:hover {
  transform: scale(1.1);
}

.media-thumb:hover .mt-type {
  display: inline-block;
}

.media-thumb .mt-type {
  display: none;
  position: absolute;
  padding: 2px;
  border-radius: 5px;
  background-color: #f0f0f0;
  color: #8cf;
  font-size: 75%;
  left: 2px;
  top: 2px;
}

.media-thumb .mt-title {
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  white-space: nowrap;
  overflow: hidden;
  font-weight: 300;
  width: 128px;
  font-size: 80%;
}

.media-thumb .mt-image {
  z-index: 0;
  margin-top: 16px;
  height: 64px;
  width: 64px;
  /*background-color: #f8f8f8;*/
  transition: transform 0.25s;
}

.media-thumb:hover .mt-image {
  background-color: rgba(220, 240, 255, 0);
  transform: scale(1.5);
}

.media-thumb {
  border: 1px solid #4e62d5;
  border-radius: 3px;
}

.media-thumb:hover {
  transform: scale(1.05);
}

.new-video {
  background-color: rgba(0, 0, 0, 0.0666666667);
  color: black;
  border: 1px solid #ccc;
  transition: all 0.3s;
}

.new-video:hover {
  background-color: #4e62d5;
}

.tmpl-preview:hover {
  box-shadow: 1px 1px 5px 8px rgba(0, 0, 0, 0.0666666667);
  xtransform: translateX(0px) translateY(-2px);
}

.tmpl-preview:hover .prev-new {
  transform: scale(1.1);
}

.tmpl-preview .prev-tools {
  xdisplay: none;
  height: 0;
  overflow: hidden;
  transition: all 0.2s;
  opacity: 0;
}

.tmpl-preview:hover .prev-tools {
  xdisplay: block;
  height: 25px;
  margin-top: 10px;
  opacity: 100%;
}

.tmpl-preview .prev-title {
  transition: all 0.2s;
  padding-bottom: 10px;
}

.tmpl-preview:hover .prev-title {
  padding-bottom: 15px !important;
}

.tmpl-preview .thumb {
  transition: all 0.2s;
}

.tmpl-preview:hover .thumb {
  filter: opacity(1);
  transform: scale(1.05);
}

.vidds {
  background-color: #f3f4f9;
  --btn-clr: #4080ff;
}

.vidds .bg-ctl {
  background-color: #e4eaf0;
}

.vidds .bg-ctl-lt {
  background-color: rgba(228, 234, 240, 0.5019607843);
}

.vidds .editor-section {
  box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.0666666667);
  border-radius: 5px;
  background-color: white;
}

.vidds .flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.vidds .cfg-label {
  font-size: 90%;
}

.vidds .cfg-head {
  font-weight: bold;
}

.vidds .form-control {
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0);
  box-shadow: 1px 1px 3px 2px rgba(0, 0, 0, 0.0941176471);
  border-radius: 9px;
}

.vidds .video-outline {
  border: 1px solid #f4f6f8;
  background-color: white;
}

.vidds .video-cont {
  padding: 1.5rem;
  border-radius: 15px;
  background-color: white;
  border: 1px solid rgb(220, 220, 220);
}

.btn-ctr {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
}

.no-ol {
  border: none !important;
}

.no-ol:focus {
  outline: none !important;
  box-shadow: none !important;
}

.vidds .cfg-btn {
  border-radius: 0px !important;
  border-bottom-left-radius: 10px !important;
  border-top-left-radius: 10px !important;
}

.vidds .btn-tool {
  background-color: white;
  border: 1px solid #bbe;
  box-shadow: 1px 4px 10px 0px rgba(22, 29, 37, 0.1);
  color: #101830;
  border-radius: 7px;
  padding: 5px 8px;
  transition: all 0.1s;
  line-height: 1.1em;
  font-size: 90%;
}

.vidds .btn-tool-selected {
  background-color: rgb(100, 150, 255);
  background-color: #4e62d5;
  color: white;
}

.vidds .btn-tool:hover {
  background-color: rgb(100, 150, 255);
  background-color: #4e62d5;
  background-color: #8ea2f5;
  color: white;
}

.vidds .btn-tool:active {
  transform: translateX(0px) translateY(1px);
}

.vidds .btn-hl {
  background: linear-gradient(to bottom, #c004f0, #4e62d5);
  border-color: #a094d0;
  color: white;
  padding: 6px 12px;
  box-shadow: 0 6px 10px 0 rgba(78, 98, 213, 0.3);
  border-radius: 8px;
  transition: all 0.2s;
}

.vidds .btn-hl:hover {
  background: linear-gradient(to bottom, #4e62d5, #c004f0);
}

.vidds .btn-hl:active {
  transform: translateX(0px) translateY(2px);
}

.nowrap {
  white-space: nowrap;
}

.vidds .btn-std {
  border: 0;
  background-color: #4e62d5;
  border-color: #3f4eae;
  color: white;
  border-radius: 8px;
  /*-webkit-box-shadow: inset 0 1px 0 0 #6f7bcb*/
  box-shadow: 0px 4px 10px 0px rgba(22, 29, 37, 0.2);
  padding: 6px 12px;
  transition: all 0.1s;
  font-size: 100%;
}

.vidds .btn-sm {
  padding: 3px 8px;
  font-size: 90%;
}

.vidds .btn-std:hover {
  background-color: #c0d4f0;
  background-color: #8ea2f5;
  color: #212b36;
}

.vidds .btn-std:active {
  xbackground-color: #a0b4f0;
  outline: 0;
  /*box-shadow: 0 0 0 1px #5c6ac4*/
  color: white;
  transform: translateX(0px) translateY(1px);
}

.vidds .btn-std-light {
  background-color: #fff;
  color: #444;
}

.vidds .btn-std-light:active {
  background-color: #8ea2f5 !important;
}

.vidds .btn-std-selected {
  border: 1px solid #c4cdd5;
  background-color: #a0b4e0;
  border-color: #3f4eae;
  color: white;
  xborder-radius: 3px;
  xbox-shadow: 0px 4px 10px 0px rgba(22, 29, 37, 0.1);
  color: #212b36;
  font-weight: 400;
  font-size: 100%;
}

.vidds .btn-std-selected:hover {
  background: linear-gradient(to bottom, #5c6ac4, #4959bd);
  border-color: #3f4eae;
  color: white;
}

.vidds .btn-std-selected:focus {
  border-color: #202e78;
  -webkit-box-shadow: inset 0 1px 0 0 #6f7bcb, 0 0 0 1px #202e78;
  box-shadow: inset 0 1px 0 0 #6f7bcb, 0 0 0 1px #202e78;
  color: white;
}

.vidds .btn-std-sel {
  border-color: #202e78 !important;
  -webkit-box-shadow: inset 0 1px 0 0 #6f7bcb, 0 0 0 1px #202e78;
  box-shadow: inset 0 1px 0 0 #6f7bcb, 0 0 0 1px #202e78;
  color: white;
}

.vidds .no-shadow {
  box-shadow: none !important;
}

.vidds .clear-bg {
  background-color: rgba(0, 0, 0, 0);
}

.vidds .rnd-left {
  border-radius: 0px !important;
  border-bottom-left-radius: 10px !important;
  border-top-left-radius: 10px !important;
}

.vidds .rnd-bottom {
  border-radius: 0px !important;
  border-bottom-left-radius: 7px !important;
  border-bottom-right-radius: 7px !important;
}

.btn-dark {
  background-color: rgba(0, 0, 0, 0.5333333333);
}

.btn-dark:hover {
  background-color: white !important;
}

::-webkit-scrollbar {
  cursor: pointer;
  height: 11px;
  width: 11px;
}

::-webkit-scrollbar-thumb {
  background: #bec3cd;
  border-radius: 18px;
}

::-webkit-scrollbar-track {
  background: rgba(206, 211, 221, 0.6274509804);
  border-radius: 7px;
}

.lds-dual-ring {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 20px;
  height: 20px;
  margin: 1px;
  border-radius: 50%;
  border: 5px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
input[type=range].playback {
  -webkit-appearance: none;
  width: 100%;
  margin: 3.15px 0;
}

input[type=range].playback:focus {
  outline: none;
}

input[type=range].playback::-webkit-slider-runnable-track {
  width: 100%;
  height: 7.7px;
  cursor: pointer;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  background: #000000;
  border-radius: 25px;
  border: 0px solid #010101;
}

input[type=range].playback::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
  border: 0px solid rgba(0, 0, 0, 0);
  height: 14px;
  width: 14px;
  border-radius: 50px;
  background: #ff2c00;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -3.15px;
}

input[type=range].playback:focus::-webkit-slider-runnable-track {
  background: #000000;
}

input[type=range].playback::-moz-range-track {
  width: 100%;
  height: 7.7px;
  cursor: pointer;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  background: #000000;
  border-radius: 25px;
  border: 0px solid #010101;
}

input[type=range].playback::-moz-range-thumb {
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
  border: 0px solid rgba(0, 0, 0, 0);
  height: 14px;
  width: 14px;
  border-radius: 50px;
  background: #ff2c00;
  cursor: pointer;
}

input[type=range].playback::-ms-track {
  width: 100%;
  height: 7.7px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type=range].playback::-ms-fill-lower {
  background: #000000;
  border: 0px solid #010101;
  border-radius: 50px;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}

input[type=range].playback::-ms-fill-upper {
  background: #000000;
  border: 0px solid #010101;
  border-radius: 50px;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}

input[type=range].playback::-ms-thumb {
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
  border: 0px solid rgba(0, 0, 0, 0);
  height: 14px;
  width: 14px;
  border-radius: 50px;
  background: #ff2c00;
  cursor: pointer;
  height: 7.7px;
}

input[type=range].playback:focus::-ms-fill-lower {
  background: #000000;
}

input[type=range].playback:focus::-ms-fill-upper {
  background: #000000;
}

input[type=range].config {
  -webkit-appearance: none;
  width: 100%;
  margin: 5px 0;
}

input[type=range].config:focus {
  outline: none;
}

input[type=range].config::-webkit-slider-runnable-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
  background: #cccccc;
  border-radius: 25px;
  border: 0px solid rgba(0, 0, 0, 0);
}

input[type=range].config::-webkit-slider-thumb {
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0), 0px 0px 1px rgba(13, 13, 13, 0);
  border: 0px solid rgba(0, 0, 0, 0);
  height: 12px;
  width: 12px;
  border-radius: 50px;
  background: #968cff;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -5px;
}

input[type=range].config:focus::-webkit-slider-runnable-track {
  background: #cccccc;
}

input[type=range].config::-moz-range-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
  background: #cccccc;
  border-radius: 25px;
  border: 0px solid rgba(0, 0, 0, 0);
}

input[type=range].config::-moz-range-thumb {
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0), 0px 0px 1px rgba(13, 13, 13, 0);
  border: 0px solid rgba(0, 0, 0, 0);
  height: 12px;
  width: 12px;
  border-radius: 50px;
  background: #968cff;
  cursor: pointer;
}

input[type=range].config::-ms-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type=range].config::-ms-fill-lower {
  background: #cccccc;
  border: 0px solid rgba(0, 0, 0, 0);
  border-radius: 50px;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
}

input[type=range].config::-ms-fill-upper {
  background: #cccccc;
  border: 0px solid rgba(0, 0, 0, 0);
  border-radius: 50px;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
}

input[type=range].config::-ms-thumb {
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0), 0px 0px 1px rgba(13, 13, 13, 0);
  border: 0px solid rgba(0, 0, 0, 0);
  height: 12px;
  width: 12px;
  border-radius: 50px;
  background: #968cff;
  cursor: pointer;
  height: 2px;
}

input[type=range].config:focus::-ms-fill-lower {
  background: #cccccc;
}

input[type=range].config:focus::-ms-fill-upper {
  background: #cccccc;
}

.highlight-text-light {
  font-weight: bold;
  font-size: 125%;
  color: white;
  filter: drop-shadow(2px 4px 6px black);
}

.bg-center-img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.clickable {
  cursor: pointer;
}

.hover-shrink:hover .hs-target {
  transform: scale(0.98);
  transition: transform 0.1s;
}

.vgen-cont {
  display: flex;
  flex-direction: column;
  overflow: hidden !important;
  align-items: stretch;
  height: 100%;
}
.vgen-cont .vgen-main {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  overflow: hidden;
  align-items: stretch;
}
.vgen-cont .vgen-scenes {
  flex: 1;
  min-width: 0;
  overflow-y: auto;
  max-width: 36%;
}
.vgen-cont .vgen-prev {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.is-mobile .vgen-scenes {
  max-width: inherit;
}

.dash h1 {
  font-weight: bold;
}
.dash h2 {
  font-weight: bold;
}
.dash h3 {
  font-weight: bold;
}
.dash h4 {
  font-weight: bold;
}
.dash h5 {
  font-weight: bold;
}
.dash h1 h2 h3 h4 h5 h6 {
  font-weight: bold;
}
.dash button {
  outline: none;
}
.dash a:not(.link) {
  all: unset;
}
.dash button {
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.dash button:active {
  scale: 0.95;
}
.dash input {
  border: 1px solid #555;
}
.dash input:focus {
  outline: none;
}
.dash img {
  width: 100%;
  pointer-events: none;
}
.dash .dash-container {
  width: 100%;
  margin: 0 1rem;
}
.dash #vidds_root {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}
.dash header {
  width: 100%;
  border-bottom: 1px solid #d6d6d6;
  display: flex;
  align-items: center;
  background-color: #fff;
  z-index: 100;
  max-height: 64px;
}
.dash header > div {
  display: flex;
  align-items: center;
  padding: 6px 0;
}
.dash header > div .ham {
  width: 22px;
  margin-right: 0.7rem;
  cursor: pointer;
}
.dash header > div .logo {
  width: 100px;
}
.dash header > div .nav-btns {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.dash header > div .nav-btns span.question {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.dash header > div .nav-btns span.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.dash header > div .nav-btns button.create_video {
  position: absolute;
  z-index: 9;
  bottom: 2rem;
  right: 1rem;
  color: #fff;
  box-shadow: 0 2px 0 1px rgba(64, 87, 109, 0.0705882353), 0 2px 12px rgba(53, 71, 90, 0.3137254902);
  background-image: linear-gradient(180deg, #a312bb, #a312bb, #5165ce);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.dash header > div .nav-btns button.create_video span.plus {
  width: 40px;
  height: 40px;
}
.dash header > div .nav-btns button.create_video span.text {
  display: none;
  font-weight: 600;
}
.dash main {
  display: flex;
  flex: 1;
  flex-wrap: nowrap;
}
.dash main .aside-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5019607843);
  backdrop-filter: blur(3px);
  transition: 0.2s ease;
  z-index: 999;
}
.dash main .cards_container-sa {
  display: grid;
  gap: 30px;
  grid-auto-flow: row;
  grid-template-columns: repeat(4, 1fr);
  overflow: auto;
}
.dash main .cards_container-sa .dcard-sm {
  min-width: 100px;
  max-width: 150px;
  overflow: hidden;
  line-height: 1;
  aspect-ratio: 5/3;
  background-color: #e7eeff;
  border-radius: 10px;
  box-shadow: 0 3px 5px rgba(40, 47, 49, 0.545);
  cursor: pointer;
  position: relative;
}
.dash main .cards_container-sa .card {
  width: 100%;
  aspect-ratio: 4.5/3;
  background-color: #e7eeff;
  border-radius: 10px;
  box-shadow: 0 3px 5px rgba(40, 47, 49, 0.545);
}
.dash main aside {
  padding: 1.5rem 0.5rem;
  border-right: 1px solid #efefef;
  width: 250px;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  transition: 0.2s ease;
  background-color: #fff;
  position: absolute;
  top: 0;
}
.dash main aside ul.menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.dash main aside ul.menu li {
  border-radius: 4px;
}
.dash main aside ul.menu li:hover, .dash main aside ul.menu li[active] {
  cursor: pointer;
  background-color: #d4e2ff;
}
.dash main aside ul.menu li > div {
  padding: 0.3rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dash main aside ul.menu li > div .icon {
  min-width: 28px;
}
.dash main aside ul.menu li > div .text {
  font-weight: 600;
  color: #555;
  font-size: 1rem;
  max-height: 28px;
  transition: 0.1s ease;
  min-width: 191px;
}
.dash main aside div.plans {
  margin-top: 3rem;
  padding: 20px 10px;
  border-top: 1px solid #bfbfc8;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dash main aside div.plans h3 {
  display: flex;
  align-items: center;
}
.dash main aside div.plans h3 .icon {
  min-width: 28px;
  margin-right: 0.5rem;
}
.dash main aside div.plans h3 span.text {
  font-weight: 600;
  color: #555;
  font-size: 1.2rem;
  min-width: 191px;
}
.dash main aside div.plans .ranges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dash main aside div.plans .ranges > span {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.dash main aside div.plans .ranges > span > span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
.dash main aside div.plans .ranges > span > span label {
  font-size: 0.8rem;
  font-weight: 700;
}
.dash main aside div.plans .ranges > span > span a {
  all: revert;
  font-weight: 600;
}
.dash main aside div.plans .ranges > span .progress {
  width: 100%;
  border-radius: 50px;
  height: 7px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1882352941);
  overflow: hidden;
}
.dash main aside div.plans .ranges > span .progress .fill {
  background-color: #5165ce;
  width: var(--width);
  height: 100%;
}
.dash main aside div.plans button {
  margin-top: 1.2rem;
  width: 80%;
  align-self: center;
  padding: 8px 11px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid #5165ce;
  border-radius: 7px;
}
.dash main aside div.plans button:hover {
  background-color: #5165ce;
  color: #fff;
}
.dash main .aside-overlay[data-maximized=true] {
  opacity: 1;
}
.dash main .aside-overlay[data-maximized=true] aside {
  left: 0;
}
.dash main .aside-overlay[data-maximized=true] aside ul.menu .text {
  visibility: visible;
}
.dash main .aside-overlay[data-maximized=true] aside div.plans {
  visibility: visible;
}
.dash main .aside-overlay[data-maximized=false] {
  opacity: 0;
  pointer-events: none;
}
.dash main .aside-overlay[data-maximized=false] aside {
  left: -100%;
}
.dash main .aside-overlay[data-maximized=false] aside ul.menu .text {
  visibility: hidden;
  width: 0px;
}
.dash main .aside-overlay[data-maximized=false] aside div.plans {
  visibility: hidden;
}
.dash main .dcard-gen {
  min-width: 150px;
  max-width: 225px;
  aspect-ratio: 5/3;
  background-color: #e7eeff;
  border-radius: 10px;
  box-shadow: 0 3px 5px rgba(40, 47, 49, 0.545);
  cursor: pointer;
  position: relative;
}
.dash main section.dash-section {
  height: calc(100vh - 64px);
  overflow: auto;
  flex-grow: 1;
}
.dash main section.vidds_main_container {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  height: calc(100vh - 64px);
  overflow: auto;
  padding-bottom: 100px;
  background-color: #fff;
  background-color: #fafafa;
}
.dash main section.vidds_main_container > div {
  flex-basis: 100%;
  display: none !important;
}
.dash main section.vidds_main_container > div[active-route] {
  display: block !important;
  margin-inline: auto;
  animation: slide-in 0.3s ease;
}
.dash main section.vidds_main_container > div[active-route] .spacer {
  padding: 10px;
}
.dash main .route_container, .dash main .dash-base {
  width: 100vw;
  flex: 1;
}
.dash main .route_container .sec, .dash main .dash-base .sec {
  max-width: 100%;
  padding: 10px 5px 20px;
  background-image: linear-gradient(120deg, #5165ce, #5165ce, #89acfd);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3137254902);
}
.dash main .route_container .sec .head, .dash main .dash-base .sec .head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  color: #fff;
  padding: 10px 10px 20px;
}
.dash main .route_container .sec .head h1, .dash main .dash-base .sec .head h1 {
  font-size: 1rem;
}
.dash main .route_container .sec .head button, .dash main .dash-base .sec .head button {
  color: #fff;
  font-size: 0.9rem;
  padding: 6px 10px;
  background: rgba(9, 18, 66, 0.6980392157);
  border-radius: 6px;
  font-size: 0.9rem;
}
.dash main .route_container .sec .head > span, .dash main .dash-base .sec .head > span {
  cursor: pointer;
}
.dash main .route_container .sec .carousel.expand, .dash main .dash-base .sec .carousel.expand {
  padding: 0 0 0;
  overflow: hidden;
  transition: 0.3s ease;
  position: relative;
}
.dash main .route_container .sec .carousel.expand .carousy_container .carousal_nav, .dash main .dash-base .sec .carousel.expand .carousy_container .carousal_nav {
  top: 50%;
}
.dash main .route_container .sec .carousy_container, .dash main .dash-base .sec .carousy_container {
  position: relative;
}
.dash main .route_container .sec .carousy_container #d_c_container #d_c, .dash main .dash-base .sec .carousy_container #d_c_container #d_c {
  gap: 16px;
  padding: 0 16px !important;
  list-style: none;
}
.dash main .route_container .sec .carousy_container #d_c_container #d_c [data-carousy-el=card], .dash main .dash-base .sec .carousy_container #d_c_container #d_c [data-carousy-el=card] {
  height: 100px;
  aspect-ratio: 4.5/3;
  background-color: #bfbfc8;
  border-radius: 10px;
}
.dash main .route_container .sec .carousy_container #d_c_container #d_c [data-carousy-el=card-title], .dash main .dash-base .sec .carousy_container #d_c_container #d_c [data-carousy-el=card-title] {
  display: inline-block;
  margin-top: 0.3rem;
  user-select: none;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}
.dash main .route_container .sec .carousy_container .carousal_nav, .dash main .dash-base .sec .carousy_container .carousal_nav {
  position: absolute;
  width: 100%;
  top: calc(50% - 0.65rem);
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  display: flex;
  justify-content: space-between;
}
.dash main .route_container .sec .carousy_container .carousal_nav button, .dash main .dash-base .sec .carousy_container .carousal_nav button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  pointer-events: all;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3098039216);
  background-color: #5165ce;
  border: 1px solid rgb(94, 94, 94);
}
.dash main .route_container .sec .inputs, .dash main .dash-base .sec .inputs {
  padding: 10px 10px 30px;
  display: flex;
  gap: 10px;
}
.dash main .route_container .sec .inputs select, .dash main .dash-base .sec .inputs select {
  padding: 10px 20px 10px 5px;
  width: 200px;
  border-radius: 4px;
  border: none;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3137254902);
  background-color: #fff;
  font-size: 0.9rem;
}
.dash main .route_container .sec .inputs div.ip, .dash main .dash-base .sec .inputs div.ip {
  display: flex;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3137254902);
  padding-right: 10px;
  border-radius: 4px;
}
.dash main .route_container .sec .inputs div.ip input, .dash main .dash-base .sec .inputs div.ip input {
  padding: 10px 20px 10px 5px;
  width: 150px;
  border-radius: 4px;
  border: none;
  font-size: 0.9rem;
}
.dash main .route_container .sec .inputs div.ip .icon, .dash main .dash-base .sec .inputs div.ip .icon {
  width: 22px;
}
.dash main .route_container .sec.vidds_container, .dash main .dash-base .sec.vidds_container {
  margin-top: 25px;
  background-image: linear-gradient(0, #d4e2ff, #d4e2ff, #d4e2ff);
}
.dash main .route_container .sec.vidds_container .head, .dash main .dash-base .sec.vidds_container .head {
  color: #222;
}
.dash main .route_container .sec.vidds_container .cards_container, .dash main .dash-base .sec.vidds_container .cards_container {
  padding: 0 10px 30px;
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-height: unset;
  /* width */
  /* Track */
  /* Handle */
}
.dash main .route_container .sec.vidds_container .cards_container::-webkit-scrollbar, .dash main .dash-base .sec.vidds_container .cards_container::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.dash main .route_container .sec.vidds_container .cards_container::-webkit-scrollbar-track, .dash main .dash-base .sec.vidds_container .cards_container::-webkit-scrollbar-track {
  background: transparent;
}
.dash main .route_container .sec.vidds_container .cards_container::-webkit-scrollbar-thumb, .dash main .dash-base .sec.vidds_container .cards_container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}
.dash main .route_container .sec.vidds_container .cards_container .dcard-v, .dash main .dash-base .sec.vidds_container .cards_container .dcard-v {
  min-width: 150px;
  max-width: 225px;
  display: flex;
  aspect-ratio: 5/3.5;
  position: relative;
}
.dash main .route_container .sec.vidds_container .cards_container .dcard, .dash main .dash-base .sec.vidds_container .cards_container .dcard {
  min-width: 150px;
  max-width: 225px;
  aspect-ratio: 5/3;
  background-color: #e7eeff;
  border-radius: 10px;
  box-shadow: 0 3px 5px rgba(40, 47, 49, 0.545);
  cursor: pointer;
  position: relative;
}
.dash main .route_container .sec.vidds_container .cards_container .dcard:hover, .dash main .dash-base .sec.vidds_container .cards_container .dcard:hover {
  background-color: rgba(0, 0, 0, 0.062745098);
}
.dash main .route_container .sec.section-3, .dash main .dash-base .sec.section-3 {
  margin-top: 25px;
  background-image: linear-gradient(90deg, #091242, #091242, #5165ce);
}
.dash main .route_container .sec.section-3 .head h1, .dash main .dash-base .sec.section-3 .head h1 {
  margin: 0 auto;
}
.dash main .route_container .sec.section-3 .carousy_container .carousal_nav button, .dash main .dash-base .sec.section-3 .carousy_container .carousal_nav button {
  background-color: #091242 !important;
  border: 1px solid rgb(94, 94, 94);
}
.dash main .route_container#vidds_my_vidds .vidds_container, .dash main .dash-base#vidds_my_vidds .vidds_container {
  margin-top: 0;
}
.dash main .route_container#vidds_brand_kits .vidds_container, .dash main .dash-base#vidds_brand_kits .vidds_container {
  margin-top: 0;
}
.dash main .route_container#vidds_brand_kits .vidds_container .cards_container .dcard, .dash main .dash-base#vidds_brand_kits .vidds_container .cards_container .dcard {
  position: relative;
}
.dash main .route_container#vidds_brand_kits .vidds_container .cards_container .dcard .title, .dash main .dash-base#vidds_brand_kits .vidds_container .cards_container .dcard .title {
  font-size: 0.9rem;
  font-weight: 600;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}
.dash main .route_container#vidds_brand_kits .vidds_container .cards_container .dcard .option_btns, .dash main .dash-base#vidds_brand_kits .vidds_container .cards_container .dcard .option_btns {
  position: absolute;
  bottom: 5px;
  right: 10px;
}
.dash main .route_container#vidds_brand_kits .carousal_section, .dash main .dash-base#vidds_brand_kits .carousal_section {
  margin-top: 40px;
}
.dash main .route_container#vidds_templates .vidds_container, .dash main .dash-base#vidds_templates .vidds_container {
  margin-top: 0;
}
.dash main .route_container#vidds_templates .vidds_container .cards_container .dcard:hover button, .dash main .dash-base#vidds_templates .vidds_container .cards_container .dcard:hover button {
  display: initial;
}
.dash main .route_container#vidds_templates .vidds_container .cards_container .dcard button, .dash main .dash-base#vidds_templates .vidds_container .cards_container .dcard button {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.9rem;
  padding: 7px 14px;
  background: rgba(9, 18, 66, 0.6980392157);
  border-radius: 6px;
  background-color: #5165ce;
}
.dash main .route_container#vidds_tutorials .vidds_container, .dash main .dash-base#vidds_tutorials .vidds_container {
  background-image: linear-gradient(90deg, #091242, #091242, #5165ce);
  margin-top: 0;
}
.dash main .route_container#vidds_tutorials .vidds_container .head, .dash main .dash-base#vidds_tutorials .vidds_container .head {
  color: #fff;
}
.dash main .route_container#vidds_tutorials .vidds_container .dcard:hover, .dash main .dash-base#vidds_tutorials .vidds_container .dcard:hover {
  background-color: #5165ce;
}
.dash main .route_container#vidds_tutorials .carousal_section, .dash main .dash-base#vidds_tutorials .carousal_section {
  margin-top: 20px;
}
@keyframes slide-in {
  0% {
    position: relative;
    top: 10px;
    opacity: 0;
  }
  100% {
    position: relative;
    top: 0;
    opacity: 1;
  }
}
.dash .dpd {
  position: absolute;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3137254902);
  background-color: #fff;
  border-radius: 6px;
}
.dash div.dpd_create_video {
  z-index: 110;
  width: 100%;
  left: 0;
}
.dash div.dpd_create_video .dpd_container {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 10px 0 15px 0;
}
.dash div.dpd_create_video .dpd_container div.dpd_head {
  padding: 0 20px 10px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e0e0e0;
}
.dash div.dpd_create_video .dpd_container div.platforms {
  max-height: 355px;
  overflow: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.dash div.dpd_create_video .dpd_container div.platforms::-webkit-scrollbar {
  width: 8px;
}
.dash div.dpd_create_video .dpd_container div.platforms::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.dash div.dpd_create_video .dpd_container div.platforms::-webkit-scrollbar-thumb {
  background: #898989;
  border-radius: 30px;
}
.dash div.dpd_create_video .dpd_container div.platforms::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.dash div.dpd_create_video .dpd_container div.customize_section {
  padding: 10px 20px;
  margin-top: auto;
  height: 153px;
  background-color: #f9f9f9;
  border-top: 1px solid #bfbfc8;
  display: flex;
  flex-direction: column;
}
.dash div.dpd_create_video .dpd_container div.customize_section h4 {
  font-size: 0.9rem;
}
.dash div.dpd_create_video .dpd_container div.customize_section div.width_height {
  display: flex;
  gap: 6px;
  margin-top: auto;
  margin-bottom: auto;
}
.dash div.dpd_create_video .dpd_container div.customize_section div.width_height div {
  flex: 1;
}
.dash div.dpd_create_video .dpd_container div.customize_section div.width_height div label {
  font-size: 0.9rem;
  font-weight: 600;
}
.dash div.dpd_create_video .dpd_container div.customize_section div.width_height div div {
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.dash div.dpd_create_video .dpd_container div.customize_section div.width_height div div input {
  width: 100%;
  padding: 5px;
  border-radius: 4px;
}
.dash div.dpd_create_video .dpd_container div.customize_section button {
  color: #fff;
  box-shadow: 0 2px 0 1px rgba(64, 87, 109, 0.0705882353), 0 2px 12px rgba(53, 71, 90, 0.3137254902);
  padding: 8px 15px;
  border-radius: 6px;
  background-color: #5165ce;
  font-size: 0.9rem;
  font-weight: 600;
  margin-right: auto;
  width: 93%;
}
.dash div.dpd_create_video .dpd_container div.drop-list ul {
  list-style: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: #555;
}
.dash div.dpd_create_video .dpd_container div.drop-list ul li {
  padding: 10px 20px;
}
.dash div.dpd_create_video .dpd_container div.drop-list ul li:hover {
  background-color: #d4e2ff;
  cursor: pointer;
}
.dash div.dpd_profile {
  min-width: 280px;
  max-width: 350px;
  padding: 20px 30px;
  transform: translate(-100%, 0.3rem);
}
.dash div.dpd_profile .dpd_container ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.dash div.dpd_profile .dpd_container ul li {
  cursor: pointer;
  padding: 10px 5px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  gap: 8px;
}
.dash div.dpd_profile .dpd_container ul li:hover {
  background-color: #d4e2ff;
}
.dash div.dpd_profile .dpd_container ul li span.text {
  display: inline-flex;
  gap: 3px;
}
.dash div.dpd_profile .dpd_container ul li span.text span.icon {
  width: 20px;
  height: 20px;
}
.dash div.dpd_profile .dpd_container ul li span.text span.username {
  width: 100px;
  overflow: hidden;
  display: inline-block;
  text-overflow: ellipsis;
}
.dash div.dpd_custom_video {
  min-width: 280px;
  max-width: 350px;
  padding: 20px 30px;
  transform: translate(-100%, 0.3rem);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dash div.dpd_custom_video h4 {
  font-size: 0.9rem;
}
.dash div.dpd_custom_video div.width_height {
  display: flex;
  gap: 6px;
  margin-top: auto;
  margin-bottom: auto;
}
.dash div.dpd_custom_video div.width_height div {
  flex: 1;
}
.dash div.dpd_custom_video div.width_height div label {
  font-size: 0.9rem;
  font-weight: 600;
}
.dash div.dpd_custom_video div.width_height div div {
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.dash div.dpd_custom_video div.width_height div div input {
  width: 100%;
  padding: 5px;
  border-radius: 4px;
}
.dash div.dpd_custom_video button {
  color: #fff;
  box-shadow: 0 2px 0 1px rgba(64, 87, 109, 0.0705882353), 0 2px 12px rgba(53, 71, 90, 0.3137254902);
  padding: 8px 15px;
  border-radius: 6px;
  background-color: #5165ce;
  font-size: 0.9rem;
  font-weight: 600;
  margin-right: auto;
  width: 93%;
}
.dash .dpd[data-modal-hidden=true],
.dash .brandkit_modal_overlay[data-modal-hidden=true] {
  opacity: 0;
  pointer-events: none;
  display: none;
}
.dash .dpd[data-modal-hidden=false],
.dash .brandkit_modal_overlay[data-modal-hidden=false] {
  opacity: 1;
  pointer-events: all;
}
.dash .brandkit_modal_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6666666667);
  backdrop-filter: blur(1px);
  z-index: 100;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s ease;
}
.dash .brandkit_modal_overlay .brandkit_container {
  max-width: 450px;
  width: 100%;
  height: auto;
  background-color: #fff;
  border-radius: 4px;
  padding: 20px 25px 25px;
  box-shadow: 0 5px 20px 5px rgba(0, 0, 0, 0.6);
}
.dash .brandkit_modal_overlay .brandkit_container .modal_grid {
  height: 100%;
  display: grid;
  column-gap: 20px;
  row-gap: 30px;
  grid-template-columns: 120px 1fr;
  grid-template-areas: "head head" "logo name" "font1 font1" "font2 font2" "color color" "btn btn";
}
.dash .brandkit_modal_overlay .brandkit_container .modal_grid .head {
  grid-area: head;
  display: flex;
  justify-content: space-between;
}
.dash .brandkit_modal_overlay .brandkit_container .modal_grid .head .icon {
  cursor: pointer;
}
.dash .brandkit_modal_overlay .brandkit_container .modal_grid .logo {
  grid-area: logo;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dash .brandkit_modal_overlay .brandkit_container .modal_grid .logo .logo_ip {
  width: 100px;
  height: 100px;
  gap: 5px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #e7eeff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3764705882);
  user-select: none;
  cursor: pointer;
}
.dash .brandkit_modal_overlay .brandkit_container .modal_grid .logo .logo_ip:active {
  scale: 0.96;
}
.dash .brandkit_modal_overlay .brandkit_container .modal_grid .ip > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dash .brandkit_modal_overlay .brandkit_container .modal_grid .ip > div label {
  font-weight: 500;
}
.dash .brandkit_modal_overlay .brandkit_container .modal_grid .ip > div input,
.dash .brandkit_modal_overlay .brandkit_container .modal_grid .ip > div select {
  font-size: 1rem;
  width: 100%;
  padding: 9px 6px;
  border: 1px solid #bfbfc8;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4392156863);
  background-color: #e7eeff;
}
.dash .brandkit_modal_overlay .brandkit_container .modal_grid .name {
  grid-area: name;
  align-self: center;
}
.dash .brandkit_modal_overlay .brandkit_container .modal_grid .primary_font {
  grid-area: font1;
}
.dash .brandkit_modal_overlay .brandkit_container .modal_grid .sec_font {
  grid-area: font2;
}
.dash .brandkit_modal_overlay .brandkit_container .modal_grid .colors {
  grid-area: color;
}
.dash .brandkit_modal_overlay .brandkit_container .modal_grid .colors .color_ip {
  border: 1px solid #bfbfc8;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
}
.dash .brandkit_modal_overlay .brandkit_container .modal_grid .colors .color_ip .set_color {
  margin-top: 8px;
  width: 250px;
  display: flex;
  gap: 10px;
}
.dash .brandkit_modal_overlay .brandkit_container .modal_grid .colors .color_ip .set_color span {
  display: inline-block;
  border-radius: 50%;
  width: 23px;
  height: 23px;
  background-color: var(--color);
  cursor: pointer;
  position: relative;
}
.dash .brandkit_modal_overlay .brandkit_container .modal_grid .colors .color_ip .set_color span:active {
  scale: 0.9;
}
.dash .brandkit_modal_overlay .brandkit_container .modal_grid .colors .color_ip .set_color span:hover::before {
  content: attr(data-color);
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 8px;
  width: max-content;
  background-color: var(--color);
  padding: 8px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 900;
  color: #fff;
}
.dash .brandkit_modal_overlay .brandkit_container .modal_grid .submit {
  grid-area: btn;
  justify-self: center;
}
.dash .brandkit_modal_overlay .brandkit_container .modal_grid .submit button {
  color: #fff;
  font-size: 0.9rem;
  padding: 12px 70px;
  background: rgba(9, 18, 66, 0.6980392157);
  border-radius: 6px;
  background-color: #5165ce;
}
.dash .brandkit_modal_overlay .brandkit_container .icon {
  width: 30px;
  height: 30px;
}
.dash .progress_counter {
  margin: 30px auto auto 5px;
  position: relative;
}
.dash .progress_counter div.button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background-color: #a312bb;
  border-radius: 9px;
  cursor: pointer;
  box-shadow: 0 2px 0 1px rgba(64, 87, 109, 0.0705882353), 0 2px 12px rgba(53, 71, 90, 0.3137254902);
}
.dash .progress_counter div.button .icon {
  width: 24px;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.dash .progress_counter div.button .counter {
  padding: 4px 10px;
  background-color: #fff;
  border-radius: 100px;
  font-weight: 600;
  pointer-events: none;
}
.dash .progress_counter .bottom_checkboxes {
  z-index: 10;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  background-color: #fff;
  box-shadow: 0 2px 0 1px rgba(64, 87, 109, 0.0705882353), 0 2px 12px rgba(53, 71, 90, 0.3137254902);
  border-radius: 8px;
  padding: 12px 12px 20px;
  width: 330px;
  display: flex;
  flex-direction: column;
}
.dash .progress_counter .bottom_checkboxes .checkboxes_container h2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.3rem;
}
.dash .progress_counter .bottom_checkboxes .checkboxes_container h2 span {
  width: 28px;
}
.dash .progress_counter .bottom_checkboxes .checkboxes_container p.status {
  font-weight: 700;
  color: #555;
}
.dash .progress_counter .bottom_checkboxes .checkboxes_container .indicator progress {
  width: 100%;
}
.dash .progress_counter .bottom_checkboxes .checkboxes_container ul.checkboxes {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  margin-top: 10px;
}
.dash .progress_counter .bottom_checkboxes .checkboxes_container ul.checkboxes li {
  display: flex;
  align-items: center;
  gap: 9px;
}
.dash .progress_counter .bottom_checkboxes .checkboxes_container ul.checkboxes li[data-checked] span {
  background-image: url(./assets/icon/ic_checked.svg);
}
.dash .progress_counter .bottom_checkboxes .checkboxes_container ul.checkboxes li[data-checked] label {
  color: #1a581c;
  font-weight: 600;
}
.dash .progress_counter .bottom_checkboxes .checkboxes_container ul.checkboxes li span {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(./assets/icon/ic_notChecked.svg);
  background-size: cover;
}
.dash .progress_counter .bottom_checkboxes[data-progress-show=false] {
  display: none;
}
.dash .progress_counter .bottom_checkboxes[data-progress-show=true] {
  display: flex;
}
@media only screen and (min-width: 576px) {
  .dash header > div .nav-btns button.create_video {
    position: static;
    width: unset;
    height: unset;
    padding: 10px 15px;
    border-radius: 10px;
  }
  .dash header > div .nav-btns button.create_video span.plus {
    display: none;
  }
  .dash header > div .nav-btns button.create_video span.text {
    display: contents;
  }
  .dash div.dpd_create_video {
    width: 300px;
    max-height: 520px;
    transform: translate(-100%, 0.5rem);
    bottom: unset;
  }
  .dash div.dpd_create_video .dpd_container div.dpd_head {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .dash header > div {
    padding: 6px 0;
  }
  .dash header > div .ham {
    width: 28px;
    margin-right: 1rem;
  }
  .dash header > div .logo {
    width: 120px;
  }
  .dash header > div .logo-nav {
    height: 36px;
  }
  .dash header > div .logo-nav img {
    height: 100%;
    width: auto;
  }
  .dash header > div .nav-btns span.question {
    width: 32px;
    height: 32px;
  }
  .dash header > div .nav-btns span.avatar {
    width: 52px;
    height: 52px;
  }
  .dash header > div .nav-btns button.create_video {
    position: static;
    width: unset;
    height: unset;
    padding: 10px 15px;
    border-radius: 10px;
  }
  .dash header > div .nav-btns button.create_video span.plus {
    display: none;
  }
  .dash header > div .nav-btns button.create_video span.text {
    display: contents;
  }
  .dash main section.vidds_main_container {
    padding: 10px;
  }
  .dash main .route_container {
    width: calc(100vw - 20px);
    flex: 1;
  }
  .dash main .route_container .sec {
    padding: 10px 10px 20px;
    border-radius: 10px;
  }
  .dash main .route_container .sec .head h1 {
    font-size: 1.5rem;
  }
  .dash main .route_container .sec .head button {
    color: #fff;
    font-size: 0.9rem;
    padding: 10px 30px;
    background: rgba(9, 18, 66, 0.6980392157);
    border-radius: 6px;
  }
  .dash main .route_container .sec.vidds_container .cards_container {
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
  }
  .dash .brandkit_modal_overlay .brandkit_container {
    max-width: 768px;
  }
  .dash .brandkit_modal_overlay .brandkit_container .modal_grid {
    column-gap: 60px;
    row-gap: 40px;
    grid-template-columns: auto 1fr;
    grid-template-areas: "head head" "logo name" "logo font1" "color font2" ". btn";
  }
  .dash .brandkit_modal_overlay .brandkit_container .modal_grid .logo .logo_ip {
    width: 150px;
    height: 150px;
  }
  .dash .brandkit_modal_overlay .brandkit_container .modal_grid .submit {
    justify-self: end;
  }
}
@media only screen and (min-width: 992px) {
  .dash main .aside-overlay {
    all: unset;
  }
  .dash main .aside-overlay aside {
    position: unset;
    top: unset;
    left: unset;
  }
  .dash main .aside-overlay[data-maximized=true] {
    pointer-events: none;
  }
  .dash main .aside-overlay[data-maximized=true] aside {
    pointer-events: all;
    left: unset;
    width: 250px;
  }
  .dash main .aside-overlay[data-maximized=true] aside ul.menu .text {
    visibility: visible;
  }
  .dash main .aside-overlay[data-maximized=true] aside div.plans {
    visibility: visible;
  }
  .dash main .aside-overlay[data-maximized=false] {
    pointer-events: none;
    opacity: 1;
  }
  .dash main .aside-overlay[data-maximized=false] aside {
    pointer-events: all;
    left: unset;
    width: 67px;
  }
  .dash main .aside-overlay[data-maximized=false] aside ul.menu .text {
    visibility: hidden;
    width: 0px;
  }
  .dash main .aside-overlay[data-maximized=false] aside div.plans {
    visibility: hidden;
  }
  .dash main section.vidds_main_container {
    padding: 20px;
  }
  .dash main .route_container {
    flex: auto;
    width: 800px;
  }
  .dash main .route_container .sec {
    padding: 10px 30px 20px;
  }
  .dash main .route_container .sec .head h1 {
    font-size: 1.7rem;
  }
  .dash main .route_container .sec .carousy_container {
    position: relative;
  }
  .dash main .route_container .sec .carousy_container #d_c_container #d_c {
    gap: 40px;
    padding: 0 32px !important;
  }
  .dash main .route_container .sec .carousy_container #d_c_container #d_c [data-carousy-el=card] {
    height: 150px;
  }
  .dash main .route_container .sec .carousy_container #d_c_container #d_c [data-carousy-el=card-title] {
    font-size: 1rem;
  }
  .dash main .route_container .sec .carousy_container .carousal_nav button {
    width: 40px;
    height: 40px;
  }
  .dash main .route_container .sec.carousal_section .head {
    position: relative;
  }
  .dash main .route_container .sec.carousal_section .head h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .dash main .route_container .sec.carousal_section .head button {
    margin-left: auto;
  }
}
@media only screen and (min-width: 1200px) {
  .dash main section.vidds_main_container {
    padding: 30px 40px;
  }
  .dash main .cards_container-sa {
    display: grid;
    gap: 30px;
    grid-auto-flow: row;
    grid-template-columns: repeat(4, 1fr);
    overflow: auto;
  }
  .dash main .cards_container-sa .dcard-sm {
    min-width: 100px;
    max-width: 150px;
    aspect-ratio: 5/3;
    background-color: #e7eeff;
    border-radius: 10px;
    box-shadow: 0 3px 5px rgba(40, 47, 49, 0.545);
    cursor: pointer;
    position: relative;
  }
  .dash main .cards_container-sa .card {
    width: 100%;
    aspect-ratio: 4.5/3;
    background-color: #e7eeff;
    border-radius: 10px;
    box-shadow: 0 3px 5px rgba(40, 47, 49, 0.545);
  }
  .dash main .route_container {
    flex: auto;
    width: 800px;
  }
  .dash main .route_container .sec .head h1 {
    font-size: 1.6rem;
  }
  .dash main .route_container .sec.vidds_container .cards_container {
    gap: 30px;
    grid-auto-flow: row;
    grid-template-columns: repeat(4, 1fr);
    overflow: auto;
  }
  .dash main .route_container .sec.vidds_container .cards_container .card {
    width: 100%;
    aspect-ratio: 4.5/3;
    background-color: #e7eeff;
    border-radius: 10px;
    box-shadow: 0 3px 5px rgba(40, 47, 49, 0.545);
  }
  .dash main .route_container#vidds_brand_kits .cards_container {
    max-height: 180px;
  }
  .dash main .route_container#vidds_templates .cards_container {
    max-height: 600px;
  }
}
@media only screen and (min-width: 1400px) {
  .dash main section.vidds_main_container {
    padding: 30px 42px;
  }
  .dash main .route_container {
    flex: auto;
    width: 800px;
  }
  .dash main .route_container .sec.vidds_container .cards_container {
    grid-template-columns: repeat(5, 1fr);
  }
}

/*# sourceMappingURL=styles-dash.css.map */
