@font-face {
  font-family: MyriadArabic;
  src: url(/assets/fonts/MyriadArabic-Regular.otf);
  padding: 2px 0px;
}

* {
  box-sizing: border-box;
}

.converter-widget-wrapper {
  overflow: hidden;
  border-radius: 3px;
  border: solid 1px #297CA6;
  padding: 15px 10px;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.converter-form {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: calc(100% - 50px);
}

.rates-table {
  border: solid 1px #297CA6;
  border-radius: 3px;
  font-family: MyriadArabic ,"Droid Arabic Naskh", Arial;
  font-size: 16px;
  font-weight: normal;
  color: #787979;
  border-collapse: collapse;
}

.rates-table .column-title, .rates-table .row-title {
  color: #787979;
}

.rates-table .number-up .show-change-direction {
  color: #21CE99;
}

.rates-table .number-down .show-change-direction {
  color: #FB522B;
}

.rates-table .table-head {
  background-color: #E9ECEE;
}

.rates-table td {
  padding: 2px 5px;
  line-height: 1;
}

.converter-results-container {
  background: #F4F7F9;
  border-radius: 3px;
  padding: 10px;
  width: calc(100% - 50px);
}

.converter-results-container > div {
  margin-bottom: 5px;
}

.converter-results-container > div:first-child {
  color: #3197CA;
  font-weight: bold;
}

.input-container {
  flex: 1;
}

.button {
  outline: none;
  border: none;
  width: 200px;
  border-radius: 3px;
  height: 30px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  background: 0 0;
  border: solid 1px #56A9D3;
  color: #56A9D3;
}

.button:hover {
  cursor: pointer !important;
  background-color: #56A9D3;
  color: white;
}

.input-text {
  width: 100%;
  height: 30px;
  padding: 0 10px;
  outline: none;
  border: solid 1px #BDC7CD;
  background: 0 0;
  border-radius: 3px;
}

.input-text:focus {
  border-color: #56A9D3;
}

.input-label {
  margin-left: 10px;
  font-weight: bold;
  width: 30px;
}

.full-width {
  width: 100%;
}

.row {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.name-and-symbol {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.image-container {
  margin-left: 6px;
  width: 24px;
  height: auto;
  max-height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container img, .image-container object {
  max-width: 100%;
}

.image-container object {
  display: flex;
  align-items: center;
}

.main-title {
  margin: 0 0 10px 0;
  font-size: 18px;
  width: 228px;
  color: #0c516f;
  font-weight: normal;
}

.up {
  animation: up-motion 3s 1;
}

@keyframes up-motion {
  0% {
    color: white;
    background: #21CE99;
  }
  100% {
    color: #787979;
    background: 0 0;
  }
}

.down {
  animation: down-motion 3s 1;
}

@keyframes down-motion {
  0% {
    color: white;
    background: #FB522B;
  }
  100% {
    color: #787979;
    background: 0 0;
  }
}

/*# sourceMappingURL=all.css.map */
