/* Подвал в fancybox */
.fancybox_footer {
    background: #f9f9f9;
    color: #000;
    padding: 5px;
    z-index: 10;

    margin-top: 10px;
}

.fancybox_footer .footer_content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.fancybox_footer .footer_row
 {
  text-align: center;
 }

.fancybox_footer .footer_label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
    opacity: 0.8;
}

.fancybox_footer .footer_input {
    width: 80px;
    padding: 4px 8px;
    border: 1px solid #555;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #000;
    font-size: 14px;
}

.fancybox_footer .footer_input:focus {
    outline: none;
    border-color: #4CAF50;
}

.fancybox_footer .footer_input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.fancybox_footer .footer_btn {
    margin-left: 5px;
    padding: 5px 18px;
    background: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s;
}

.fancybox_footer .footer_btn:hover:not(:disabled) {
    opacity: 0.8;
}

.fancybox_footer .footer_btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.fancybox_footer .footer_change_button
 {
  margin: 0px 5px;
  box-sizing: border-box;

  height: 27px;
  padding: 0px 10px;

  border-radius: 4px;

  background: #0174FF;

  font-weight: 500;
  color: #ffffff;
 }