 /*offcanvas*/
.offcanvas-end {
    top: 0;
    right: 0;
    width: 400px;
    transform: translateX(100%);
  }
  
  .offcanvas {
    position: fixed;
    bottom: 0;
    z-index: 1045;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    visibility: hidden;
    background-color: #00000000;
    background-clip: padding-box;
    outline: 0;
    transition: transform .3s ease-in-out;
  }
  .offcanvas.show {
    transform: none;
  }
  .offcanvas-backdrop.fade, .offcanvas-backdrop.show {
    transition: opacity .15s linear;
  }
  /*задний фон*/
  .offcanvas-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
  }
  
  .offcanvas-backdrop.show {
    pointer-events: auto;
    opacity: .5;
  }
  
  .offcanvas-backdrop.fade {
    pointer-events: none;
    opacity: 0;
  }
  
  .offcanvas-header {
    padding: 10px;
    align-items: center;
    height: 50px;
    background-color: var(--profile-bg);
  }
  /*offcanvas*/
  
  
  
  .btn-close {
    margin-left: auto;
    width: 35px;
    height: 35px;
    border-radius: 7px;
    border: none;
  }
 
 /*свичер темы*/
  .check_custom {
	background: var(--bg-change-theme);
	position: relative;
	width: 58px;
	height: 25px;
	border-radius: 30px;
	backdrop-filter: blur(4px);
  }
  
  .check_custom .check_custom_span {
	background: #fffcae;
	top: 3px;
	left: 4px;
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 35px;
	transition: .8s;
	box-shadow: 0px 0px 6px 3px rgb(255,252,174);
	background-size: contain;
  }
  
  .check_custom .check_custom_body:checked ~ .check_custom_span {
	box-shadow: 0 0 9px rgba(0,0,0,0.1);
	left: 35px;
	background: url('../img/moon.svg') no-repeat;
	background-size: contain;
  }
  
  .ac-attribute {
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    padding: 2px 4px;
    color: var(--white-text);
    margin-right: 6px;
    border-radius: 4px;
  }
  
  .check_custom_auto {
	background: var(--bg-change-theme);
	position: relative;
	width: 25px;
	height: 25px;
	border-radius: 30px;
	backdrop-filter: blur(4px);
  }
  
  .check_custom_auto .check_custom_span_auto {
	background: #737373;
	top: 2px;
	left: 2px;
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 35px;
	transition: .8s;
	background: url('../img/auto.svg') center / cover no-repeat;
  }
  
  .check_custom_auto .check_custom_body_auto:checked ~ .check_custom_span_auto {
	box-shadow: 0 0 9px rgba(0,0,0,0.1);
	filter: invert(100%);
	background-color: #999999;
  }
  
  .button_menu {
	display: flex;
    width: 100%;
    height: 64px;
    border-radius: 7px;
    border: none;
    background-color: var(--profile-btn-bg);
    margin: 0;
    color: var(--color-text);
    justify-content: flex-start;
    align-items: center;
  }
  
  .parent {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(5, 1fr);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
	}
  
  .parent > div {
	padding: 3px;
  }

  .btn-close-canvas {
	margin-left: auto;
    width: 35px;
    height: 35px;
    border-radius: 7px;
    border: none;
    color: #df005b;
    background: var(--profile-btn-close);
  }

  .no-scroll-body {
	overflow: hidden;
  }

  #server_lists {
	padding: 0 15px 0 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
	margin-top: 5px;
  }

  #server_lists > span {
	margin-top: 5px;
  }
  .button_menu > i {
	font-size: 20px;
	margin-right:  5px;
  }
  @media (min-width: 100px) {
	.parent {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: repeat(5, 1fr);
		grid-column-gap: 0px;
		grid-row-gap: 0px;
		}
  }
  @media (min-width: 900px) {
	.parent {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(5, 1fr);
		grid-column-gap: 0px;
		grid-row-gap: 0px;
		}
  }

  @keyframes textSize {
	0%, 100% {
		background-size: 30dvmax;
	}
	50% {
		background-size: 27dvmax;
	}
  }