﻿body {
/*    background-image: repeating-linear-gradient(135deg, #cccccc, #d5fff8 17px);
    background-size: 15px 15px;
    background-position: bottom;
    background-repeat: repeat;*/
    background: azure;
}
.container {
  overflow-x: auto;
  overflow-y: auto;
  max-height: 100vh;
}
.table{
	border: 1px solid #eee;
	table-layout: fixed;
	width: 90%;
	margin-bottom: 20px;
	margin: auto;
	background-color: lightblue;	
}
.table th {
	font-weight: bold;
	padding: 5px;
	background: rgb(76, 118, 215);
	color: #eeeeee;
	border: 1px solid #dddddd;
}
.table th:first-child {
	width: 25%;
}
.table thead {
  position: sticky;
  top: 0;
  z-index: 101;

}
.table td {
	padding: 5px 10px;
	border: 1px solid #eee;
	text-align: right;
}
.table td:first-child {
	padding: 5px 10px;
	border: 1px solid #eee;
	text-align: left;
	width: 25%;	
}

.table tbody tr:nth-child(even){
	background: #fff;
}
.table tbody tr:nth-child(odd){
	background: #eeeeee;
}



.header {
 font-size: 70px;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  color: #b393d3;
  text-transform: uppercase;
  margin: auto;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 1px 1px 1px #957dad,
             1px 2px 1px #957dad,
             1px 3px 1px #957dad,
             1px 4px 1px #957dad,
             1px 5px 1px #957dad,
             1px 6px 1px #957dad,
             1px 10px 5px rgba(16, 16, 16, 0.5),
             1px 15px 10px rgba(16, 16, 16, 0.4),
             1px 20px 30px rgba(16, 16, 16, 0.3),
             1px 25px 50px rgba(16, 16, 16, 0.2);
}

.headert {
	color: #444444;
  margin: auto;
  margin-bottom: 20px;
  text-align: center;	
}

select {
width: 20%;
padding: 12px 20px;
font-size: 20px;
color: #333;
background-color: #ececec;
border: 1px solid #ddd;
border-radius: 4px;
appearance: none; 
-webkit-appearance: none; 
-moz-appearance: none; 
}


select:hover {
border-color: #999;
}


select:focus {
outline: none;
border-color: #4a90e2;
box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}
h4 {
width: 60%;
font-size: 22px;
color: #333;
}
.toggle {
  width: 10%;
  padding: 12px 20px;
  font-size: 26px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  color: #cccccc;
  vertical-align: center;
}

.toggle__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle__track {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  color: #cccccc; /* тусклый цвет, когда выключено */
  border: 1px solid;
  border-color:#ffffff;
  transition: color 0.2s ease;
  position: relative;
  vertical-align: center;

}

.toggle__thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 10%;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Состояние ВКЛ: яркий цвет */
.toggle__input:checked + .toggle__track {
 color: #333; /* яркий зелёный */
 border-color:#333;

}

.toggle__input:checked + .toggle__track + .toggle__thumb {
  transform: translateX(28px); /* сдвиг ползунка вправо */
}
.content-inner a.read-more-button, button.read-more-button {
   display: inline-block;
   position: relative;
   font-size: 18px;
   border-radius: 3px;
   color: white;
   padding: 10px 15px;
   margin: 15px 0;
   box-shadow: none;
   background: rgb(76, 118, 215);
   cursor: pointer;
   border: none;
}

.content-inner a.read-more-button:after, 
button.read-more-button:after {
	content: "\2192";
	color: white;
	font-family: 'Linearicons-Free';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	position: absolute;	
	top: 10px;
	right: 15px;
	display: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;	
}

.content-inner a.read-more-button:hover:after, 
button.read-more-button:hover:after {
	display: block;	
}
.content-inner a.read-more-button:hover,
button.read-more-button:hover {
   color: white;
   padding-right: 35px;
}
.btn {
    display: inline-block;
    box-sizing: border-box;
    padding: 0 20px;
    margin: 0 0px 10px 0px;
    outline: none;
    border: none;
    border-radius: 4px;
    height: 32px;
    line-height: 32px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    background-color: rgb(76, 118, 215);
    box-shadow: 0 2px #21487f;
    cursor: pointer;
    user-select: none;
    appearance: none;
    touch-action: manipulation;
    vertical-align: bottom;
}
.btn:hover {
	background-color: #3775dd;
}
.btn:active {
	background-color: #2f599e !important;
}
.btn:focus-visible {
	box-shadow: 0 0 0 3px lightskyblue;
}
.btn:disabled {
	background-color: #6c87b5;
	pointer-events: none;
}
.faded {
	color: #878787;
}