* {
  direction: rtl;
  box-sizing: border-box;
  outline: none;
  font-family: 'Tajawal', sans-serif;

  -webkit-appearance:     none;
  -moz-appearance:        none;
  -ms-appearance:         none;
  -o-appearance:          none;
  appearance:             none;
}

body {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  margin: 0;
  background: #ffffff;

  margin-top: 60px;
  margin-right: 160px;

  height: calc(100% - 60px)!important;

  background: rgba(248, 248, 250, 1);
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

html, body {
  position: relative;
  height: 100%;
}

.page-body {
  position: relative;
  display: flex;
  flex-shrink: 0;
  overflow: auto;

  flex-direction: column;

  width: 100%;
  height: 100%;

  padding-bottom: 40px;
}
.page-body-header {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: space-between;

  flex-direction: row;

  margin-top: 20px;
  margin-bottom: 10px;

  width: 100%;

  padding: 0 20px;
}

.page-title {
  position: relative;

  font-size: 16px;
  font-weight: 600;
}

.cform {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;
}

.cform-section {
  position: relative;
  display: flex;

  flex-direction: column;

  margin: 10px 0;
  margin-top: 20px;

  width: 100%;

  padding: 0 20px;
}

.cform-section-title {
  position: relative;
  display: flex;

  flex-direction: row;

  margin: 10px 0;

  width: 100%;

  font-size: 24px;
  font-weight: 600;
}

.cform-fields {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;
}

.cform-field {
  position: relative;
  display: flex;

  flex-direction: column;

  margin: 10px 0;

  width: 100%;
}

.cform-field-title {
  position: relative;
  display: flex;

  flex-direction: row;

  margin-bottom: 2px;

  width: 100%;

  font-size: 18px;
  font-weight: 500;
}

.cform-error {
  position: relative;

  margin-top: 5px;

  font-size: 14px;

  color: rgba(220, 0, 0, 1);
}

.cform-input {
  position: relative;

  display: flex;

  flex-direction: row;

  appearance: none;
  border: 0;
  margin: 0;
  padding: 0;
  outline: 0;

  width: 100%;
  height: 45px;

  padding: 0 20px;

  font-size: 16px;

  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);

  transition: 0.3s all ease-out;
}
textarea.cform-input {
  height: auto;

  padding-top: 10px;
  padding-bottom: 10px;

  resize: vertical;
  transition: none;
}

.cform-button {
  cursor: pointer;
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  appearance: none;
  border: 0;
  margin: 0;
  padding: 0;
  outline: 0;

  width: 100%;
  height: 45px;

  padding: 0 20px;

  font-weight: 600;
  font-size: 14px;

  border-radius: 4px;

  opacity: 0.85;
  color: white;
  background: rgba(25, 30, 40, 1);

  transition: 0.3s all ease-out;
}
.cform-button--light {
  border: 2px solid rgba(25, 30, 40, 1);
  color: rgba(25, 30, 40, 1);
  background: white;
}
.cform-button--danger {
  border: 2px solid rgba(215, 30, 30, 1);
  color: white;
  background: rgba(215, 30, 30, 1);
}
.cform-button span {
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
}
.cform-button:hover,
.cform-button:focus {
  opacity: 1;
}
.cform-button--light:hover,
.cform-button--light:focus {
  border: 2px solid rgba(25, 30, 40, 1);
  color: white;
  background: rgba(25, 30, 40, 1);
}

.cform-input:focus,
.cform-button:focus {
  box-shadow: 0 0 0 3px rgba(25, 30, 40, 0.1);
}
