.content {
  padding: 20px;
  flex: 1 1 auto;
  height: 86vh;
  overflow: auto;
}
/* #region Content-Header */
.content__header {
  display: flex;
  margin-bottom: 20px;
}
.content-header__group {
  display: flex;
  box-shadow: 0px 0px 14px 7px rgba(102, 89, 188, 0.04), 0px 0px 9px -5px rgba(102, 89, 188, 0.6);
  border-radius: 20px;
  gap: 20px;
  padding: 20px;
  overflow-y: auto;
}
.content-header-group__img {
  display: flex;
  flex: 0 0 35px;
}
.content-header-group__title {
  display: flex;
  align-items: center;
  text-align: start;
}
.content-header__group:hover{
  transition: all 0.1s;
}
.content-header__group:hover h2{
  animation: 0.8s ease-out 0.8s infinite alternate header;
}
@keyframes header {
  20%{
    color: black;
  }
  50%{
    color: #6659BC;
  }
  100%{
    color: #E67190;
  }
}
/* #endregion */
/* #region Content-Buttons */
.content__controls {
  margin-top: 20px;
  padding: 20px;
  box-shadow: 0px 0px 14px 7px rgba(102, 89, 188, 0.04), 0px 0px 9px -5px rgba(102, 89, 188, 0.6);
  border-radius: 20px;
}
.content-controls__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
/* #endregion */
/* #region Select */
.select {
  width: 100%;
  padding: 0 20px 20px 0;
  border-radius: 15px;
  border: none;
  overflow: auto;
}
.selected{
  color: #fff;
  background: #FB7B9D;
  box-shadow: 7px 9px 19px 3px rgba(229, 96, 131, 0.20);
}
.select::-webkit-scrollbar{
  background: #FCD3DE;
  border-radius: 10px;
}
.select::-webkit-scrollbar-thumb{
  background: #FB7B9D;
  border-radius: 100px;
  width: 40px;
}
.select::-webkit-scrollbar-track{
  width: 10px;
}
.select:focus {
  border: none;
  outline: none;
}
.select option {
  border-radius: 15px;
  padding: 20px;
}
.select option:checked {
  background: linear-gradient(#FB7B9D, #FB7B9D);
  background-color: #FB7B9D;
  color: white;
}
/* #endregion */

/* #region Buttons*/
.btn-adm-pink{
  padding: 15px 30px;
  color: #fff;
  font-weight: bold;
  background: #FB7B9D;
  box-shadow: 7px 9px 19px 3px rgba(229, 96, 131, 0.2);
  border: none;
  border-radius: 116px;
  transition: ease-out background 0.2s, box-shadow 0.2s;
}
.btn-adm-pink:hover{
  cursor: pointer;
  background: #FB91AE;
  box-shadow: 0px 11px 8px 3px rgba(229, 96, 131, 0.2);
}
.btn-adm-pink:active{
  background: #E67190;
  box-shadow: none;
}
/* #endregion */

/* #region Switch */
.switch input[type=checkbox]{
	height: 0;
	width: 0;
	visibility: hidden;
}

.switch label {
	cursor: pointer;
	text-indent: -9999px;
	width: 44px;
	height: 22px;
	background: grey;
	display: block;
	border-radius: 100px;
	position: relative;
}

.switch label:after {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: 18px;
	height: 18px;
	background: #fff;
	border-radius: 90px;
	transition: 0.3s;
}

.switch input:checked + label {
	background: var(--btn-pink-background-color);
}

.switch input:checked + label:after {
	left: calc(100% - 2px);
	transform: translateX(-100%);
}

.switch label:active:after {
	width: 18px;
}
/* #endregion */