@import url("/fonts/Cairo/Cairo.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.flex-center {
  align-items: center;
  display: flex;
  justify-content: center;
}

.container {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 15vmin 0;
}

.card {
  border-radius: 10px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
  background-color: #ffffff;
  padding: 10px 30px;
  width: 425px;
  display: table;
}

.card_title {
  text-align: center;
  padding: 5px;
}

.card_title h1 {
  font-size: 26px;
  font-weight: bold;
  font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form {
  direction: rtl;
}

.form input {
  margin: 10px 0;
  display: block;
  width: 100%;
  background-color: #e2e2e2;
  border: 0;
  outline: 0;
  padding: 12px 20px;
  border-radius: 4px;
  font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 5px;
}

input[type=radio], input[type=checkbox] {
  border: 2px solid #000 !important;
  height: 15px;
  width: 15px;
}

.form button {
  background-color: #4796ff;
  color: #ffffff;
  font-size: 16px;
  outline: none;
  border-radius: 5px;
  border: none;
  padding: 8px 15px;
  min-width: 60%;
  margin: auto;
  display: block;
  margin: 25px auto;
}


button:hover {
  background-color: #f0e68c;
  color: #000;
}

.form button:hover {
  background-color: #f0e68c;
  color: #000;
}

.btn-red {
  background-color: red !important;
  color: #fff !important;
  cursor: pointer;
}

.badge {
	cursor: pointer;
	padding: 0px 15px;
	border-radius: 10px;
	display: inline-block;
}

.badge-warn {
	background-color: red !important;
	color: #fff !important;
}

.badge-info {
	background-color: dodgerblue !important;
	color: #fff !important;
}

.badge-error {
	background-color: red !important;
	color: #fff !important;
}

.badge-success {
	background-color: rgb(26, 187, 63) !important;
	color: #fff !important;
}

.line-through {
	text-decoration: line-through;
}

.coupon-success {
	color: rgb(26, 187, 63);
  font-size: calc(25px + 8vmin);
}

.bidi {
	unicode-bidi: plaintext;
}

.text-center {
	text-align: center;
}

.rtl {
	direction: rtl;
	text-align: right;
}

.btn-black {
  background-color: #333 !important;
  color: #fff !important;
  cursor: pointer;
}

.btn-red:hover,
.btn-black:hover {
  background-color: #f0e68c !important;
  color: #000 !important;
}

.flex {
  display: flex;
  margin: 5px;
}

.form label,
.form button {
  font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form select {
  padding: 10px 20px;
}

.form option {
  direction: rtl;
  text-align: right;
}

.form .pay-items-container {
  margin: 20px 0;
  text-align: center;
}

.form .pay-item {
  transition: all 0.5s;
  cursor: pointer;
  margin: 0 25px;
}

.form .pay-item-img {
  /* height:45px; */
  width: 75px;
}

.form .pay-item-text {
  font-size: 12px;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: none;
  align-items: center;
  justify-content: center;
}

.loader {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  display: inline-block;
  border-top: 10px solid #f1af1a;
  border-right: 10px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 800px) {
  .form select {
    padding: 10px 20px;
    /* width: 80%; */
    direction: rtl;
    text-align: right;
  }

  .card {
    width: 70%;
  }
}

@media screen and (max-width: 600px) {
  .card {
    width: 80%;
  }

  .form .pay-item strong,
  .form .pay-item-text {
    font-size: 14px;
  }

}