/* Zakaz */
#fast_order_success {
display: none; 
color: green; 
font-weight: bold; 
margin-top: 15px;
padding: 50px 20px;
font-size: 22px;
text-align: center;
line-height: 1.5;
display: none;
}
#fast_order_body > p:nth-child(3) {
display: none;	
}
.zakaz_form2 {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
max-width: 400px;
width: 100%;
background: white;
padding: 20px;
z-index: 9999;
box-shadow: 0 0 20px rgba(0,0,0,0.3);
display: none;
}
#fast_order_form {
width: 100%;
margin: 0 auto;
}
#fast_order_body p {
margin: 10px 0;
}
#fast_order_body label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
#fast_order_body input[type="text"],
#fast_order_body input[type="email"],
#fast_order_body input[type="number"],
#fast_order_body textarea {
width: 100%;
padding: 8px;
border: 1px solid #ccc;
box-sizing: border-box;
}
#fast_order_body input[type="number"] {
width: 100%;
padding: 8px;
border: 1px solid #ccc;
box-sizing: border-box;
}
#fast_order_body textarea {
width: 100%;
padding: 8px;
border: 1px solid #ccc;
box-sizing: border-box;
height: 80px;
resize: vertical;
}
.zakaz-submit2 {
background: #007cba;
color: white;
border: none;
padding: 20px 0 !important;
cursor: pointer;
width: 100%;
font-size: 16px;
}
input[type="submit"]:disabled {
	cursor: not-allowed !important;	
}
.zakaz-submit2:hover {
background: #005a87;
}
.zakaz_form2 h3 { text-align: center; }
.form-close2 {
  display: none;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 34px;
  height: 34px;
  background: url('../images/close.png') no-repeat scroll 0px 0px transparent;
  cursor: pointer;
  z-index: 1010;
  opacity: 1;
  background: #fff;
  border-radius: 35px;
  padding: 4px 10px;
  font-size: 22px;
  border: 1px solid transparent;
}

/* COOKIE */
.cookie-strict-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px); /* Изначально спрятана внизу за экраном */
    width: 90%;
    max-width: 1100px;
    background-color: #777475;
    color: #ffffff;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 999999; /* Максимальный приоритет */
    font-family: sans-serif;
    opacity: 1;
    transition: transform 0.4s ease, opacity 0.4s ease; /* Плавное всплытие */
}
/* Этот класс принудительно покажет плашку, что бы там ни чудила тема */
.cookie-strict-banner.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.cookie-strict-text {
    font-size: 13px;
    line-height: 1.6;
    padding-right: 25px;
    text-align: left;
}
.cookie-strict-buttons {
    display: flex;
    gap: 12px;
}
.cookie-strict-btn {
    background: none;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.cookie-strict-btn.accept-btn:hover {
    background-color: #ffffff;
    color: #c22233;
}
.cookie-strict-btn.decline-btn {
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.8);
}
.cookie-strict-btn.decline-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}
@media (max-width: 768px) {
    .cookie-strict-banner {
        flex-direction: column;
        gap: 15px;
        bottom: 20px;
        padding: 15px;
    }
    .cookie-strict-text {
        padding-right: 0;
        text-align: center;
    }
    .cookie-strict-buttons {
        width: 100%;
        justify-content: center;
    }
}
