@charset "UTF-8";

sep {
  display: block;
  width: 100%;
  clear: both;
  height: 20px;
}

.nav.main .header {
  display: flex;
  align-items: center;
}

/* .nav.main .active {
background-color: red;
} */

#nav-search i,
.nav.main .body ul ul a,
.nav.main .body ul a {
  transition: 0.3s all ease-in-out;
  transition-timing-function: ease-in-out;
}

.nav.main .body ul a.has-submenu:after {
  transition: 0.2s all ease-in-out;
  transition-timing-function: ease-in-out;
}

.upload-progress-tracker {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-top: 1px solid #eee;
  background-color: #f8f7f7;
  border-radius: 0.28571429rem;
  box-shadow: 0 0 0 0 transparent inset;
}

.file-upload-wrapper {
  background: #fff;
  border: 1px solid rgba(34, 36, 38, 0.15);
  color: rgba(0, 0, 0, 0.87);
  border-radius: 0.28571429rem;
  box-shadow: 0 0 0 0 transparent inset;
  transition: color 0.1s ease, border-color 0.1s ease;
}

.file-progress-wrapper {
  background: #f8f7f7;
  width: 100%;
  color: rgba(0, 0, 0, 0.87);
  transition: color 0.1s ease, border-color 0.1s ease;
}

.file-progress-wrapper .file-progress-wrapper {
  width: 100%;
  border-radius: 0.28571429rem;
}

.file-progress-wrapper .pause-btn {
  background: transparent;
  border: none;
  outline: 0;
  cursor: pointer;
  color: indianred;
}

.file-progress-wrapper .file-details {
  display: flex;
  gap: 10px;
  align-items: center;
}

.file-progress-wrapper .file-details .file-info {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.file-progress-wrapper .file-details .file-info .file-name {
  font-weight: bold;
  color: #000;
}

.file-progress-wrapper .file-details .file-info .status {
  text-transform: capitalize;
  font-size: 12px;
  font-weight: bold;
  font-style: italic;
}

.file-upload-label {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
}

.file-upload-label .drag-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.file-upload-label .drag-text i {
  color: #e0e1e2;
  font-size: 35px;
}

.file-upload-label .drag-text .label {
  text-align: center;
  color: #c1c3c5;
  font-weight: 700;
}

.circular-progress {
  position: relative;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: #fff;
  display: grid;
  place-items: center;
}

.circular-progress:before {
  content: "";
  position: absolute;
  height: 84%;
  width: 84%;
  background-color: #f8f7f7;
  border-radius: 50%;
}

.circular-progress .value-container {
  position: relative;
  font-size: 12px;
  color: #5C258D;
  font-weight: 600;
}

.nav.main {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #f8f7f7;
  width: 300px;
  color: #000;
  border-right: 1px solid #eeeeee;
}

.nav.main .header {
  height: 80px;
  background-color: #f8f7f7;
  padding: 20px;
}

.nav.main .header img {
  max-width: 70%;
}

.nav.main .body {
  height: calc(100vh - 120px);
  overflow-y: auto;
  overflow-x: hidden;
  width: 95%;
  margin: auto;
}

.nav.main .body ul {
  width: 100%;
  padding: 0;
  display: block;
  list-style: none;
}

.nav.main .body ul li.grouplabel {
  padding: 10px 0 10px 10px;
  font-size: 12px;
}

.nav.main .body ul li.active-submenu {
  background-color: #eeeeee;
  border-radius: 5px;
}

.nav.main .body ul a {
  border-radius: 5px;
  height: 40px;
  display: block;
  padding: 0 10px;
  line-height: 40px;
  text-decoration: none;
  opacity: 1;
  color: #000;
}

.nav.main .body ul a i {
  float: left;
  height: 40px;
  line-height: 40px;
  margin-right: 14px;
}

.nav.main .body ul a .arrow {
  padding: 0 10px;
  font-size: 10px;
}

.nav.main .body ul a.has-submenu:after {
  content: "\F105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  float: right;
  padding: 0 10px;
  height: 40px;
  line-height: 40px;
  font-size: 11px;
}

.nav.main .body ul a:hover {
  opacity: 1;
  background-color: #eeeeee;
}

.nav.main .body ul a.expanded {
  opacity: 1;
}

.nav.main .body ul a.expanded:after {
  transform: rotate(90deg);
}

.nav.main .body ul ul {
  padding: 5px 20px;
  list-style: none;
  background-color: #eeeeee;
  display: none;
  border-radius: 5px;
}

.nav.main .body ul ul a {
  font-size: 13px;
  padding: 0;
  height: 34px;
  display: block;
  line-height: 34px;
  text-decoration: none;
  opacity: 1;
}

.nav.main .body ul ul a span {
  float: right;
  width: 30px;
  height: 30px;
  background-color: #f8f7f7;
  text-align: center;
  font-size: 10px;
}

.nav.main .body ul ul a:hover {
  color: rgba(0, 0, 0, 0.5);
}

.nav.main .body ul ul.initialized {
  display: block;
}

#nav-search {
  background-color: #eeeeee;
  position: relative;
  width: 95%;
  height: 40px;
  margin: auto;
  border-radius: 5px;
}

#nav-search i {
  position: absolute;
  top: 0;
  left: 10px;
  margin: auto;
  line-height: 40px;
  color: black;
}

#nav-search input {
  width: 100%;
  height: 40px;
  border: 0;
  background-color: transparent;
  color: #000;
  border-radius: 5px;
  padding: 0 10px 0 40px;
  outline: none !important;
}

#nav-search:focus-within i {
  color: #000;
}

.main-content {
  position: relative;
  margin-left: 300px;
  min-height: 100vh;
  overflow: auto;
}

.header-hovig {
  top: 0;
  z-index: 999999;
  height: 80px;
  padding: 0 20px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  background: linear-gradient(321deg, #4389A2 0%, #5C258D 100%);
  border-bottom: 1px solid #eeeeee;
}

.header-hovig .title {
  color: #ffffff;
  text-transform: uppercase;
}

.header-hovig .welcome {
  color: #ffffff;
}

.header-hovig .initials {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: white;
  background-color: #1e1e2c;
  text-align: center;
  margin-left: 10px;
  flex-grow: 0;
  flex-shrink: 0;
  border-radius: 50%;
}

.wysiwyg label {
  margin-bottom: 10px;
}

.input-field > label:not(.label-icon).active {
  transform: translateY(-14px) scale(1) !important;
}

.file-field {
  position: relative;
}

.file-field #image {
  align-items: baseline;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: none;
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 0;
  height: auto;
  max-width: 100%;
  width: 0px;
}

.dropzone {
  border: 1px dashed #DEDEDF !important;
  margin: 5px 0 18px 0;
  border-radius: 5px;
}

.dropzone:hover {
  border: 1px dashed #B2B3B3 !important;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 0;
}

.custom-file label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.custom-file .custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  opacity: 0;
  overflow: visible;
  -webkit-appearance: initial;
     -moz-appearance: initial;
          appearance: initial;
  background-color: initial;
  cursor: pointer;
  align-items: baseline;
  color: inherit;
  text-overflow: ellipsis;
  white-space: pre;
  text-align: start !important;
  padding: initial;
  border: initial;
  height: 38px;
  padding: 0;
}

.custom-file .custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 38px;
  padding: 0.375rem 0.75rem;
  font-weight: 400;
  line-height: 25px;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.custom-file .custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: 38px;
  padding: 0.375rem 0.75rem;
  line-height: 24px;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.25rem 0.25rem 0;
}

th {
  min-width: 200px;
}

.table-wrapper {
  min-height: calc(100vh - 215px);
}

#filter-row {
  display: table-row;
}

.no-animation {
  transition: unset !important;
}

.no-animation * {
  transition: unset !important;
}

.filter-button i {
  transition: all 0.5s ease-in-out !important;
}

.filter-button.filter-active i {
  transform: rotate(360deg);
}

.ui.loading.loading-screen {
  position: relative;
  cursor: default;
  pointer-events: none;
  text-shadow: none !important;
  color: transparent !important;
  transition: all 0s linear;
}

.ui.loading.loading-screen:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100%;
  border-radius: 0.28571429rem;
  z-index: 100;
}

.ui.loading.loading-screen:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  margin: -1.5em 0 0 -1.5em;
  width: 3em;
  height: 3em;
  -webkit-animation: segment-spin 0.6s linear;
  animation: segment-spin 0.6s linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  border-radius: 500rem;
  border-color: #767676 rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1);
  border-style: solid;
  border-width: 0.2em;
  box-shadow: 0 0 0 1px transparent;
  visibility: visible;
  z-index: 101;
}

.login-screen {
  height: 100vh;
  width: 100%;
  background: linear-gradient(321deg, #4389A2 0%, #5C258D 100%);
}

.login-screen .login-box {
  position: absolute;
  width: 30%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.custom-file .filepond--credits {
  display: none !important;
}

.c-label {
  display: block;
  margin: 0 0 0.28571429rem 0;
  color: rgba(0, 0, 0, 0.87);
  font-size: 0.92857143em;
  font-weight: 700;
  text-transform: none;
}

.variants-panel th {
  min-width: 165px !important;
}

.t-center{
  text-align: center;
}
.video-thumb{
  position: relative;
  display: inline-block;

}

.video-thumb::after{
  position: absolute;
  content: "\f144";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  top:50%;
  left:50%;
  transform: translate(-50% , -50%); 
  color: black;
  font-size: 35px;
}





/* TO BE ADDED */

.grid-operations-content{
  padding:0 !important;
}


.grid-operations-content:after{
  z-index: 1 !important;
}

.grid-operations-content .item{
  position: relative;
  display: block;
  text-decoration: none;
  padding: 8px 10px;
  width: 90px;
  color: #000;
  font-weight: bold;
  border-bottom: 1px solid #eee; 
  cursor: pointer;
  z-index: 2 !important;
}

.grid-operations-content .item:hover{
 
  background-color: #eee; 
}

.fancybox-slide--iframe .fancybox-content {
  width  : 800px !important;
  height : 600px !important;
  max-width  : 80%;
  max-height : 80%;
  margin: 0;
}

.grid-row{
cursor: pointer;
}

.grid-row:hover{
background-color: #f1f1f1;
}

.dropdown-notifications{
  max-width: 400px !important;
  width: 100% !important;
  min-width: 400px !important; 
  padding: 0 !important;
  /* min-height: 300px !important; */
}

.dropdown-notifications .item{
  white-space : initial !important; 
}


.notification-popup-trigger.notification-new{
  position: relative;
}

.notification-popup-trigger.notification-new::after{
  content: "";
  position: absolute;
  top: 22px;
  right: 33px;
  min-height: 5px;
  min-width: 5px;
  background-color: rgb(247, 31, 31);
  border-radius: 50%;
}