.add-gallery {
	display: flex;
	position: relative;
/* 	justify-content: center;
	align-items: center; */
	width: 430px;
	height: 190px;
	background-color: white;
	box-shadow: 0px 0px 20px black;
}

.add-gallery__field-wrapper {
	display: flex;
/* 	position: relative;
	width: 100%; */
	flex-direction: row;
}

.add-gallery__field-label {
	display: flex;
	position: absolute;
	left: 70px;
	top: 20px;
	font-size: 16px;
	font-weight: 600;
}

.add-gallery__field-input {
	width: 210px !important;
	display: flex;
	position: absolute;
	right: 10px;
	top: 10px;
	font-size: 16px;
	margin: 0;
	padding: 0;
	border: none !important;
	text-align: center;
	background-color: transparent;
}

.add-gallery__information-wrapper {
	display: flex;
	flex-direction: row;
}

.add-gallery__information-title {
	display: flex;
	position: absolute;
	left: 70px;
	bottom: 95px;
	font-size: 16px;
	font-weight: 300;
}

.add-gallery__information-value {
	display: flex;
	position: absolute;
	right: 80px;
	bottom: 95px;
	font-size: 16px;
	font-weight: 600;
}

.add-gallery__submit {
	display: flex !important;
	position: absolute;
	bottom: 40px;
	color: white !important;
	background-color: #203B4E !important;
	font-size: 16px !important;
	font-weight: 300 !important;
	font-kerning: 1px !important;
	border: 2px solid #203B4E !important;
	border-radius: 50px !important;
	padding: 5px 55px !important;
}

.add-gallery__submit:hover {
	color: #203B4E !important;
	background-color: white !important;
}

.add-gallery__message {
	display: block;
	width: 100%;
    padding: 10px 15px;
    color: #ff030b;
    border-top: 3px solid #ff4f55;
    background: rgba(255, 79, 85, 0.1);
}

@media screen and (max-width: 470px) {
	.add-gallery {
		width: 355px;
		height: 200px;
	}
	
	.add-gallery__field-label {
		position: static;
		justify-content: center;
		align-items: center;
		margin: 10px 0 0 0;
}
	
	.add-gallery__field-wrapper {
	display: flex;
/* 	position: relative;
	width: 100%; */
	flex-direction: column;
}
	
	.add-gallery__field-input {
	position: static;
		justify-content: center;
		align-items: center;
		margin: 10px;
}
	
	.add-gallery__information-title {
	left: 40px;
	bottom: 80px;
}

.add-gallery__information-value {
	right: 40px;
	bottom: 80px;
}

.add-gallery__submit {
/* 	left: 0;
	right: 0; */
/* 	transform: translate(-50%, -50%); */
	bottom: 30px;
}
}

.add-gallery__form {
	position: relative;
}

.add-gallery__message {
	position: absolute;
	top: 0;
	transform: translateY(calc(-120% - 20px));
}
