@charset "UTF-8";

 *:focus {
    outline: none;
}

 :root {
    --bs-input-group: rgb(247, 247, 251);
    --bs-border-color-secondary: rgb(237, 241, 247);
    --bs-input-text-color:rgb(29, 30, 44);
    --bs-input-group-label-color: rgb(105, 112, 127);
    --bs-color-primary: rgb(98, 102, 249);
    --bs-color-secondary: rgb(250, 65, 105);
    --bs-border-radius-medium: 16px;
    --bs-border-radius-small: 8px;

    --bs-font-size-regular: 14px;
    --bs-font-size-xsmall: 8px;
    --bs-font-size-small: 12px;
    --bs-font-size-medium: 16px;
    --bs-font-size-large: 24px;
    --bs-font-size-xlarge: 32px;
    --bs-padding-medium: 16px;

    --bs-margin-medium: 16px;

    --bs-bg-section: rgb(247, 247, 251);

    --bs-box-shadow-secondary: -1px 0px 9px rgba(0, 0, 0 , 0.2);


 }

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px rgb(247, 247, 251) inset !important;
    box-shadow: 0 0 0 30px rgb(247, 247, 251) inset !important;
    font-size: 16px;

}

body, html, #root {
    height: 100%;
}


/* General */

.pointer {
  cursor: pointer;
}

.icon-box .icon {
  height: 24px;
  width: 24px;
}

.block {
  display: block;
}

.pull-right {
  float: right;
}

.right-arrow {
  width: 7px;
  height: 16px;
}

.top {
  z-index: 1000;
}

.text-left {
  text-align: left;
}

.radio-group {
  padding-top: var(--bs-padding-medium)
}

.multi-choice input, .radio-group input {
  flex: 0 0 auto;
}

.hidden {
  display: none;
}

.no-padding {
  padding: 0px !important;
}

.pd-l-2 {
  padding-left: 8px;
}

.pd-r-2 {
  padding-right: 8px;
}

.w100 {
  width: 100%;
}

tr {
  cursor: pointer;
}

.h100 {
  height: 100%;
}

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

.icon-selector.active .icon {
  background-image: linear-gradient(310deg, #cb0c9f 0%, #cb0c9f 100%);
  color: white;
}

.footer {
  bottom: 0;
  width: 100%;
}

.navbar-vertical.navbar-expand-xs .navbar-collapse {
  height: auto;
}

.video-player {
  width: 100%;
  height: 300px;
  background-color: black;
}

.loader-container {
  width: 100%;
  display: flex;
  align-items: center;
  height: 100%;
}

.loader {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    width: 100%;
}

.process-loader {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 5000;
}

.relative {
  position: relative;
}

.align-right {
  text-align: right;
}

.nav-link.active .icon {
  color: #fff;
}

/* General End */


/* Text */

p {
    margin: 0;
}

.text-small {
    font-size: var(--bs-font-size-xsmall);
}

.text {
  font-size: var(--bs-font-size-medium);
  color: black;
}

.text.xs {
  font-size: var(--bs-font-size-xsmall);
}

.text.sm {
  font-size: var(--bs-font-size-small);
}

.text.md {
  font-size: var(--bs-font-size-medium);
}

.text.lg {
  font-size: var(--bs-font-size-large);
}

.text.xl {
  font-size: var(--bs-font-size-xlarge);
}

.white {
  color: white;
}

.bold {
  font-weight: bold;
}

/* Text End */

.layout-wrapper {
  padding-bottom: 60px;
}



  .page-form-container {
    display: flex;
    height: 100%;
    width: 100%;
  } 
  
  .page-form-container .page-form-banner {
    height: 100%;
    flex-grow: 1;
  }

  .page-form-banner .sliders {
    width: 100%;
    height: 100%;
  }
  .page-form-banner .sliders img{
    object-fit: cover;
  }
  
  .page-form-banner .slider1 {
    background: url('../images/sliders/login-slider-1.jpg');
    background-position: center;
    background-size: cover;
    height: 100%;
    width: 100%;
  }

  .form-container {
    width: 500px;
    max-width: 100%;
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .form-container .form {
    text-align: center;
    padding: 16px;
    width: 400px;
    max-width: 100%;
  }

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

  .inline-form {
    width: 500px;
    max-width: 100%;
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .spacer-h {
    height: 32px;
    display: block;
  }

  .edc-btn-secondary {
    padding: 12px 30px;
    border-radius: 30px;
    background-color: var(--bs-color-secondary);
    border: none;
    font-size: 16px;
    color: #FFFFFF;
  }

  h5 {
    font-size: 16px;
    font-weight: 600;
  }

  .flex {
    display: flex;
    width: 100%;
  }

  .grow {
    flex-grow: 1;
  }

  .edu-link {
    color: var(--bs-color-primary);
    cursor: pointer;
  }

  .underline {
    text-decoration: underline;
  }

  .no-padding {
    padding: 0px;
  }

  .form-logo {
    width: 100px;
    height: 100px;
  }

  .bg-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top:0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
  }

  .welcome-msg {
    display: inline-block;
    margin-left: 16px;
  }

  .page-header .menus {
    display: flex;
    align-items: center;
    z-index: 1;
  }

  .menus .menu-item {
    margin: 0px 10px;
  }

  .menus .icon {
    cursor: pointer;
    height: 30px;
  }

  .h-spacer {
    display: block;
  }

  .h-spacer.xl {
    height: 40px;
  }

  .h-spacer.lg {
    height: 32px;
  }

  .h-spacer.md {
    height: 24px;
  }

  .h-spacer.sm {
    height: 16px;
  }

  .h-spacer.xs {
    height: 8px;
  }

  .h-divider {
    width: 100%;
    display: block;
    height: 1px;
    background-color: var(--bs-border-color-secondary);
  }

.section-title {
    font-weight: bold;
    font-size: 16px;
  }

  .edc-carousel-content {
    display: flex;
    flex-wrap: nowrap;
    flex-shrink: 0;
    overflow-x: auto;
  }

  .edc-card {
    background-position: center;
    background-size: cover;
    width: 300px;
    margin-right: 16px;
    border-radius: 8px;
    color: #FFFFFF;
    position: relative;
  }

  .quick-access-card {
    width: 300px;
    margin-right: 16px;
    padding: 16px;
    border-radius: 8px;
    position: relative;
  }

  .quick-access-card .card-icon{
    width: 40px;
    height: 40px;
    margin-right: 16px;
  }

  .edc-card .bg-overlay {
    border-radius: var(--bs-border-radius-medium);
    z-index: -1;
  }

  .edc-card-content {
    z-index: 1;
    display: block;
    background: rgba(0, 0, 0, 0.3);
    padding: var(--bs-padding-medium);
    height: 100%;
    border-radius: 12px;
  }

 .title {
    font-size: 16px;
    font-weight: bold;
  }

  .edc-card .description {
    font-size: 14px;
  }

  .edc-card .timing .date {
    display: block;
    font-size: 16px;
  }

  .edc-card .timing .time {
    font-size: 12px;
  }

  .add-new-card {
     border-radius: var(--bs-border-radius-medium);
     background-color: var(--bs-color-secondary);
     padding: var(--bs-padding-medium);
     color: #FFFFFF;
     display: flex;
     align-items: center;
     margin-right: var(--bs-margin-medium);
     cursor: pointer;
  }

  .scroll-x {
    overflow-x: auto;
  }

  .no-shrink {
    flex-shrink: 0;
  }

.edc-carousel-content::-webkit-scrollbar {
    display: none;
  }
  
  .edc-carousel-content {
    -ms-overflow-style: none;
    scrollbar-width: none;
  } 


  .h-card {
    border: 1px solid rgba(0, 0, 0 , 0.2);
  }

  .h-card .detail-col {
    display: flex;
    align-items: center;
  }

  .h-card .detail-col .detail {
    margin-left: 0.75rem;
  }

  .message-card {
    background-color: var(--bs-color-primary);
    padding: 16px;
    border-radius: var(--bs-border-radius-medium);
  }

  .message-card .message {
    color: white;
  }

  .search-box {
    border-radius: var(--bs-border-radius-medium);
    border: 1px solid var(--bs-color-secondary);
    padding: 8px 16px;
    align-items: center;
  }

  .search-box .search-input {
    color: var(--bs-color-secondary);
    font-weight: lighter;
    font-size: var(--bs-font-size-medium);
  }

  .search-box .search-icon {
    height: 30px;
    width: 30px;;
  }

  .assignment-card, .attachment-card, .qa-card {
    padding: var(--bs-padding-medium);
    background: var(--bs-bg-section);
    border-radius: var(--bs-border-radius-medium);
    position: relative;
    height: 100%;
  }

  .qa-card {
    border: 1px solid var(--bs-border-color-secondary)
  }
  
  .attachment-card .card-icon {
    width: 40px;
    height: 40px;
    margin-right: var(--bs-margin-medium);
  }

  .v-align-center {
    align-items: center;
  }

  .status-circle {
    border-radius: 12px;
    width: 12px;
    height: 12px;
  }

  .status-circle.abs {
    top: 16px;
    right: 16px;
    position: absolute;
  }

  .status-circle.pending {
    background-color: red;
  }

  .status-circle.completed {
    background-color: green;
  }

  .ml-2 {
    margin-left: 8px;
  }

  .ml-3 {
    margin-left: 16px;
  }

  .tab-bar {
    align-items: center;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    border-top: 1px solid var(--bs-bg-section);
    background-color: #FFFFFF;
    z-index: 1000;
  }

  .tab-bar .tab {
    text-align: center;
    padding: 16px;
    cursor: pointer;
  }

  .tab-bar .tab img {
    width: 20px;
  }

  .tab-bar .tab span {
    font-size: 14px;
  }

  /* Class Detail */
  .class-cover-container {
    height: 100%;
    position: relative;
  }

  .class-cover-image {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background-position: center;
    background-size: cover;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100000;
  }

  .class-info img {
    width: 30px;
    height: 30px;
    cursor: pointer;
  }

  .class-info .flex {
    align-items: center;
  }

  .class-info .title {
    margin-bottom: 0px;
  }

  .topic-card {
    align-items: center;
    background: var(--bs-bg-section);
    border-radius: var(--bs-border-radius-medium);
    padding: var(--bs-padding-medium);
    height: 100%;
  }

  .topic-card .topic-icon {
    width: 30px;
    height: 30px;
  }

  .topic-card .title {
    margin-bottom: 0px !important;
  }

  /* Class Detail End*/

  /* Page */

  .page {
    display: block;
  }

  .page-container {
    display: block;
    height: 100%;
    padding-bottom: 100px;
  }

  .page-content {
    display: block;
    margin: 0px auto;
    padding: 40px 40px 100px 40px;
    min-height: 100%;
    position: relative;
    z-index: 1000;
     background-color: white;
  }

  .custom-page-header {
    padding: var(--bs-padding-medium);
  }

  .curved-page-content {
    border-top-left-radius: var(--bs-border-radius-medium);
    border-top-right-radius: var(--bs-border-radius-medium);
  }

  .page-popup {
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    z-index: 1080;
    top: 0;
    left:0;
    right: 0;
    bottom: 0;
  }

  .page-popup .popup {
    position: absolute;
    z-index: 11;
    top: 0;
    right: 0;
    width: 425px;
    max-width: 100%;
    bottom: 0;
    background-image: url('../images/sliders/login-slider-1.jpg');
    background-position: center;
    background-size: cover;
  }

  .page-popup .popup-header {
    height: 100px;
    position: absolute;
    z-index: 1001;
    padding: var(--bs-padding-medium);
    align-items: center;
    display: flex;
  }

  .page-popup .popup-content {
    bottom: 0px;
    right:0px;
    left: 0px;
    position: absolute;
    z-index: 1001;
    border-top-left-radius: var(--bs-border-radius-medium);
    border-top-right-radius: var(--bs-border-radius-medium);

    overflow: auto;
    background-color: white;
    padding: var(--bs-padding-medium)
  }


  /* Page End*/

  /* Page Header */


  .page-header {
    height: 200px;
    background-image: url('../images/sliders/login-slider-1.jpg');
    background-position: center;
    background-size: cover;
    display: flex;
    position: relative;
    color: #FFFFFF;
    padding: 40px;
  }

  .page-header .brand {
    display: flex;
    z-index: 1;
    align-items: center;
  }

  .page-header .brand .logo{
    width: auto;
    height: 100px;
  }

  .page-header .brand .use-info {
    font-size: 16px;
    font-weight: bold;
    display: block;
  }

  .page-header .brand .brand-info {
    font-size: 12px;
    display: block;

  }

  .page-header {
    display: flex;
    padding: var(--bs-padding-medium);
    align-items: center;
  }

  .back-btn {
    width: 16px;
    height: 14px;
    cursor: pointer;
    z-index: 1;
  }

  .page-title {
    font-size: var(--bs-font-size-large);
    margin-bottom: 0px;
  }

  .page-sub-title {
    font-size: var(--bs-font-size-medium);
    margin-bottom: 0px;
  }
  /* Page Header End */

  /* Inputs */

  .button-group {
    background-color: var(--bs-color-secondary);
    border-radius: 25px;
  }

  .button-group .button-group-item {
    padding: var(--bs-padding-medium);
    flex-grow: 1;
    color: #FFFFFF;
    text-align: center;
    text-decoration: underline;
  }


  .edc-input-group {
    background-color: var(--bs-input-group);
    text-align: left;
    border-radius: 8px;
    padding: 8px;
  }

  .edc-input-group .label {
    font-size: 12px !important;
    color: var(--bs-input-group-label-color);
    display: block;
  }

  .text-input {
    padding-left: 0px;
    border: none;
    background: none;
    color: var(--bs-input-text-color);
    font-size: 16px;
    padding: 0px;
  }

  .text-input:focus {
    border: none;
    background: none;
    outline-color: var(--bs-input-group);
    outline: none;
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .form-control-color{
    width: 100%;
  }
  .form-control-color input{
    width: 40px;
  }

  .edc-text-area {
    border: 1px solid var(--bs-border-color-secondary);
  }

  .edc-text-area textarea {
    height: 100px;
    width: 100%;
    overflow: auto;
    resize: none;
  }

  .edc-text-area textarea::-webkit-scrollbar{
    width: 5px;
  }

  .edc-text-area textarea::-webkit-scrollbar-thumb:hover {
    background: #cb0c9f;
  }

  .edc-text-area textarea::-webkit-scrollbar-track {
    background: #e8e8e8;
  }

  .edc-text-area textarea::-webkit-scrollbar-thumb {
    background: #cb0c9f;
  }

  .file-uploader {
    border: 1px solid var(--bs-border-color-secondary);
  }

  .file-uploader .file-selector {
    display: block;
    text-align: center;
    padding: 40px;
  }

  .file-selector .upload-icon{
    height: 40px;
  }

  .file-preview {
    position: relative;
    height: 100px;
    width: 100px;
    background-position: center;
    background-size: cover;
    margin-right: var(--bs-margin-medium);
    border-radius: var(--bs-border-radius-small);
    border: 1px solid var(--bs-border-color-secondary);
    box-shadow: var(--bs-box-shadow-secondary);
  }
  ::-webkit-scrollbar{
    width: 10px;
  }
  .action-img{
    display: none;
    z-index: 50;
  }
  .file-img{
    position: absolute;
    z-index: 1;
    height: 100px;
    width: 100px;
    background-position: center;
    background-size: contain;
    top:0;
    background-repeat: no-repeat;
  }
  .file-image{
    position: absolute;
    z-index: 1;
    height: 100px;
    width: 100px;
    background-position: center;
    background-size: cover;
    top:0
  }
  .file-preview .close, .price .close {
    /* position: absolute; */
    top: 4px;
    right: 8px;
    width: 16px;
    height: 16px;
    z-index: 11;
    cursor: pointer;
  }

  .file-preview .edit , .price .edit{
    /* position: absolute; */
    top: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    z-index: 11;
    cursor: pointer;
  }
  .file-preview:hover .action-img, .price:hover .action-img {
    display: flex;
    justify-content: end;
    align-items: center;
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 20px;
    column-gap: 8px;
    background-color: rgba(0, 0, 0 , 0.2);
  }

  .add-btn {
    height: 24px;
    width: 24px;
    cursor: pointer;
  }

  .edit-btn {
    height: 24px;
    width: 24px;
    cursor: pointer;
  }
  .explore-btn{
    height: 20px;
    width: 20px;
    cursor: pointer;
  }

  .cover-preview {
    height: 150px;
    display: block;
    background-position: center;
    background-size: cover;
    border-radius: var(--bs-border-radius-small);
  }

  .show-file-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background-color: black;
    z-index: 998;
  }

  .show-file-container .file {
    width: 100%;
    z-index: 999;
    height: 90%;
    object-fit: contain;

  }

  .show-file-container .file-details {
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: var(--bs-padding-medium);
    z-index: 1000;
  }

  .show-file-container .close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    z-index: 1000;
    box-shadow: var(--bs-box-shadow-secondary);
  }

  /* Inputs End */

  .default_btn {
    border: none;
    outline: none;
    background-image: linear-gradient(294deg, #841ab0, #ec0561);
    color: white;
    font-weight: bold;
  }

  .card .actions{
    display: none !important;
    position: absolute;
    top: 0px;
    right:0px;
    width:100%;
    padding: 4px 8px;

  }

  .action{
    width: 100%;
    height: 10px;
  }
  .box:hover .actions{
    display: flex !important;
    z-index: 1060;
    background-color: rgba(0, 0, 0 , 0.2);
    border-radius: 16px 16px 0px 0px;

  }
  
.navbar-vertical .navbar-nav>.nav-item .nav-link.active {
    color: #344767;
    background-color: #fff;
}
.navbar-vertical .navbar-nav .nav-link.active {
    font-weight: 600;
    box-shadow: 0 20px 27px 0 rgba(0,0,0,.05);
    border-radius: 0.5rem;
}
.navbar-vertical.navbar-expand-xs .navbar-nav .nav-link {
    padding-top: 0.675rem;
    padding-bottom: 0.675rem;
    margin: 0 1rem;
}
.navbar-vertical .navbar-nav .nav-link {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.jWpMhA {
  font-size: 14px !important;
  font-weight: 700 !important;
}

.hPUEku {
 justify-content: center !important;
}

select::placeholder{
  font-size: 4px !important;
}
.fileUpload .cover-preview {
 width: 58px;
 height: 58px;
 position: absolute !important;
 top: -16px;
 right: -70px;
}

.fileUpload .file-uploader{
  display: flex;
}
.nav-link-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.preview-img{
  height: 150px;
}
.preview-img img{
  object-fit: cover;
}

.image-selector{
  width: 100px;
  height: 100px;
  border: 1px dotted black;
  justify-content: center;
  align-items: center;
}

.color-select {
  position: absolute;
  top: 25%;
  width: 30px;
  height: 30px;
  right: 10px;
}

.color-select::-webkit-color-swatch {
  border-radius: 8px;
  border: none;
}
.color-select::-moz-color-swatch {
  border-radius: 8px;
  border: none;
}

/* .rdt_TableCell, .rdt_TableCol_Sortable{
  justify-content: center !important;
} */

.color-bg{
  width: 30px;
  height: 20px;
  display: block;
  border-radius: 20px;
}

.color-bg-detail{
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 50%;
}

.fileSelector{
  opacity: 0;
  height: 1;
  width: 100px;
}

.orderHistory #cell-4-ae5a4684-a535-45b0-ba67-c01323821088 div:first-child{
  width: 100% !important;
}

.ecom-select{
  height: 45px;
  background-color: var(--bs-input-group);
  padding: 0px 8px;
  background-image: url("../images/caret.svg");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
} 

.ecom-select:focus{
  background-color: var(--bs-input-group);
}

.menu:hover{
  background-color: rgba(203, 12, 139, 0.2);
  border-radius: 8px;
}


.navbar-vertical .navbar-nav>.nav-item .nav-link.active {
  color: #ffffff !important;
  background-color: #cb0c9f !important;
  width: 100%;
  margin: 0;
  /* font-weight: 900 !important; */
}

.card{
  min-height: 80%;
}

#cell-4-ee5605c7-cf62-40c6-8781-93796e67e9ba div{
  width: 100%;
}

.rdt_TableHeader{
  display: none !important;
}

.rdt_TableCol {
  font-weight: 700 !important;
}

.alert-msg{
  z-index: 5000 !important;
}

.sc-fLQRDB {
  table-layout: fixed !important;
}

.product-pop{
  width: 75% !important;
}

.eye-icon {
  position: absolute;
  top: 35%;
  right: 24px;
}

.css-1hju3x6-MuiPaper-root-MuiDialog-paper{
  max-width: 75% !important;
}

.file-pre{
  overflow-x: scroll !important;
}
.wizard-item {
  display: none;
}

.item{
  text-transform: uppercase;
}

.wizard{
  display: flex;
  column-gap: 16px;
}

.item .active {
 color: #cb0c9f !important;
}

.nav-color .nav-link{
  text-transform: uppercase !important;
  color: black !important;
}

.textInfo{
  height: 65vh;
}

.popup-alert {
  position: absolute;
  z-index: 1560;
}

.confirm-bg {
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #202020;
  opacity: 0.55;
  overflow: hidden;
  z-index: 3;
}

.display {
  position: fixed;
  z-index: 1656;
  opacity: 0.7;
  width: 100%;
  display: none;
  background-color: #000000;
  height: 100%;
}

.custom-shape-divider-top-1692010913 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 0;
}

.custom-shape-divider-top-1692010913 svg {
  position: relative;
  display: block;
  width:100%;
  height: 35px;
}

.custom-shape-divider-top-1692010913 .shape-fill {
  fill: white;
}

.btn:hover:not(.btn-icon-only) {
  transform: none !important;
}

textarea:disabled {
  opacity: 0.4;
}

.productInfo tbody tr td{
  cursor: context-menu !important;
}

.opacity-50{
  opacity: 0.5;
  cursor: context-menu;
}

.edc-input-group:focus-within{
  box-shadow: 0 0 5px rgba(241, 3, 126, 0.923);
}