﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  outline: none;
  box-sizing: border-box;
}

:root {
  --theme-bg-color: rgba(16 18 27 / 40%);
  --border-color: rgba(113 119 144 / 25%);
  --theme-color: #f9fafb;
  7878--inactive-color: rgb(113 119 144 / 78%);
  --inactive-color: rgb(255 255 255 / 78%);
  --body-font: "Poppins", sans-serif;
  --hover-menu-bg: rgba(12 15 25 / 30%);
  --content-title-color: #999ba5;
  --content-bg: rgb(146 151 179 / 13%);
  --button-inactive: rgb(249 250 251 / 55%);
  --dropdown-bg: #21242d;
  --dropdown-hover: rgb(42 46 60);
  --popup-bg: rgb(22 25 37);
  --search-bg: #14162b;
  --overlay-bg: rgba(36, 39, 59, 0.3);
  --scrollbar-bg: rgb(1 2 3 / 40%);
}

html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
	background-color: #000000;
}

body {
  font-family: var(--body-font);
  background-image: url(channels-img/sergey-kotenev--gWSFS8rrVg-unsplash.jpg);

  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2em;
  width: 100%;
  height: 100vh;
}




@media screen and (max-width: 480px) {
  body {
    padding: 0.8em;
  }
}

.video-bg {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.video-bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

img {
  max-width: 100%;
}

.dark-light {
  position: fixed;
  bottom: 50px;
  right: 30px;
  background-color: var(--dropdown-bg);
  box-shadow: -1px 3px 8px -1px rgba(0, 0, 0, 0.2);
  padding: 8px;
  border-radius: 50%;
  z-index: 3;
  cursor: pointer;
}
.dark-light svg {
  width: 24px;
  flex-shrink: 0;
  fill: #ffce45;
  stroke: #ffce45;
  transition: 0.5s;
}

.app {
  background-color: var(--theme-bg-color);
  max-width: 1250px;
  7878max-height: 860px;min-height: 100vh;
  height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  width: 100%;
  border-radius: 14px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  font-size: 15px;
  font-weight: 500;
}

.header {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 58px;
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  padding: 0 30px;
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  .header {
    padding: 0 16px;
  }
}
.header-menu {
  display: flex;
  align-items: center;
}
.header-menu a {
  padding: 20px 30px;padding: 16px 30px;
  text-decoration: none;
  color: var(--inactive-color);
  border-bottom: 2px solid transparent;  
  transition: 0.3s;
}
@media screen and (max-width: 610px) {
  .header-menu a:not(.main-header-link) {
    display: none;
  }
}


@media screen and (max-width: 610px) {
  	.main-container a:not(.main-header) {
    		display: flex !important;  
  		}
	}

.header-menu a.is-active, .header-menu a:hover {
  	color: var(--theme-color);
  	border-bottom: 2px solid var(--theme-color);  
	}

.notify {
  position: relative;
}
.notify:before {
  content: "";
  position: absolute;
  background-color: #3a6df0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  right: 20px;
  top: 16px;
}
@media screen and (max-width: 1055px) {
  .notify {
    display: none;
  }
}

.menu-circle {
  width: 15px; width: auto;
  height: 15px;
  111background-color: #f96057;
  111border-radius: 50%;
  111box-shadow: 24px 0 0 0 #f8ce52, 48px 0 0 0 #5fcf65;
  margin-right: 195px;
  flex-shrink: 0;
}
@media screen and (max-width: 945px) {
  .menu-circle {
    display: none;
  }
}

.header-profile {
  display: flex;
  align-items: center;
  padding: 0 16px 0 40px;
  margin-left: auto;
  flex-shrink: 0;
}
.header-profile svg {
  width: 22px;
  color: #f9fafb;
  flex-shrink: 0;
}

.notification {
  position: relative;
}
.notification-number {
  position: absolute;
  background-color: #3a6df0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  right: -6px;
  top: -6px;
}
.notification + svg {
  margin-left: 22px;
}
@media screen and (max-width: 945px) {
  .notification + svg {
    display: none;
  }
}

.profile-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid var(--theme-color);
  margin-left: 22px;
}

.profile-img-large {
  width: 80px;
  height:80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid var(--theme-color);
  margin-left: 22px;
	margin-left: auto;
	margin-right: auto;
}

.wide .header-menu,
.wide .header-profile {
  display: none;
}
11.wide 11.search-bar {
  max-width: 600px;
  margin: auto;
  transition: 0.4s;
  box-shadow: 0 0 0 1px var(--border-color);
  padding-left: 0;
}
.wide .menu-circle {
  margin-right: 0;
}

.wrapper {
  display: flex;
  flex-grow: 1;
  overflow: hidden;
}

.left-side {
  flex-basis: 240px;
  border-right: 1px solid var(--border-color);
  padding: 26px;
  overflow: auto;
  flex-shrink: 0;
}

#right-side-anchor-tag:hover {
	color: #ffff8c;
	font-weight: bold;
	}

@media screen and (max-width: 945px) {
  .left-side {
    display: none;
  }
}

.side-wrapper + .side-wrapper {
  margin-top: 20px;
}

.side-title {
  color: var(--inactive-color);
  margin-bottom: 14px; 
	font-weight: bold;
}

.side-menu {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}
.side-menu a {
  text-decoration: none;
  color: var(--theme-color);
  display: flex;
  align-items: center;
  font-weight: 400;
  padding: 10px;
  font-size: 14px;
  border-radius: 6px;
  transition: 0.3s;
}
.side-menu a:hover {
  background-color: var(--hover-menu-bg);
}
.side-menu svg {
  width: 16px;
  margin-right: 8px;
}

.updates {
  position: relative;
  top: 0;
  right: 0;
  margin-left: auto;
  width: 18px;
  height: 18px;
  font-size: 11px;
}

.main-header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  height: 58px;
  flex-shrink: 0;
}
.main-header .header-menu {
  margin-left: 150px;
}
@media screen and (max-width: 1055px) {
  .main-header .header-menu {
    margin: auto;
  }
}
.main-header .header-menu a {
  padding: 20px 24px;
}

.main-container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-link-main {
  text-decoration: none;
  color: var(--theme-color);
  padding: 0 30px;
}
@media screen and (max-width: 1055px) {
  .menu-link-main {
    display: none;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  color: var(--theme-color);
  ?????padding: 20px 40px; padding: 0px; 
  height: 100%;
  overflow: auto;
  background-color: var(--theme-bg-color);  
	box-sizing: border-box !important;
	clear: both !important;       
}
@media screen and (max-width: 510px) {
  .content-wrapper {
    ?????padding: 20px; padding: 0px;
  }
}

/**BANNER FOR INDIVIDUAL CHANNEL **/
.content-wrapper-header {
  	display: flex;
  	align-items: center;
  	width: 100%;
  	justify-content: space-between;

  	border-radius: 14px;
  	999padding: 20px 40px;
	padding: 0;



	}
/**END OF BANNER FOR INDIVIDUAL CHANNEL **/

@media screen and (max-width: 415px) {
  .content-wrapper-header {
    ???????padding: 20px; 
  }
}
.content-wrapper.overlay {
  pointer-events: none;
  transition: 0.3s;
  background-color: var(--overlay-bg);
}

.overlay-app {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: all;
  background-color: rgba(36, 39, 59, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.overlay-app.is-active {
  visibility: visible;
  opacity: 1;
}

.img-content {
  font-weight: 500;
  font-size: 17px;
  display: flex;
  align-items: center;
  margin: 0;
}
.img-content svg {
  width: 28px;
  margin-right: 14px;
}

.content-text {
  font-weight: 400;
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.7em;
  color: #ebecec;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.content-wrapper-context {
  max-width: 350px;
}

.content-button {
  background-color: #3a6df0;
  border: none;
  padding: 8px 26px;
  color: #fff;
  border-radius: 20px;
  margin-top: 16px;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}

.content-wrapper-img { 
  777777width: 186px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: -25px;
  -o-object-position: center;
     object-position: center; 
}

#channel-logo-image-front-view {
  77777width: 186px; 777777height: 186px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: -25px;  margin-top: 5px; 
  -o-object-position: center;
     object-position: center;
	/**POSITION HORIZONTALLY**/
  		position: relative; 
  		right: 50%;
  		-webkit-transform: translateX(-50%);
  		-ms-transform: translateX(-50%);
  		transform: translateX(-50%);
	/**END OF POSITION HORIZONTALLY**/
	}



/* SMALLER TABLET screens */   /* SMALLER TABLET */
@media screen and (max-width: 480px) {
  	#channel-logo-image-front-view {
		width: 86px; 
		height: 86px;    
  		}

  	#channel-logo-image-front-view {
		width: 86px; 
		height: 86px; 
  		}
	}





@media only screen and (min-width : 320px) and (max-width : 480px) {/* Mobile portrait */
	.content-wrapper-img {
		width: 96px; 
		height: 96px;
		}

  	#channel-logo-image-front-view {
		width: 96px; 
		height: 96px; 
  		}
	}





@media only screen and (min-width : 480px) and (max-width : 595px) {/* Mobile landscape */
	.content-wrapper-img {
		width: 106px; 
		height: 106px;
		}

  	#channel-logo-image-front-view {
		width: 106px; 
		height: 106px;  
  		}
	}





@media only screen and (min-width : 595px) and (max-width : 690px) {/* Small tablet portrait */
	.content-wrapper-img {
		width: 116px; 
		height: 116px;
		}

  	#channel-logo-image-front-view {
		width: 116px; 
		height: 116px;   
  		}
	}





@media only screen and (min-width : 690px) and (max-width : 769px) {/* Tablet portrait */
	.content-wrapper-img {
		width: 126px; 
		height: 126px;
		}

  	#channel-logo-image-front-view {
		width: 126px; 
		height: 126px;   
  		}
	}





/* SMALLER TABLET screens */   /* (location for ID picture) --- SMALLER TABLET */
@media only screen and (min-width : 769px) and (max-width : 800px) {/* Small tablet landscape */
	.content-wrapper-img {
		width: 136px; 
		height: 136px;
		}

	#channel-logo-image-front-view {
		width: 136px; 
		height: 136px;   
  		}
	}





/* SMALLER TABLET screens */   /* (location for ID picture --- SMALLER TABLET */
@media only screen and (min-width : 800px) and (max-width : 1024px) {/* Small tablet landscape */
	.content-wrapper-img {
		width: 146px; 
		height: 146px;
		}

  	#channel-logo-image-front-view {
		width: 146px; 
		height: 146px;     
  		}
	}





@media only screen and (min-width : 1024px) and (max-width : 1224px) {/* Tablet landscape */
	.content-wrapper-img {
		width: 156px; 
		height: 156px;
		}

  	#channel-logo-image-front-view {
		width: 156px; 
		height: 156px;   
  		}
	}






/* Desktops and laptops */  /* SMALL DESKTOP */
@media only screen 
and (min-width : 1224px) {
	.content-wrapper-img {
		width: 186px; 
		height: 186px;
		}

  	#channel-logo-image-front-view {
		width: 186px; 
		height: 186px;   
		} 
	}





@media screen and (max-width: 570px) {
  .content-wrapper-img {
    width: 110px; width: 73px;
  }

  7878#channel-logo-image-front-view {
    77width: 110px; 77height: 110px ;77width: 73px; 77height: 73px;
  } 
}

.content-section {
  margin-top: 30px;
  display: flex;
  flex-direction: column;  
}

.content-section-title {
  	color: var(--content-title-color);
  	margin-bottom: 14px; 
	}

.content-section ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: space-around;
  background-color: var(--content-bg);
  padding-left: 0;
  margin: 0;
  border-radius: 14px;
  border: 1px solid var(--theme-bg-color);
  cursor: pointer;
}
.content-section ul li {
  list-style: none;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  font-size: 16px;
  width: 100%;
  height: 100%;
  white-space: nowrap;
  transition: 0.3s;
}
.content-section ul li:hover {
  background-color: var(--theme-bg-color);
}
.content-section ul li:hover:first-child {
  border-radius: 13px 13px 0 0;
}
.content-section ul li:hover:last-child {
  border-radius: 0 0 13px 13px;
}
.content-section ul li + li {
  border-top: 1px solid var(--border-color);
}
.content-section ul svg {
  width: 28px;
  border-radius: 6px;
  margin-right: 16px;
  flex-shrink: 0;
}

.products {
  	display: flex;
  	align-items: center;
  	width: 150px; width: 200px;
	}

@media screen and (max-width: 480px) {
  .products {
    width: 120px; width: 180px;
  }
}

.status {
  margin-left: auto;
  width: 140px;
  font-size: 15px;
  position: relative;
}
@media screen and (max-width: 700px) {
  .status {
    display: none;
  }
}
.status-circle {
  width: 6px;
  height: 6px;
  background-color: #396df0;
  position: absolute;
  border-radius: 50%;
  top: 4px;
  left: -20px;
}
.status-circle.green {
  background-color: #3bf083;
}

.status-circle.red {
  	background-color: #ff0000;
	}

.status-circle.LightPurple {
  	background-color: #baa4e8;
	}

.status-button {
  font-size: 15px;
  margin-top: 0;
  padding: 6px 24px;
}
@media screen and (max-width: 390px) {
  .status-button {
    padding: 6px 14px;
  }
}
.status-button.open {
  background: none;
  color: var(--button-inactive);
  border: 1px solid var(--button-inactive);
}
.status-button:not(.open):hover {
  color: #fff;
  border-color: #fff;
}

.content-button:not(.open):hover {
  background: #1e59f1;
}

.menu {   border: 2px solid orange;
  width: 5px;  
  height: 5px;   
  11background-color: var(--button-inactive);
  11border-radius: 50%;
  11box-shadow: 7px 0 0 0 var(--button-inactive), 14px 0 0 0 var(--button-inactive);
  11margin: 0 12px; float: left; left: 0; margin-left: 12px;
}

@media screen and (max-width: 415px) {
  .channels-at-NSIM .menu {
    display: none;
  }
}
.dropdown {
  position: relative;
  height: 53px;
  width: 40px;
  top: -24px;
  display: flex;
  left: -5px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.dropdown ul {
  	position: absolute;
  	background: var(--dropdown-bg);
  	7878height: 110px; 
	min-height: 110px; 
	height: auto;
  	width: 120px;
  	right: 0;
  	top: 20px;
  	pointer-events: none;
  	opacity: 0;
  	transform: translatey(10px);
  	transition: all 0.4s ease; 
	border: 1px solid #978b8f;
	}

.dropdown ul li a {
  text-decoration: none;
  color: var(--theme-color);
  font-size: 12px;
}

.dropdown.is-active ul {
  opacity: 1;
  pointer-events: all;
  transform: translate Y(25px); 
	z-index: 1;  
}
.dropdown.is-active ul li:hover {
  	background-color: var(--dropdown-hover); 
	border: 2px solid #9487e4;
	}

.button-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 187px 
  margin-left: auto;  
}
@media screen and (max-width: 480px) {
  .button-wrapper {
    width: auto;
  }
}

.pop-up {
  position: absolute;
  padding: 30px 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow-y: auto;
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s;
  z-index: 10;
  background-color: var(--popup-bg);
  width: 500px;
  visibility: hidden;
  opacity: 0;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  white-space: normal;
}
@media screen and (max-width: 570px) {
  .pop-up {
    width: 100%;
  }
}
.pop-up.visible {
  visibility: visible;
  opacity: 1;
}
.pop-up__title {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pop-up__subtitle {
  white-space: normal;
  margin: 20px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8em;
}
.pop-up__subtitle a {
  color: var(--theme-color);
}

.content-button-wrapper .content-button.status-button.open.close {
  width: auto;
}

.content-section .close {
  margin-right: 0;
  width: 24px;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
}
.checkbox-wrapper + .checkbox-wrapper {
  margin: 20px 0 40px;
}

.checkbox {
  display: none;
}

.checkbox + label {
  display: flex;
  align-items: center;
}
.checkbox + label:before {
  content: "";
  margin-right: 10px;
  width: 15px;
  height: 15px;
  border: 1px solid var(--theme-color);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox:checked + label:before {
  background-color: #3a6df0;
  border-color: #3a6df0;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' class='feather feather-check'%3e%3cpath d='M20 6L9 17l-5-5'/%3e%3c/svg%3e");
  background-position: 50%;
  background-size: 12px;
  background-repeat: no-repeat;
}

.content-button-wrapper {
  margin-top: auto;
  margin-left: auto;
}
.content-button-wrapper .open {
  margin-right: 8px;
}

.apps-card {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: calc(100% + 20px);
}

.app-card {
  display: flex;
  flex-direction: column;
  width: calc(33.3% - 20px);  
  font-size: 16px;
  background-color: var(--content-bg);
  border-radius: 14px;
  border: 1px solid var(--theme-bg-color);
  padding: 20px;
  cursor: pointer;
  transition: 0.3s ease;   
	box-sizing: border-box !important;  
	clear: both !important;     
}



/* SMALLER TABLET screens */   /* SMALLER TABLET */
@media screen and (max-width: 480px) {
  	.app-card {
		margin-left: 20px    
  		} 

	.main-site-logo {
		display: inline;
		}
	}





@media only screen and (min-width : 320px) and (max-width : 480px) {/* Mobile portrait */
  	.app-card {
		margin-left: 0px; 
  		} 

	.main-site-logo {
		display: inline;
		}
	}





@media only screen and (min-width : 480px) and (max-width : 595px) {/* Mobile landscape */
  	.app-card {
		margin-left: 0px;  
  		} 

	.main-site-logo {
		display: inline;
		}
	}





@media only screen and (min-width : 595px) and (max-width : 690px) {/* Small tablet portrait */
  	.app-card {
		margin-left: 0px;  
  		} 

	.main-site-logo {
		display: inline;
		}
	}





@media only screen and (min-width : 690px) and (max-width : 769px) {/* Tablet portrait */
  	.app-card {
		margin-left: 20px;  
  		} 

	.main-site-logo {
		display: inline;
		}
	}





/* SMALLER TABLET screens */   /* (location for ID picture) --- SMALLER TABLET */
@media only screen and (min-width : 769px) and (max-width : 800px) {/* Small tablet landscape */
	.app-card {
		margin-left: 0px;   
  		} 

	.main-site-logo {
		display: inline;
		}
	}





/* SMALLER TABLET screens */   /* (location for ID picture --- SMALLER TABLET */
@media only screen and (min-width : 800px) and (max-width : 1024px) {/* Small tablet landscape */
  	.app-card {
		margin-left: 0px;   
  		} 

	.main-site-logo {
		display: none;
		}
	}





@media only screen and (min-width : 1024px) and (max-width : 1224px) {/* Tablet landscape */
  	.app-card {
		margin-left: 0px;  
  		} 

	.main-site-logo {
		display: none;
		}
	}






/* Desktops and laptops */  /* SMALL DESKTOP */
@media only screen 
and (min-width : 1224px) {
  	.app-card {
		margin-left: 20px;  
		} 

	.main-site-logo {
		display: none;
		}
	}





.main-site-logo {
	width: 52px;
	height: 35px;
	top: 0 !important;
	margin-top: 5px !important;
	float: left;
	left: 0;
	margin-left: 5px;
	position: absolute;
	z-index: 1;
	11border: 0px;
	}







.app-card-video {
  display: flex;
  flex-direction: column;
  width: calc(66.6% - 20px);
  font-size: 16px;
  7878background-color: var(--content-bg);
  background-color: var(--theme-bg-color);
  border-radius: 14px;
  border: 1px solid var(--theme-bg-color);
  padding: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}
.app-card:hover {
  transform: scale(1.02);
  background-color: var(--theme-bg-color);
}
.app-card-video:hover {
  7878transform: scale(1.02);
  background-color: var(--theme-bg-color);
}
.app-card svg {
  width: 28px;
  border-radius: 6px;
  margin-right: 12px;
  flex-shrink: 0;
}
.app-card-video svg {
  width: 28px;
  border-radius: 6px;
  margin-right: 12px;
  flex-shrink: 0;
}
.app-card + .app-card {
  margin-left: 20px;
}
.app-card-video + .app-card-video {
  margin-left: 20px;
}
.app-card span {
  display: flex;
  align-items: center;
}
.app-card-video span {
  display: flex;
  align-items: center;
}
.app-card__subtext {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6em;
  margin-top: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}
.app-card-video__subtext {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6em;
  margin-top: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}
.app-card-buttons {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-top: 16px;
}
.app-card-video-buttons {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-top: 16px;
}
@media screen and (max-width: 1110px) {
  .app-card {
    7878width: calc(50% - 20px);  width: 100% !important; 
	left: auto; 
	right: auto;   
  }
  .app-card:last-child {
    margin-top: 20px;
    margin-left: 0px;
  }


  .app-card-video {
    7878width: calc(50% - 20px); width: 100% !important; padding: 0 !important; margin: 0 !important;
  }

  .app-card-video:last-child {
    margin-top: 20px;
    margin-left: 0px;
  }

}
@media screen and (max-width: 565px) {
  .app-card {
    width: calc(100% - 20px);
    margin-top: 20px;
  }
  .app-card + .app-card {
    margin-left: 0;
  }



  .app-card-video {
    width: calc(100% - 20px);
    margin-top: 20px;
  }
  .app-card-video + .app-card-video {
    margin-left: 0;
  }

}

::-webkit-scrollbar {
  width: 6px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--scrollbar-bg);
  border-radius: 10px;
}







/** CHANNEL'S BANNER **/
.image-fit-inside-div {/**VERY IMPORTANT -- PLEASE KEEP IT AS IT IS -- DO NOT CHANGE OR REMOVE OR UPDATE**/
	/**div to fit inside div and always keep the aspect ratio**/
		max-height:100%; 
		max-width:100% !important;
	/**end of div to fit inside div and always keep the aspect ratio**/
  	border-radius: 14px; 
	}








/*********************************************************************************************************************/








/* Dropdown styles */
.menu-dropdown {
  	position: relative;
  	padding: 0;
  	777margin-right: 1em;
  	border: none;
	}









.menu-dropdown ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: space-around;
  background-color: var(--content-bg);
  padding-left: 0;
  margin: 0;
  border-radius: 14px;
  border: 1px solid var(--theme-bg-color);
  cursor: pointer;

box-shadow: 2px 0 0 0 var(--button-inactive), 4px 0 0 0 var(--button-inactive);
}
.menu-dropdown ul li {
  list-style: none;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  font-size: 16px;
  width: 100%;
  height: 100%;
  white-space: nowrap;
  transition: 0.3s;
}
.menu-dropdown ul li:hover {
  background-color: var(--theme-bg-color);
}
.menu-dropdown ul li:hover:first-child {
  border-radius: 13px 13px 0 0;
}
.menu-dropdown ul li:hover:last-child {
  border-radius: 0 0 13px 13px;
}
.menu-dropdown ul li + li {
  border-top: 1px solid var(--border-color);
}






.menu-dropdown summary {
  list-style: none;
  list-style-type: none;
}

.menu-dropdown > summary::-webkit-details-marker {
  display: none;
}

.menu-dropdown summary:focus {
  	outline: none;
	}

.menu-dropdown summary:focus {
  	outline: none; 
	}

.menu-dropdown li {
	height: 40px !important;
  	border: 2px solid var(--theme-bg-color) !important;
  	background-color: var(--content-bg) !important;
	} 



.menu-dropdown a {
  text-decoration: none;
  color: var(--theme-color);
  display: flex;
  align-items: center;
  font-weight: 400;
  padding: 10px;
  font-size: 14px;
  border-radius: 6px;
  transition: 0.3s;
}
.side-menu a:hover {
  background-color: var(--hover-menu-bg);
}


