* {
	box-sizing: border-box;
}
body {
	min-height: 100vh;
}

.hidden {
	display: none;
	visibility: hidden;
}

a.nostyle:link {
    text-decoration: inherit;
    color: inherit;
}

a.nostyle:visited {
    text-decoration: inherit;
    color: inherit;
}

.bgg {
	background-color: hsl(195, 44%, 93%);
	height: 100%;
	width: 100%;
	position: absolute;
}
.centerMy {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.titleInfo {
	margin: 0;
	position: absolute;
	top: 90px;
	left: 50%;
	font-size: 36px;
	transform: translate(-50%, -50%);
}
.Info1 {
	margin: 0;
	position: absolute;
	top: 200px;
	left: 50%;
	font-size: 26px;
	transform: translate(-50%, -50%);
}
.Info2 {
	margin: 0;
	position: absolute;
	top: 280px;
	left: 50%;
	transform: translate(-50%, -50%);
}
.Info3 {
	margin: 0;
	position: absolute;
	top: 360px;
	left: 50%;
	font-size: 26px;
	transform: translate(-50%, -50%);
}
.Info4 {
	margin: 0;
	position: absolute;
	top: 480px;
	left: 50%;
	transform: translate(-50%, -50%);
}
.Info5 {
	margin: 0;
	position: absolute;
	top: 610px;
	left: 50%;
	font-size: 26px;
	transform: translate(-50%, -50%);
}
.Info6 {
	margin: 0;
	position: absolute;
	top: 680px;
	left: 50%;
	font-size: 26px;
	transform: translate(-50%, -50%);
}

.preview {
	padding-top: 40px;
	width: 70%;
	margin: 0 auto;
	height: calc(100vh - 90px);
}

.preview__buttons-contaienr {
	margin-top: 40px;
}

.preview__button {
	display: block;
}

.preview__button--delete {
	background-color: red !important;
	border-color: red!important;
}
.preview__button--delete:hover {
	background-color: rgb(206, 3, 3)!important;
	border-color: rgb(206, 3, 3)!important;
}

.model-data__text-container {
	width: 45%;
	padding: 0 20px 0 20px
}

.model-data__text-element + .model-data__text-element {
	margin-top: 20px;
}

.model-data__text-element--description,
.model-data__text-element--name {
	margin-bottom: 20px;
}

.model-data__text-element--category > span {
	border-radius: 6px;
	background-color: #198754;
	padding: 5px 10px;
	color: white;
	display: inline-block;
}

.preview__title > h1 {
	padding-left: 40px;
}

.model-data {
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
	height: 100%;
}

.model-data__model-container{
	width: 55%;
    height: auto;
}

.model-data__model {
	margin: 0 auto;
	height: 500px;
	width: auto;
	max-width: 100%;
}

/* .model-data__text-info {} */

.message {
	display: block;
	padding-bottom: 5px;
	font-weight: bold;
}

.message--failure {
	color: red;
	margin-bottom: 5px;
}

.message--success {
	color: rgb(50, 255, 68);
}

.card {
	background-color: #e2e3e5;
}

.header {
	background-color: #e9d7ff;
	padding: 20px 10px !important;
}

.header__link + .header__link {
	margin-left: 20px;
}

.main-content {
	width: 60%;
	margin: 40px auto 0;
}

.content-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.content-header__search-bar {
	width: 250px !important;
	margin: 20px auto;
	height: 40px;
	text-align: center;
	border: 2px solid;
}

.catalog {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	margin: 40px 0 60px;
	grid-gap: 60px 40px;
}

/* .catalog__item-card {} */

.item-card {
	cursor: pointer !important;
    text-decoration: none;
    color: #212529;
    border-radius: 6px;
    box-shadow: 0px 0px 10px 5px rgb(145 145 145 / 20%);
}

.item-card__wrapper {
	padding: 20px;
}

.item-card__title {
	margin-top: 15px;
	font-weight: bold;
	font-size: 18px;
	padding: 0 15px;
}

.item-card__title--centered {
	text-align: center;
}

.item-card__description {
	font-size: 14px;
}

.item-card__preview-image-container {
	width: 100%;
	height: 240px;
	display: flex;
    justify-content: center;
	margin-bottom: 20px;
}

.item-card___preview-image {
	width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.page-title {
	margin-bottom: 20px;
	font-size: 25px;
	width:100%;
}

.form-container {
	width: 500px;
	margin: 40px auto;
}

.form {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	justify-content: end;
}

.form + .form {
	margin-top: 40px;
}

.form__item {
	width: 100%;
}

.form__item--dropdown {
	cursor: pointer;
	display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.form__btn {
	align-self: flex-end;
}

.btn  {
	font-size: 16px !important;
}

.categories-list {
	display: flex;
	flex-direction: column;
	width: 60%;
	margin: 0 auto;
}

.remark {
	font-size: 12px;
	color: #212529;
}