/*
Theme Name: SmartMag Child
Theme URI: https://smartmag.theme-sphere.com/
Description: A child theme of SmartMag
Author: ThemeSphere
Author URI: https://theme-sphere.com
Template: smart-mag
Version: 1.1
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@100..900&family=El+Messiri:wght@400..700&display=swap');

/**
 * 1.1. =Typography/Elements
 * ----------------------------------------------------------------------------
 --body-font: "Playpen Sans Arabic", cursive;
 */
:root {
  --body-font: "Noto Kufi Arabic", sans-serif;
  --ui-font: "El Messiri", sans-serif;
  --text-font: var(--body-font);
  --title-font: var(--ui-font);
  --h-font: var(--ui-font);
}

.success-message {
  color: #40bc42;
}opacity
.error-message {
  color: #b23e3e;
}
.success-message, .error-message {
  opacity: 1;
  transition: opacity 2s ease-out;
}
.success-message.fadding-out, .error-message.fadding-out {
  opacity: 0;
}