@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.sign_in_bg {
  height: 100vh;
  background: url(../images/signin-bg.png) no-repeat center center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign_in_box {
  background: white;
  border-radius: 20px;
  max-width: 1000px;
  width: 100%;
  padding: 70px 15px;
  margin: 0px 15px;
}

.sign_in_box .card {
  text-align: center;
  max-width: 450px;
  margin: 0 auto;
  border: 0px;
}

.sign_in_box .card img {
  margin-bottom: 40px;
}

.sign_in_box .card h3 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 30px;
}

.sign_in_box .card .card-title {
  margin-bottom: 0px;
}

.sign_in_box .card .card-body {
  padding: 0px;
}

.btn-theme-1 {
  font-size: 20px;
  color: white;
  background-color: #18988B;
  border-color: #18988B;
  border-radius: 5px;
  padding: 9px;
  font-weight: normal;
  padding: 7px 14px;
}

.btn-theme-1:hover {
  color: white;
}

.mb-20px {
  margin-bottom: 20px;
}

.mx-30px {
  margin: 0px 30px;
}

.logout {
  color: #4E4E4E;
  font-size: 20px;
  text-decoration: none;
}

.logout:hover {
  color: #4E4E4E;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #e6e6e6;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: 'Roboto', sans-serif;
}


.sidebar {
  width: 280px;
  background: white;
  -moz-transition: width 0.5s ease-out;
  -o-transition: width 0.5s ease-out;
  -webkit-transition: width 0.5s ease-out;
  transition: width 0.5s ease-out;
  display: inline-block;
  z-index: 0;
  border-radius: 10px;
}

.nav-sidebar {
  background: none;
  margin-top: 5px;
}

.sidebar ul li a span.fa {
  font-size: 20px;
}

.menuText {
  opacity: 1;
  font-size: 20px;
  font-weight: 500;
  -moz-transition: opacity 0.6s 0.2s ease-out;
  -o-transition: opacity 0.6s 0.2s ease-out;
  -webkit-transition: opacity 0.6s 0.2s ease-out;
  transition: opacity 0.6s 0.2s ease-out;
  margin-left: 5px;
}

.collapseToggle {
  display: none !important;
  padding-left: 4px;
  display: block;
  cursor: pointer;
  padding-right: 5px;
}

#toggleIcon {
  -moz-transition: transform 0.4s ease-out;
  -o-transition: transform 0.4s ease-out;
  -webkit-transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
}

.rotate {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -moz-transition: transform 0.4s ease-out;
  -o-transition: transform 0.4s ease-out;
  -webkit-transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
}

.sidebar--Collapse {
  width: 95px;
  -moz-transition: width 0.6s ease-out;
  -o-transition: width 0.6s ease-out;
  -webkit-transition: width 0.6s ease-out;
  transition: width 0.6s ease-out;
}
.sidebar--Collapse .menuText {
  opacity: 0;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  position: absolute;
}

.main {
  margin-left: 315px;
  width: calc(100% - 335px);
  -moz-transition: margin-left 0.55s ease-out;
  -o-transition: margin-left 0.55s ease-out;
  -webkit-transition: margin-left 0.55s ease-out;
  transition: margin-left 0.55s ease-out;
  padding: 0px;
  margin-right: 20px;
}

.main--slide {
  width: calc(100% - 155px);
  -moz-transition: margin-left 0.6s ease-out;
  -o-transition: margin-left 0.6s ease-out;
  -webkit-transition: margin-left 0.6s ease-out;
  transition: margin-left 0.6s ease-out;
  margin-left: 135px;
}

.dash-main {
  background: white;
  border-radius: 10px;
  padding: 15px 30px;
   margin-top: 20px; 
}

.dash-top {
  background: white;
    padding: 0px 0px 20px;
    border-bottom: 1px solid #CFCFCF;
}

.dash-top h2 {
  margin-bottom: 0px;
  font-weight: bold;
}

.sidebar {
  position: fixed;
  top: 0px;
  bottom: 0;
  left: 0;
  margin: 20px;
  z-index: 1000;
  display: block;
  padding: 5px 20px;
  overflow-x: hidden;
  overflow-y: auto;
}

.main .page-header {
  margin-top: 0;
}



/* Style the sidenav links and the dropdown button */
.sidenav a,
.dropdown-btn {
  padding: 11px 10px 5px 25px;
  text-decoration: none;
  font-size: 20px;
  color: #323232;
  display: block;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
  margin-bottom: 10px;
}

.sidenav a:hover,
.dropdown-btn:hover {
cursor: pointer;
}

.dropdown-container {
  display: none;
  /* background: #f6f9ff; */
  background: rgba(24,152,139,0.3);
  margin-right: 0px;
  margin-bottom: 35px;
  border-radius: 10px;
  overflow: hidden;
  padding-top: 10px;
  padding-bottom: 10px;
}

.dropdown-container a {
  padding: 10px 20px;
  font-size: 16px;
  color: #363636;
  margin-bottom: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  font-weight: 500;
}

/* Optional: Style the caret down icon */
.fa-caret-down {
  float: right;
  padding-right: 8px;
}

.sidenav > .collage-btn {
  background: url(../images/menu1.svg) no-repeat 0px 8px;
  color: #18988B;
}

.sidenav > .collage-btn:hover {
  background: url(../images/menu1-white.svg) no-repeat 0px 8px;
  color: #18988B;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding-right: 20px;
  border-bottom: 1px solid #CFCFCF;
  padding-bottom: 25px;
}

.sidebar-header img {
  max-width: 150px;
  margin-top: 20px !important;
}

.sidebar.sidebar--Collapse .logo {
  display: none;
}

/* .sidebar--Collapse {
   padding-right: 20px; 
} */

.sidebar--Collapse .sidenav {
  margin-right: 0px;
}

.sidebar--Collapse .sidenav > a,
.sidebar--Collapse .sidenav > button {
  background-position: 16px 13px;
}

.sidebar--Collapse .sidenav > a:hover,
.sidebar--Collapse .sidenav > button:hover {
  background-position: 16px 13px;
}

.sidebar--Collapse a,
.sidebar--Collapse button {
  padding: 10px;
  border-radius: 5px;
  height: 50px;
}

.sidebar--Collapse a i,
.sidebar--Collapse button i {
  display: none;
}

.sidebar--Collapse .sidebar-header {
  padding-right: 0;
}

.dash-bottom {
  border-radius: 10px;
  background: white;
  padding: 30px 20px;
  margin-bottom: 20px;
}

.video-card-top {
  position: relative;
}

.video-card-top > img {
  width: 100%;
  height: 192px;
  object-fit: cover;
  border-radius: 5px;
  overflow: hidden;
}

.video-card-top > video {
  width: 100%;
  height: 192px;
  object-fit: cover;
  border-radius: 5px;
  overflow: hidden;
}

.dash-bottom-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  
}

.dash-bottom-top h4 {
   font-size: 1.3rem;
   font-weight: bold;
  
}
.dash-bottom-top > a {
  color: #18988B;
  text-decoration: none;
  font-size: 18px;
}

.video-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1em;
}

.card-play {
  position: absolute;
  top:-5.5em;
  left: 45%;
}

.card-upcoming {
  position: absolute;
  bottom: 11px;
  right: 10px;
  background: #4E4E4E;
  color: white;
  padding: 3px 17px;
  border-radius: 5px;
  text-decoration: none;
}

.video-card {
  margin-top: 5px;
}

.video-card-bottom-left {
  padding-top: 4px;
}

.video-card-bottom-left h3 {
  font-size: 18px;
  color: #363636;
  margin-bottom: 5px;
}

.video-card-bottom-left p {
  font-size: 14px;
  color: #363636;
  margin-bottom: 0px;
}

.video-card-bottom-right .dropdown-menu {
  border-color: white;
  box-shadow: 0px 0px 7px rgba(0,0,0,.15);
}

.play-btn-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 40%;
  width: 100%;
  padding: 0px 15%;
}


.detail-video-card {
  margin-top: 0px;
  position: relative;
}

.detail-video-card-bottom h3 {
  font-size: 18px;
  color: #363636;
  margin-bottom: 5px;
}

.detail-video-card-bottom p {
  font-size: 14px;
  color: #363636;
  margin-bottom: 0px;
}

.detail-video-card-top {
  position: relative;
}

.detail-video-card-top video {
  height: 420px;
  width: 100%;
  border-radius: 5px;
  margin-bottom: 20px;
}

.detail-video-card-top .play-btn-main {
  top: 32%;
  padding: 0px 15%;
}

.detail-video-card-bottom h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.detail-video-card-bottom h4 {
  font-size: 16px;
  color: #363636;
  font-weight: normal;
  margin-bottom: 20px;
}

.detail-video-card-bottom p {
  font-size: 20px;
  color: #363636;
}

.logo-mob {
  max-width: 50px !important;
}

.cus-modal .modal-header {
  border-bottom: 0px;
}

.cus-modal .modal-header h1 {
  font-size: 26px !important;
}

.cus-modal .modal-footer {
  border-top: 0px;
}

.cus-modal .form-control {
  border-color: #B9B9B9;
  height: 50px;
  color: #909090;
}

.cus-modal .form-select {
  border-color: #B9B9B9;
  height: 50px;
  color: #909090;
}

.cus-modal label {
  color: #4E4E4E;
  font-size: 15px;
}

.cus-modal .modal-dialog {
  max-width: 600px;
}

.cus-modal .modal-content {
  border-radius: 10px;
  padding: 10px 15px 15px;
}

.toggle-main .form-check {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding-left: 0px;
}

.toggle-main .form-check-input:checked {
  background-color: #18988B;
  border-color: #18988B;
}

.toggle-main .form-switch .form-check-input {
  height: 24px;
  width: 45px;
}

.toggle-main .form-check-label {
  color: #4E4E4E;
  font-size: 18px;
}




.cus-modal-1 .modal-header {
  border-bottom: 0px;
}

.cus-modal-1 .modal-header h1 {
  font-size: 26px !important;
}

.cus-modal-1 .modal-footer {
  justify-content: center;
  border: 0px;
}

.cus-modal-1 .modal-content {
  border-radius: 10px;
  padding: 10px 15px 15px;
}

.cus-modal-1 .modal-body h4 {
  font-size: 20px;
  font-weight: normal;
}

.btn-theme-2 {
  font-size: 20px;
  color: white;
  background-color: #909090;
  border-color: #909090;
  border-radius: 5px;
  padding: 9px;
  font-weight: normal;
  padding: 7px 14px;
}

.cus-modal-1 .modal-footer .btn {
  min-width: 130px;
}

.right-top {
  display: flex;
  align-items: center;
  justify-content: end;    
}

@media (max-width: 1199px) {
  #menu-left-menu li {
    margin: 20px 20px 20px 0px;
  }
  .collapseToggle {
    display: block !important;
   }
   .sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
    padding-right: 20px;
  }
  .dash-top h2 {
    font-size: 22px;
  }
  .btn-theme-1 {
    font-size: 14px;
  }
  .logout {
    font-size: 16px;
  }
  .dash-bottom-top h3 {
    font-size: 20px;
  }
  .dash-bottom-top > a {
    font-size: 16px;
  }
  .video-card-top > img {
    height: 150px;
  }
  .video-card-top > video {
    height: 150px;
  }
  .card-upcoming {
    padding: 3px 7px;
    font-size: 10px;
  }
  .card-play img {
    max-width: 15px;
  }
  .play-btn-main img {
    max-width: 15px;
  }
  .video-card-bottom-left h3 {
    font-size: 16px;
  }
  .video-card-bottom-left p {
    font-size: 12px;
  }
  .sidebar--Collapse .sidenav > a, .sidebar--Collapse .sidenav > button {
    background-position: 6px 6px;
  }
  .sidebar--Collapse .sidenav > a:hover, .sidebar--Collapse .sidenav > button:hover {
    background-position: 6px 6px;
  }
  .sidebar {
    padding: 15px 10px;
  }
  .sidebar--Collapse a, .sidebar--Collapse button {
    padding: 5px;
    font-size: 12px;
  }
}

@media (max-width: 1023px) {
  .logo-main {
    background: transparent;
    position: absolute;
    top: -30px;
    left: 0px;
    max-width: 140px;
  }
  #menu-left-menu li {
    margin: 20px 20px 20px 0px;
  }
  #menu-left-menu li {
    margin: 10px 20px 10px 0px;
  }
}

@media (max-width: 767px) {
  .dash-bottom-top {
    flex-direction: column;
  }
  .dash-bottom {
    padding: 30px 0px;
  }
  .divider {
    display: none;
  }
  .btn-theme-1 {
    font-size: 12px;
    padding: 7px 6px;
  }
  .logout {
    font-size: 14px;
  }
  .right-top {
    justify-content: space-around;
  }
  .dash-top h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .dash-main {
    padding: 15px 10px;
  }
  .dash-bottom-top h3 {
    font-size: 16px;
  }
  .dash-bottom-top {
    align-items: start;
  }
  .detail-video-card-top video {
    height: 200px;
  }
  .detail-video-card-bottom h3 {
    font-size: 20px;
  }
  .cus-modal-1 .modal-footer .btn {
    font-size: 12px;
  }
}
