html, body {
	max-width: 1200px;
	margin: auto auto;
	background: #182028;

	color: #f7f3f3;
}



main{
	background-color: #1f262d;
	padding: 15px;
	margin: 3px 0 3px;

}
.price{
color:#e0e0e0
}
.price b{
	color: #f53f27;
}
.price s{
	color: #fbe489;
}
.icon-link {
	display: inline-flex;
	align-items: center;
	gap: 1px;
  font-size: 11px;
  margin: 7px 0 10px;
}
.footerAdvertLink{
margin: 8px 0 3px;
}
.footerAdvertLink a{
  color: #ffff4c;
  }
  .footerAdvertLink a:hover{
    color: #fff;
    text-decoration: underline;
    } 
.dno{
	margin-bottom: 200px;
}
footer {
	max-width: 960px;
	margin: auto auto;
	margin-top: 3px;
	width: 100%;
	background-color: #1f262d;
	color: #fff;
	position: fixed;
	bottom: 0;
	text-align: center;
}
footer a{
	text-transform: uppercase; 
	font-weight: 900;
	margin: 0 5px 0;
}
footer a:hover{
	text-decoration: none;
	
}
footer i{
	font-size: 17px;
	vertical-align: middle;
	
	
}
.customform {
	max-width: 500px;
	margin: 0 auto;
	padding: 30px;
	background-color: #173e62;
	border-radius: 15px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 20px;
}

.customform label {
	display: block;
	margin-bottom: 10px;
	color: #fff;
	font-weight: 600;
}
.customform input[type="text"], input[type="url"], input[type="password"] {

	width: calc(100% - 20px);
	padding: 12px 15px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 16px;
	transition: all 0.3s ease;
}

.customform input[type="text"], input[type="email"] {
	width: calc(100% - 20px);
	padding: 12px 15px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 16px;
	transition: all 0.3s ease;
}

.customform input[type="text"], input[type="tel"] {
	width: calc(100% - 20px);
	padding: 12px 15px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 16px;
	transition: all 0.3s ease;
}
.customform input[type="text"]:focus {
	border-color: #007bff;
	outline: none;
	box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}
.color-input-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
}
.litle_text{
	color: #ffffff;
	font-size: 11px;
}
.color-input-wrapper input[type="color"] {
	border: none;
	width: 100px;
  height: 25px;
	cursor: pointer;
}

.color-input-wrapper input[type="color"]::-webkit-color-swatch-wrapper {
	padding: 0;
}

.color-input-wrapper input[type="color"]::-webkit-color-swatch {
	border: none;
	border-radius: 50%;
}

.color-value {
	font-family: monospace;
	padding: 5px 10px;
	border-radius: 4px;
}
.refContainer {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 15px;
	padding: 15px;
}

.ref-card {
	background-color: #173e62;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 15px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
}

.ref-card:hover {
	transform: scale(1.02);
	box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.ref-card p {
	margin: 8px 0;
	display: flex;
	justify-content: space-between;
}

.ref-card p strong {
	color: #fbfcf0;
	margin-right: 10px;
}

.ref-card p span {
	color: #fff;
	text-align: right;
}

@media (max-width: 600px) {
	.container {
			grid-template-columns: 1fr;
	}
	.ref-card{
		width: 222px;
	}
}
.submit-btn {
	width: 100%;
	padding: 12px 20px;
	background-color: #007bff;
	color: #ffff4c;
	border: none;
	border-radius: 8px;
	font-size: 18px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.submit-btn:hover {
	background-color: #0056b3;
	transform: translateY(-2px);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.submit-btn:active {
	transform: translateY(0);
	box-shadow: none;
}
.exit-button {
	padding: 5px 5px;
	font-size: 18px;
	color: white;
	background-color: #eda1a1;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s, transform 0.3s;
	text-align: center;
}
.exit-button:hover {
	background-color: #ff1a1a;
	transform: scale(1.05);
}
.ad-block {
	display: flex;
	align-items: center;
	background-color: blue;
	margin: 5px 0;
	padding: 10px;
	border-radius: 5px;
	text-decoration: none;
	color: #f0f0f0;
	width: 100%;
	box-sizing: border-box;
	font-weight: 600;
text-transform: uppercase;
}

.ad-block:hover {
	background-color: #188aee;
}

.favicon {
	width: 16px;
	height: 16px;
	margin-right: 10px;
}

.ad-text {
	flex-grow: 1;
	margin-right: 10px;
}

.go-button {
	background-color: white;
	color: blue;
	border: none;
	padding: 8px 15px;
	border-radius: 5px;
	cursor: pointer;
}
.go-button:hover {
	color: #000;
}
@media (max-width: 600px) {
	.ad-block {
			flex-direction: column;
			text-align: center;
	}

	.favicon {
			margin-bottom: 10px;
			width: 20px;
    height: 20px;
		border-radius: 30%;
    border: #fff solid 10px;
	}

	.go-button {
			margin-top: 10px;
	}
}


/* МОБИЛЬНАЯ ВЕРСИЯ */
@media (max-width: 660px){
	
	header {
		display: inline-block;
	}
	nav{
	
	font-size: 12px;
	}
	nav ul {

		gap: 3px; /* Добавляем отступ между кнопками */
		
	}
	.column:first-child {
		text-align: center; 
	}
	
	.column:last-child {
		text-align: center; 
		padding: 5px 0; 
	}
	.column img{
		max-width: 100%;
	}
	
	nav li{
		margin: 5px 0;
		font-size: 12px;
		
	}
	footer a{

		font-size: 12px;
	}
}