
/* sidebar */
  /* Custom zoom-in animation */
  .zoom-in {
    animation: zoomIn 2s infinite;
  }
  /* Keyframes for zoom-in animation */
  @keyframes zoomIn {
    from {
      transform: scale(0.6);
    }
    to {
      transform: scale(1.3);
    }
  }
  .zoom-in:hover {
    animation: none;
  }
  .animated-button1:hover span {
    position: unset;
  }
  .animated-button2:hover span {
    position: unset;
  }
 .b2c_height{
    min-height: 100vh;
 }

 /* Menu drawer classes */

 .drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.show {
  opacity: 1;
}

.side-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px !important;
  height: 100%;
  background-color: #fff;
  z-index: 1050;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.side-drawer.show {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f8f9fa;
}

.drawer-header button {
  font-size: 1.5rem;
  color: #6c757d;
  background: none;
  border: none;
  cursor: pointer;
}

.drawer-header button:hover {
  color: #343a40;
}

.drawer-body {
  padding-top: 0;
}

.side-drawer .nav-link {
  text-decoration: none;
  transition: background-color 0.2s ease;
  font-size: 16px;
}

.side-drawer .nav-link:hover {
  background-color: #f8f9fa;
  color: #495057 !important;
}

.side-drawer .nav-link:last-child {
  border-bottom: none;
}

body.drawer-open {
  overflow: hidden;
}

.animated-button2 {
  background: #FFB61DFF;
  padding: 20px 40px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    overflow: hidden;
    color: #000;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
  }
  
  .animated-button2::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #FFB61DFF;
    opacity: 0;
    -webkit-transition: .2s opacity ease-in-out;
    transition: .2s opacity ease-in-out;
  }
  
  .animated-button2 span {
    position: absolute;
  }
  
  .animated-button2 span:nth-child(1) {
    top: 0px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: -webkit-gradient(linear, right top, left top, from(rgba(43, 8, 8, 0)), to(#000));
    background: linear-gradient(to left, rgba(43, 8, 8, 0), #000);
    -webkit-animation: 2s animateTop linear infinite;
            animation: 2s animateTop linear infinite;
  }

  
  .animated-button2 span:nth-child(2) {
    top: 0px;
    right: 0px;
    height: 100%;
    width: 2px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(43, 8, 8, 0)), to(#000));
    background: linear-gradient(to top, rgba(43, 8, 8, 0), #000);
    -webkit-animation: 2s animateRight linear -1s infinite;
            animation: 2s animateRight linear -1s infinite;
  }

  
  .animated-button2 span:nth-child(3) {
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: -webkit-gradient(linear, left top, right top, from(rgba(43, 8, 8, 0)), to(#000));
    background: linear-gradient(to right, rgba(43, 8, 8, 0), #000);
    -webkit-animation: 2s animateBottom linear infinite;
            animation: 2s animateBottom linear infinite;
  }
  
  .animated-button2 span:nth-child(4) {
    top: 0px;
    left: 0px;
    height: 100%;
    width: 2px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 8, 8, 0)), to(#000));
    background: linear-gradient(to bottom, rgba(43, 8, 8, 0), #000);
    -webkit-animation: 2s animateLeft linear -1s infinite;
            animation: 2s animateLeft linear -1s infinite;
  }

.animated-button1 {
    background: #2E58D4;
    padding: 20px 40px;
    display: inline-block;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    overflow: hidden;
    color: #fff;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
  }
  
  .animated-button1::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #2E58D4;
    opacity: 0;
    -webkit-transition: .2s opacity ease-in-out;
    transition: .2s opacity ease-in-out;
  }
  
  .animated-button1 span {
    position: absolute;
  }
  
  .animated-button1 span:nth-child(1) {
    top: 0px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: -webkit-gradient(linear, right top, left top, from(rgba(43, 8, 8, 0)), to(#fff));
    background: linear-gradient(to left, rgba(43, 8, 8, 0), #fff);
    -webkit-animation: 2s animateTop linear infinite;
            animation: 2s animateTop linear infinite;
  }
  
  @keyframes animateTop {
    0% {
      -webkit-transform: translateX(100%);
              transform: translateX(100%);
    }
    100% {
      -webkit-transform: translateX(-100%);
              transform: translateX(-100%);
    }
  }
  
  .animated-button1 span:nth-child(2) {
    top: 0px;
    right: 0px;
    height: 100%;
    width: 2px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(43, 8, 8, 0)), to(#fff));
    background: linear-gradient(to top, rgba(43, 8, 8, 0), #fff);
    -webkit-animation: 2s animateRight linear -1s infinite;
            animation: 2s animateRight linear -1s infinite;
  }
  
  @keyframes animateRight {
    0% {
      -webkit-transform: translateY(100%);
              transform: translateY(100%);
    }
    100% {
      -webkit-transform: translateY(-100%);
              transform: translateY(-100%);
    }
  }
  
  .animated-button1 span:nth-child(3) {
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: -webkit-gradient(linear, left top, right top, from(rgba(43, 8, 8, 0)), to(#fff));
    background: linear-gradient(to right, rgba(43, 8, 8, 0), #fff);
    -webkit-animation: 2s animateBottom linear infinite;
            animation: 2s animateBottom linear infinite;
  }
  
  @keyframes animateBottom {
    0% {
      -webkit-transform: translateX(-100%);
              transform: translateX(-100%);
    }
    100% {
      -webkit-transform: translateX(100%);
              transform: translateX(100%);
    }
  }
  
  .animated-button1 span:nth-child(4) {
    top: 0px;
    left: 0px;
    height: 100%;
    width: 2px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 8, 8, 0)), to(#fff));
    background: linear-gradient(to bottom, rgba(43, 8, 8, 0), #fff);
    -webkit-animation: 2s animateLeft linear -1s infinite;
            animation: 2s animateLeft linear -1s infinite;
  }
  
  @keyframes animateLeft {
    0% {
      -webkit-transform: translateY(-100%);
              transform: translateY(-100%);
    }
    100% {
      -webkit-transform: translateY(100%);
              transform: translateY(100%);
    }
  }

.blinking-cursor {
    display: inline-block;
    vertical-align: middle;
    width: 5px;
    height: 1em;
    margin-left: 2px;
    background-color: #000;
    animation: blink 1s infinite;
  }
  
.blink-icon {
    display: inline-block;
    vertical-align: middle;
    width: 1px;
    height: 1.2em;
    background-color: #000;
    animation: blink 1s infinite;
  }
  @keyframes blink {
    from, to {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
  }
.bg-pro {
    background-color: rgba(46, 88, 212, 0.05) !important;
}
.overlap-temp{
    width: 33px;
    height: 33px;
    align-items: center;
    text-align: center;
    border-radius: 50%;
    border: 2px solid black;
    display: inline-block;
    position: relative;
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2);
    -webkit-transition: .2s ease;
    transition: .2s ease;
}
.temp-link:hover {
    color: #000000 !important;
    background-color: rgba(46, 88, 212, 0.15) !important;
    border-radius: 0.5rem !important;
}
.temp-link.active {
    color: #000000 !important;
    background-color: rgba(46, 88, 212, 0.15) !important;
    font-weight: bold !important;
    border-radius: 0.5rem !important;
}
.css-16xfy0z-control {
    background-color: #e9ecef!important;
    border-color: #e9ecef!important;
}
.css-13cymwt-control{
    border: 0 !important;
    border-color: white !important;
    background-color: initial !important;
    min-height: 36px !important
}
.css-t3ipsp-control{
    border: 0 !important;
    border-color: white !important;
    box-shadow: none !important;
    background-color: initial !important;
}
.css-t3ipsp-control:hover{
    border: 0 !important;
    border-color: white !important;
    background-color: initial !important;
}
.css-1wy0on6{
    display: none !important;
}
.css-8mmkcg{
    display: none !important;
}
.mail-rounded-5{
    border-radius: 12px !important;
}
.text-shadow {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.grammar_text_size{
    font-size: 13px !important;
}
.dashboard-card{
    border-radius: 1rem;
    position: relative;
    border: 2px #000000 solid;
    background-color: white !important;
}
.fs-11{
    font-size: 11px !important;
}
.md-card{
    border-radius: 1rem;
    position: relative;
    background-color: rgba(248, 250, 252, 1) !important;
}
.hl-radius{
    border-radius: 11px 0 0 0;
}
.hr-radius{
    border-radius: 0 11px 0 0;
}
.row-l-radius{
    border-radius: 0 0 0 11px;
}
.row-r-radius{
    border-radius: 0 0 11px 0;
}
.speak-bordered{
    border-collapse: separate;
}
.speak-bordered>:not(caption)>*>*{
    border-width: 1px 1px !important;
}
.speak-table-header {
    background-color: #1A4478 !important; 
    color: white;
}
.table-header-secondary {
    background-color: #FF9A00 !important;
    border-bottom-color: white !important; 
    color: black;
}
.info-cell {
    background-color: #E6F1FC; 
    padding: 1rem;
    border-radius: 5px;
}
.speak-table-row {
    background-color: #F6F6F6;
    font-weight: bold;
}
.speak_bggrey{
    background-color: #EFEFEF !important;
}
.speak_bgblue{
    background-color: #1A4478 !important;
}
.speak_bgorange{
    background-color: #FF9A00 !important;
}
.border_material{
    border-color: #FBAE3E !important;
}
.border_assessment{
    border-color: #07A889 !important;
}
.border_cambridge{
    border-color: #010101 !important;
}
.border_ielts{
    border-color: #B4242B !important;
}
.border_anglia{
    border-color: #2989BD !important;
}
.border_english{
    border-color: #FCAF3F !important;
}
.dcard-height {
    min-height: 85px;
}
.contentcard-height{
    min-height: 65px;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0 !important;
}
.bg-custom{
    background-color: #F6F6F6 !important;
}
.bg-temp-filter{
    background-color: rgba(46, 88, 212, 0.08) !important;
    font-weight: 600 !important;
}
.temph-6{
    height: 4rem;
}
.tmx-4{
    margin-right: 2.5rem!important;
    margin-left: 2.5rem!important;
}
.tpx-4{
    padding-right: 1.5rem!important;
    padding-left: 0.5rem!important;
}
.temp-footer {
    position: fixed;
    bottom: 0;
    width: 51%  !important;
}
.dashboard-compact .temp-footer {
    position: fixed;
    bottom: 0;
    width: 62%  !important;
}
.scroll_content{
    overflow-y: scroll;
    position: fixed;
    height: 93%;
    width: 100%;
}
.temp-list{
    overflow-y: scroll;
    height: 84vh;
}
.preview-temp{
    overflow-y: scroll;
    height: 77vh;
}
.material-list{
    overflow-y: scroll;
    height: 93vh;
}
.preview-material{
    overflow-y: scroll;
    height: 82vh;
}
.form_height{
    height: 95vh;     
}
.btn_form_height{
    height: 8vh;     
}
.drop_up {
    bottom: 100%;
    top: auto !important;
    right: auto ;
    left: -7em ;
}

.z-index-1{
    z-index: 1000;
}
.btn-darkblue,  .badge-darkblue, .bg-darkblue{
    background-color: #2E58D4 !important;
    color: #fff !important;
    border-color: #2E58D4;
}
.text-darkblue{
    color: #2E58D4 !important;
    text-decoration: none;
}
.text-darkgry{
    color: #515151  !important;
}
.scratch_quiz {
    border: 2px #2E58D4 solid !important;
    background-color: rgba(238, 242, 252, 1) !important;
}
.min-filter-h{
    min-height: 89.7vh;
  }
.border-darkblue {
    border: 1px #2E58D4 solid !important;
  }
.border-color-darkblue {
    border-color: #2E58D4 !important;
}
.border-color-blue {
    border-color: rgb(1 129 255) !important;
}
.right-side-rounded{
    border-radius: 0.5rem 0 0 0.5rem !important;
}
.dashboard {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-height: 100vh;
}
.form-select-bold {
    background-image: url(../img/down-arrow-blue.png) !important;
    background-size: 25px !important;
    background-position: right 1rem center;
    background-color: #fff !important;
    color: #495057;
    border-color: #ced4da !important;
}
.custom-select-bold {
    background-image: url(../img/down-arrow-blue.png) !important;
    background-size: 18px !important;
    background-position: right 1rem center;
    background-color: #fff !important;
    color: #495057;
    border-color: #ced4da !important;
}
.custom-task .form-select-bold {
    background-size: 18px !important;
    border-radius: 0.25rem !important;
}
.pf-1{
    padding: 0.05rem 0.25rem 0.05rem 0.25rem !important;
}
#options {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    display: none;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow-y: auto;
    max-height: 150px;
  }
  
  #input-field:focus + #options {
    display: block;
  }
  
  #options option {
    padding: 8px;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
  }
  
  #options option:last-of-type {
    border-bottom: none;
  }
.text-lgrey{
    color: rgba(104, 117, 138, 1) !important;
}
.border-l-bottom{
    border-bottom: 2px solid rgba(228, 229, 229, 1) !important; 
}
.border-l-top{
    border-top: 2px solid rgba(228, 229, 229, 1) !important; 
}
.border-l-left{
    border-left: 2px solid rgba(228, 229, 229, 1) !important; 
}
.border-left-1{
    border-left: 1px solid rgba(228, 229, 229, 1) !important; 
}
.border-right-1{
    border-right: 1px solid rgba(228, 229, 229, 1) !important; 
}
.border-l-right{
    border-right: 2px solid rgba(228, 229, 229, 1) !important; 
}
.fw-500 {
    font-weight: 500 !important;
}
.text-darkgray {
    color: rgba(74, 85, 103, 1)
}
.dashboard-app {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 2;
    -webkit-flex-grow: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
}

.dashboard-content {
    width: 100%;
    -webkit-box-flex: 2;
    -webkit-flex-grow: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
    left: 0px;
    -ms-flex-align: center;
    padding-left: 0px;
    position: fixed;
}
.pl-70 {
    padding-left: 230px;
}
.dashboard-compact .dashboard-content {
    width: 100%;
    -webkit-box-flex: 2;
    -webkit-flex-grow: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
    left: 0px;
    -ms-flex-align: center;
    padding: 0px;
    position: fixed;
}
.dashboard-compact .scroll_content{
    width: 100%;
}
.dashboard-compact .pl-70 {
    padding-left: 69px;
}
.dashboard-compact .menu-toggle {
    transform: rotate(180deg);
    width: unset;
}

.dashboard-nav {
    width: 230px;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    border-right: 2px solid rgba(228, 229, 229, 1);
}
.bg-lblue{
    background-color: #FAFAFA !important;
}
.btn-lgray{
    background-color: #F6F8FD !important;
    border-color:  rgba(228, 229, 229, 1) !important;
    color:  #4A5567 !important;
}
.modal-open .dashboard-nav,.modal-show .dashboard-nav  {
    background-color: whitesmoke !important;
    pointer-events: none;
}
.modal-open .dashboard-toolbar,.modal-show .dashboard-toolbar  {
    pointer-events: none;
    opacity: 0.8;
}
.modal-open .btn-lgray,.modal-show .btn-lgray  {
    background-color: inherit !important;
    pointer-events: none;
    opacity: 0.8;
}
.dashboard-compact .dashboard-nav {
    display: none;
}

.dashboard-nav.show-icon-nav{
    width: 70px;
    display: none;
}
.dashboard-compact .dashboard-nav.show-icon-nav{
    display: block;
    overflow: visible;
}

.dashboard-nav header {
    min-height: 70px;
    padding: 8px 27px 18px 27px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.show-icon-nav header {
    padding: 0px;
    justify-content: center;
}
.dashboard-nav header .menu-toggle {
    display: none;
    margin-right: auto;
}

.dashboard-nav a {
    color: #515151;
}

.dashboard-nav a:hover {
    text-decoration: none;
}

.dashboard-nav a {
    color: rgba(74, 85, 103, 1)
    ;
}

.brand-logo {
    font-weight: bold;
    font-size: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    color: rgba(74, 85, 103, 1);
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.brand-logo:focus, .brand-logo:active, .brand-logo:hover {
    color: #dbdbdb;
    text-decoration: none;
}

.brand-logo i {
    color: rgba(74, 85, 103, 1);
    font-size: 27px;
    margin-right: 10px;
}

.dashboard-nav-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.dashboard-nav-item {
    padding: 8px 30px 8px 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    letter-spacing: 0.02em;
    transition: ease-out 0.5s;
    font-weight: 600;
}
.show-icon-nav .dashboard-nav-item {
    padding: 12px 14px 12px 12px;
}
.show-icon-nav .drop_up{
    left: -7px;
}

.nav_button {
    border-radius: 0.5rem !important;
    font-size: 18px  !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    margin-bottom: 0.15rem !important;
}
.nav_button:hover {
    border-radius: 0.5rem !important;
    font-size: 18px  !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    background-color: #F6F8FD !important;
    border-color: #F6F8FD !important;
    font-weight: 700;
    color: rgba(74, 85, 103, 1);
}
.header-menu {
    background-color: #F6F8FD !important;
    border-color: #F6F8FD !important;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 0.3rem;
}
.fw-700{
    font-weight: 700;
}
.b2c-menu {
    background-color: rgba(249, 250, 251, 1) !important;
    border-color: rgba(249, 250, 251, 1) !important;
    color: #000 !important;
    font-weight: 700 !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}
.dashboard-nav-item.active {
    background-color: #F6F8FD !important;
    border-color: #F6F8FD !important;
    font-weight: 700;
}

.dashboard-nav-dropdown {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.dashboard-nav-dropdown.show {
    background: rgba(255, 255, 255, 0.04);
}

.dashboard-nav-dropdown.show > .dashboard-nav-dropdown-toggle {
    font-weight: bold;
}

.dashboard-nav-dropdown.show > .dashboard-nav-dropdown-toggle:after {
    -webkit-transform: none;
    -o-transform: none;
    transform: none;
}

.dashboard-nav-dropdown.show > .dashboard-nav-dropdown-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.dashboard-nav-dropdown-toggle:after {
    content: "";
    margin-left: auto;
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(81, 81, 81, 0.8);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.dashboard-nav .dashboard-nav-dropdown-toggle:after {
    border-top-color: rgba(255, 255, 255, 0.72);
}

.dashboard-nav-dropdown-menu {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.dashboard-nav-dropdown-item {
    min-height: 40px;
    padding: 8px 20px 8px 70px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    transition: ease-out 0.5s;
}

.dashboard-nav-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.menu-toggle {
    position: relative;
    width: 42px;
    height: 42px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #443ea2;
}

.menu-toggle:hover, .menu-toggle:active, .menu-toggle:focus {
    text-decoration: none;
}

.menu-toggle i {
    font-size: 28px;
}
.audio_loader::-webkit-media-controls-start-playback-button {
    display: none;
}
/* Add your custom play button icon */
.audio_loader::-webkit-media-controls-play-button {
background-image: url(../img/loading.gif);
cursor: pointer;
}
.dropload::before {
    content: "";
    background-image: url(../img/loading.gif);
    background-repeat: no-repeat;
    background-position: center;
  }
  /* (B) DIMENSIONS */
  .dropload { max-width: 320px; } /* optional */
  .dropload select, .dropload::before {
    width: 100%;
    height: 30px;
  }
  /* (C) POSITION LOADING SPINNER OVER DROPDOWN */
  .dropload { position: relative; }
  .dropload select { z-index: 1; }
  .dropload::before {
    position: absolute;
    top: 0; left: 0;
    z-index: 2;
  }
  /* (D) "DISABLED BY DEFAULT" */
  .dropload select {
    pointer-events: none;
    opacity: 0.5;
  }
  .disabled_btn::before {
    content: "";
    background-image: url(../img/loading.gif);
    background-repeat: no-repeat;
    background-position: center;
  }
  /* (B) DIMENSIONS */
  .disabled_btn { max-width: 320px; } /* optional */
  .disabled_btn { position: relative; }
  .disabled_btn::before {
    position: absolute;
    top: 3px;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 30px;
  }
  /* (D) "DISABLED BY DEFAULT" */
  .disabled_btn {
    pointer-events: none;
    opacity: 0.5;
  }
  .disabled_anchor{
    pointer-events: none;
    opacity: 0.5;
  }
.dashboard-toolbar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 45px;
    right: 0px;
    left: 0;
    z-index: 1010;
}
.resend-text {
    line-height: 2em;
    position: relative;
    outline: 0;
    border: 0;
    color: black;
    text-align: center;
    height: 2em !important;
    opacity: 1;
    margin: 1.5rem auto;
    background: transparent;
    font-style: italic;
}

.resend-text:before {
    content: '';
    background: #E4E5E5;
    position: absolute;
    left: 2%;
    top: 50%;
    width: 35%;
    height: 1px;
}

.resend-text:after {
    line-height: 1.5em;
    content: 'Resend';
    content: '';
    background: #E4E5E5;
    position: absolute;
    right: 2%;
    top: 50%;
    width: 35%;
    height: 1px;
}
.nav-item-divider {
    height: 1px;
    text-align: center;
    margin: 0.6rem;
    overflow: hidden;
    background-color: rgba(228, 229, 229, 1);
}

.show-icon-nav .nav-item-divider {
    margin: 1rem 0.5rem 1rem 11px;
}

@media (max-width: 768px) {
    .dashboard-content {
        padding: 15px 0px;
    }
}

@media (max-width: 992px) {
    .speak-ms-2{
        margin-left: 0rem !important;
    }
    .speak-mt4{
        margin-top: 1.5rem !important;
    }
    .speak-pt4{
        padding-top: 1.5rem !important;
    }
    .exercise_img {
        height: 600px;
    }
    .dashboard-nav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 1070;
    }

    .dashboard-nav.mobile-show {
        display: block;
    }
    .dashboard-toolbar {
        top: 19px;
        position: fixed;
    }
    .dashboard-toolbar.mobile-show {
        top: 24px;
        left: 207px;
        z-index: 1080;
    }
    .mobile-show .menu-toggle {
        transform: none;
        width: 42px;
    }
    .mobile-show .menu-toggle .fas.fa-bars:before {
        content: "\f00d";
    }
    .pl-70 {
        padding-left: 0px !important;
    }
}

@media (max-width: 992px) {
    .custom-col:nth-child(odd) {
        border-right: 0px ;
        padding-right: 0 ;
    }
    .custom-col:nth-child(even) {
        padding-left: 0 ;
    }
    .dashboard-nav header .menu-toggle {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (min-width: 992px) {
    .dashboard-toolbar {
        left: 205px;
    }

    .dashboard-compact .dashboard-toolbar {
        left: 59px;
    }
}
@media (max-width: 1300px) {
    .dashboard-content {
        -webkit-box-flex: 2;
        -webkit-flex-grow: 2;
        -ms-flex-positive: 2;
        flex-grow: 2;
        left: 0px;
        -ms-flex-align: center;
        padding: 0px;
        position: fixed;
        width: 100%;
    }
    .scroll_content{
        width: 100%;
    }
    .temp-footer {
        width: 62% !important;
    }
    .pl-70 {
        padding-left: 69px;
    }
}
.fixed-footer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
}
.pagination-bottom{
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (min-height: 700px) {
    .pagination-bottom{
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        position: absolute;
        bottom: 0;
        right: 0;
    }
    .qh-60 {
        height: 65% !important;
    }
}
@media (min-height: 1070px) {
    .Speak-Quizbody{
        height: 90dvh !important;
    }
    .preview-temp {
        height: 84vh;
    }
    .temp-list{
        height: 90vh ;
    }
    .material-list{
        height: 96vh;
    }
    .preview-material{
        height: 90vh;
    }
    .full_height{
        height: 95vh;     
     }
     .form_height{
        height: 95vh;     
     }
    .btn_form_height{
        height: 8vh;     
    }
    .g_footer{
        bottom: 0;
    }
}
@media (min-height: 700px) and (max-height: 830px) {
    .photo-description{
        height: 60dvh !important;
    }
    .Speak-Quizbody{
        height: 86dvh !important;
    }
    .sm-Speak-Quizbody{
        height: 76dvh !important;
    }
    .pagination-bottom{
        padding-left: 1rem;
        padding-right: 1rem;
        position: relative;
    }
    .preview-temp {
        height: 71vh;
    }
    .temp-list{
        height: 80vh ;
    }
    .material-list{
        height: 92vh;
    }
    .preview-material{
        height: 80vh;
    }
    .form_height{
         height: 93vh;     
     }
    .btn_form_height{
        height: 9.5vh;     
    }
    .scroll_content{
    height: 92%;
    }
}
@media (min-height: 600px) and (max-height: 639px) {
    .sm-Speak-Quizbody{
        height: 70.5dvh !important;
    }
    .Speak-Quizbody{
        height: 82dvh !important;
    }
}
@media (min-height: 640px) and (max-height: 699px) {
    .photo-description{
        height: 56dvh !important;
    }
    .Speak-Quizbody{
        height: 84dvh !important;
    }
    .sm-Speak-Quizbody{
        height: 73dvh !important;
    }
    .preview-temp {
        height: 66vh;
    }
    .temp-list{
        height: 76vh ;
    }
    .material-list{
        height: 90vh;
    }
    .preview-material{
        height: 75vh;
    }
    .form_height{
        height: 91vh;     
    }
    .btn_form_height{
        height: 12vh;     
    }
    .scroll_content{
        height: 91%;
    }
    .dashboard-nav {
        overflow-y: auto;
        overflow-x: hidden;
    }
}
@media (min-height: 500px) and (max-height: 599px) {
    .photo-description{
        height: 52dvh !important;
    }
    .Speak-Quizbody{
        height: 80dvh !important;
    }
    .sm-Speak-Quizbody{
        height: 67dvh !important;
    }
    .preview-temp {
        height: 60vh;
    }
    .temp-list{
        height: 72vh ;
    }
    .material-list{
        height: 88vh;
    }
    .preview-material{
        height: 71vh;
    }
    .form_height{
        height: 90vh;     
    }
    .btn_form_height{
        height: 14vh;     
    }
    .scroll_content{
        height: 89%;
    }
    .dashboard-nav {
        overflow-y: auto;
        overflow-x: hidden;
    }
    .fixed-footer {
        position: unset;
    }
    .dashboard-compact .fixed-footer {
        position: absolute !important;
    }
}
@media (max-height: 499px) {
    .photo-description{
        height: 45dvh !important;
    }
    .Speak-Quizbody{
        height: 76dvh !important;
    }
    .sm-Speak-Quizbody{
        height: 64dvh !important;
    }
    .preview-temp {
        height: 51vh;
    }
    .temp-list{
        height: 66vh ;
    }
    .material-list{
        height: 82vh;
    }
    .preview-material{
        height: 65vh;
    }
    .form_height{
        height: 79vh;     
    }
    .btn_form_height{
        height: 18vh;     
    }
    .scroll_content{
        height: 86%;
    }
    .dashboard-nav {
        overflow-y: auto;
        overflow-x: hidden;
    }
    .fixed-footer {
        position: unset;
    }
}
@media (min-width: 992px) {
    .tf-ps3{
        padding-left: 1rem!important;
    }
    .test-col-lg-3 {
        flex: 0 0 auto;
        width: 22%;
    }
    .test-col-lg-1 {
        flex: 0 0 auto;
        width: 12%;
    }
    .tf-pe3{
        padding-right: 1rem!important;
    }
    .dashboard-compact .tf-ps3{
        padding-left: 0.5rem!important;
    }
    .dashboard-compact .tf-pe3{
        padding-right: 0.5rem!important;
    }
    .dashboard-compact .t-col-lg-2 {
        width: 13.666667% !important;
    }
    .f-col-lg-4 {
        width: 29.333333% !important;
    }
    .f-col-lg-8 {
        width: 70.666667% !important;
    }
    .t-col-lg-2 {
        width: 14.666667% !important;
    }
    .cc-col-lg-2 {
        width: 12.666667% !important;
    }
    .dashboard-compact .t-col-lg-10 {
        width: 86.333333% !important;
    }
    .t-col-lg-10 {
        width: 85.333333% !important;
    }
    .cc-col-lg-10 {
        width: 87.333333% !important;
    }
    .dashboard-compact .tl-col-lg-3 {
        width: 30% !important;
    }
    .tl-col-lg-3 {
        width: 31% !important;
    }
    .dashboard-compact .tp-col-lg-9 {
        width: 70% !important;
    }
    .tp-col-lg-9 {
        width: 69% !important;
    }
    .contentcard-height{
        height: 65px;
    }
    .cpx-5{
        padding-left: 2rem;
        padding-right: 2rem;
    }
}
@media (min-width: 1000px) and (max-width: 1300px) {
    .dashboard-compact .g-col-lg-5 {
        width: 36.666667% !important;
    }
    .dashboard-compact .g-col-lg-7 {
        width: 63.333333% !important;
    }
    .custom-task .sm-flex{
        display: block !important;
    }
    .custom-task .col-lg-6{
        width: 100% !important;
    }
      
}
@media (min-width: 1200px) and (max-width: 1390px) {
    .dashboard-compact .t-col-lg-2 {
        width: 15.666667% !important;
    }
    .dashboard-compact .t-col-lg-10 {
        width: 84.333333% !important;
    }
    .dashboard-compact .tl-col-lg-3 {
        width: 32% !important;
    }
    .dashboard-compact .tp-col-lg-9 {
        width: 68% !important;
    }
    .tf-ps3{
        padding-left: 0.5rem!important;
    }
    .tf-pe3{
        padding-right: 0.5rem!important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .dashboard-compact .t-col-lg-2 {
        width: 16.666667% !important;
    }
    .dashboard-compact .t-col-lg-10 {
        width: 83.333333% !important;
    }
    .dashboard-compact .tl-col-lg-3 {
        width: 33% !important;
    }
    .dashboard-compact .tp-col-lg-9 {
        width: 67% !important;
    }
    .tf-ps3{
        padding-left: 0.5rem!important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        font-size: 14px !important;
    }
    .tf-pe3{
        padding-right: 0.5rem!important;
    }
}
@media (max-width: 1630px) {
    .sm__dropdown____width{
        width: 142px;
    }
    .dropdown____width{
        width: 200px;
    }
}