<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.demo-section {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
}


/* Ð¡Ñ‚Ð¸Ð»Ð¸ Ð´Ð»Ñ ÐºÐ½Ð¾Ð¿Ð¾Ðº Ð´ÐµÐ¼Ð¾Ð½ÑÑ‚Ñ€Ð°Ñ†Ð¸Ð¸ */
.btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: #e74c3c;
}

.btn-secondary:hover {
    background-color: #c0392b;
}

.btn-tertiary {
    background-color: #27ae60;
}

.btn-tertiary:hover {
    background-color: #219653;
}

/* ÐœÐ¾Ð´Ð°Ð»ÑŒÐ½Ð¾Ðµ Ð¾ÐºÐ½Ð¾ Ð¸ ÐµÐ³Ð¾ ÐºÐ¾Ð¼Ð¿Ð¾Ð½ÐµÐ½Ñ‚Ñ‹ */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000000; /* Ð’Ñ‹ÑÐ¾ÐºÐ¸Ð¹ z-index Ñ‡Ñ‚Ð¾Ð±Ñ‹ Ð±Ñ‹Ñ‚ÑŒ Ð¿Ð¾Ð²ÐµÑ€Ñ… Ð´Ñ€ÑƒÐ³Ð¸Ñ… ÑÐ»ÐµÐ¼ÐµÐ½Ñ‚Ð¾Ð² */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.custom-modal-overlay.custom-modal-active {
    opacity: 1;
    visibility: visible;
}

.custom-modal {
    background-color: var(--dark-gray);
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    padding: 0;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.custom-modal-overlay.custom-modal-active .custom-modal {
    transform: translateY(0);
}

.custom-modal-header {
    padding: 0 30px;
    background-color: var(--dark-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.custom-modal-header h2 {
	margin-bottom: 1px;
}

.custom-modal-title {

}

.custom-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #95a5a6;
    transition: color 0.3s ease;
}

.custom-modal-close:hover {
    color: #e74c3c;
}

.custom-modal-body {
    padding: 30px;
}
.custom-modal-desk {
  padding: 0 30px;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}


/* Ð¡Ñ‚Ð¸Ð»Ð¸ Ñ„Ð¾Ñ€Ð¼Ñ‹ */
.custom-modal-form-group {
    margin-bottom: 20px;
}

.custom-modal-form-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}


.custom-modal-form-control {
    width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0.6rem 0.8rem;
  font-size: var(--font-size-sm);
  border-radius: var(--border-radius-md);
  transition: all 0.3s ease;
  margin-bottom: 0;
  box-sizing: border-box;
}

.custom-modal-form-control:focus {
 
   background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(159, 244, 70, 0.15);
  color: var(--white);
  outline: none;
}

.custom-modal-form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}


textarea.custom-modal-form-control {
    min-height: 100px;
    resize: vertical;
}

select.custom-modal-form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23606060' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.custom-modal-form-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.custom-modal-btn {
  width: 100%;
  padding: 14px 20px;
  background-color: var(--primary-color);
  color: var(--dark);
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  
}

.custom-modal-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.custom-modal-btn-secondary {
    background-color: #95a5a6;
}

.custom-modal-btn-secondary:hover {
    background-color: #7f8c8d;
}

/* Ð’Ð°Ð»Ð¸Ð´Ð°Ñ†Ð¸Ñ Ñ„Ð¾Ñ€Ð¼Ñ‹ */
.custom-modal-form-control.custom-modal-is-invalid {
    border-color: #e74c3c;
}

.custom-modal-invalid-feedback {
    display: none;
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    font-family: inherit;
}

.custom-modal-form-control.custom-modal-is-invalid + .custom-modal-invalid-feedback {
    display: block;
}

/* Ð£Ð²ÐµÐ´Ð¾Ð¼Ð»ÐµÐ½Ð¸Ñ */
.custom-modal-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    background-color: #2ecc71;
    color: white;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 2000000;
    font-family: inherit;
	display: none;
}

.custom-modal-notification.custom-modal-show {
    display: block;
	opacity: 1;
    transform: translateY(0);
}

.custom-modal-notification.custom-modal-error {
    background-color: #e74c3c;
}

/* ÐÐ´Ð°Ð¿Ñ‚Ð¸Ð²Ð½Ð¾ÑÑ‚ÑŒ */
@media (max-width: 768px) {
    .custom-modal {
        width: 90%;
    }
    
    .custom-modal-form-footer {
        flex-direction: column;
    }
    
    .custom-modal-form-footer .custom-modal-btn {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }
}
</pre></body></html>