#currency-converter body {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  font-family: 'Lexend', sans-serif;
  color: #080a0c;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background-color 0.2s ease;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

#currency-converter .widget-header {
  display: none;
}

#currency-converter .content.table {
  border: none;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#currency-converter .col1,
#currency-converter .col2,
#currency-converter .col3 {
	display: none;
}

#currency-converter .row {
  display: flex;
  margin: auto;
  height: auto;
}

#currency-converter .row .cell {
  display: flex;
  align-items: center;
  margin: auto 16px auto 0;
  height: 56px;
}

#currency-converter .row .cell .cmbFrom,
#currency-converter .row .cell .cmbTo {
  padding: 0 14px 0 16px;
  display: flex;
  width: 100%;
  height: 56px;
  border-radius: 4px;
  border: solid 1px #e7e9ee;
  background-color: #fff;
  position: relative;
  text-align: left;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  font-family: 'Lexend', sans-serif;
  color: #080a0c;
}

#currency-converter .row .cell .btnSwapCurrency {
  min-height: 56px;
  border-width: 1px;
  max-width: unset;
  display: flex;
  width: 100%;
  margin: 0 auto;
  color: #154dd1;
  border: solid 2px #154dd1;
  background-color: transparent;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  padding: 6px 16px;
  border-radius: 4px;
  cursor: pointer;
  outline: none;
  transition: background-color .15s ease-out, color .15s ease-out;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

#currency-converter .row .cell .btnSwapCurrency:hover {
	background-color: #154dd1;
}

#currency-converter .row .cell .btnSwapCurrency i:hover {
	color: #fff;
}

#currency-converter .row .cell .txtFrom,
#currency-converter .row .cell .txtTo {
  font-size: 18px;
  line-height: 1.5;
  color: #080a0c;
  padding-right: 12px;
  flex: 1 1 auto;
  outline: none;
  z-index: 1;
  position: relative;
  text-align: left;
  padding-left: 16px;
  display: flex;
  width: 100%;
  height: 56px;
  border-radius: 4px;
  border: solid 1px #e7e9ee;
  background-color: #fff;
}

#currency-converter .row .cell .txtTo {
  pointer-events: none;
}

#currency-converter .row .cell .btnConvert {
  justify-content: center;
  align-items: center;
  background-color: #154dd1;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  padding: 6px 16px;
  min-height: 56px;
  border: 0 none;
  border-radius: 4px;
  cursor: pointer;
  outline: none;
  transition: background-color .15s ease-out, color .15s ease-out;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
}