body {
	background-color: var(--background-color);
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: var(--body-color);
}
.container {
	max-width: 1320px;
	margin: 0 auto;
}
.title {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	border-radius: 0 .8rem 0 .8rem;
	background-image: url('/img/bg_header.png');
	background-repeat: no-repeat;
	background-position: right;
	background-size: 35%;
}
.oo-logo {
	width: 110px;
	margin-right: 2rem;
}
.oo-name {
	font-size: 1.3rem;
	line-height: 1.1;
}
.search-wrapper {
	border: .17rem solid #fc0;
	border-radius: .8rem;
	box-sizing: border-box;
	margin-top: 2rem;
	margin-bottom: 2rem;
}
.search__input-wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	height: 3.3rem;
}
.search__input {
	background: transparent;
	border: none;
	box-sizing: border-box;
	font-size: 1.1rem;
	height: 100%;
	outline: none;
	padding: 0 .4rem 0 .8rem;
	width: 100%;
	flex: 1 1 auto;
	color: var(--body-color);
}
.search__clear {
	background: none;
	border: none;
	margin: 0;
	color: var(--body-color);
}
.search__button {
	background: #fc0;
	border: none;
	border-radius: .5rem;
	cursor: pointer;
	font-size: 1.1rem;
	font-weight: 500;
	margin: .2rem;
	padding: 0 1rem;
	display: block;
}
.text-center {
	text-align: center;
}
.grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(4, 1fr);
}
.g-col {
	justify-self: stretch;
	text-shadow: 1em 1em 2em white, 0 0 1em #fdfdd7;
	box-shadow: 0 0 3px 3px rgba(0,0,0,0.12);
	border-radius: .5rem;
	height: 180px;
	text-decoration: none;
	color: var(--body-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	background-color: var(--g-col-background-color);
}
.g-col-links-add {
        justify-self: stretch;
	box-shadow: 0 0 3px 3px rgba(0,0,0,0.12);
	border-radius: .5rem;
	height: 90px;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	background-color: #e2e2e2;
        border: 4px #454545 dashed;
        cursor: pointer;
}
.g-col-link {
	box-shadow: 0 0 3px 3px rgba(0,0,0,0.12);
	border-radius: .5rem;
	height: 90px;
	background-color: var(--g-col-background-color);
        /*justify-self: stretch;*/
}
.g-col-link a {
    width: 100%;
    height: 100%;
    display: flex;
    text-decoration: none;
    color: var(--body-color);
    text-shadow: 1em 1em 2em white, 0 0 1em #fdfdd7;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    
}
.g-col-links-add img {
    height: 100%;
}
.edit-links {
    position: absolute;
    margin-top: -12px;
    margin-left: 278px;
}
.edit-links button {
    background: #2196f3;
    border-radius: 12px; 
    border: 0 none;
    padding: 2px;
    width: 24px;
    height: 24px;
}
.edit-links button img {
    width: 100%;
}
.visible__on {
	display: block;
}
.visible__off {
	display: none;
}
.visible__rel {
	position: relative;
}
.search__suggest {
	position: relative;
	z-index: 1001;
}
.search__suggest ul {
	position: absolute;
	background-color: var(--background-color);
	width: 100%;
	font-size: 1.1rem;
	list-style-type: none;
	padding: 0;
	margin-top: .2rem;
	border-radius: 0 0 .2rem .2rem;
}
.search__suggest ul li {
	border-radius: .5rem;
	margin-left: .2rem;
	margin-right: .2rem;
	margin-bottom: .2rem;
	margin-top: .2rem;
	padding: .5rem;
	cursor: pointer;
}
.search__suggest ul li:hover {
	background-color: #ffeba0;
	
}
.search__suggest ul li a {
	color: black;
	text-decoration: none;
	display: block;
	width: 100%;
}


 /* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


.dialog {
    border: 0 none;
    border-radius: .5rem;
    background-color: #e8e9ec;
    padding: 1rem;
}
.dialog__buttons {
    text-align: right;
    margin-top: 1rem;
}
.dialog__buttons button {
    border: 0 none;
    border-radius: .25rem;
    font-weight: bold;
    color: white;
    padding: 10px;
}
.dialog__submit {
    background-color: #2196f3;
}
.dialog__cancel {
    background-color: #eb0000;
}
.dialog__input input {
    display: block;
    border-radius: .25rem;
    padding: 10px;
    border: 1px #ccc solid;
    width: 315px;
}