body {
    margin: 0px;
    font-family: 'Roboto', sans-serif;
    color: #C6C6C6;
}

header {
    padding-top: 0px;
    background-color: #F5F5F6;
    color: #959BA4;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    height: 50px;
    margin-bottom: 50px;
}

.bank-logo {
    margin-top: 10px;
    background: url(./pictures/bank.png);
    width: 89px;
    height: 23px;
    cursor: pointer;
}

.sign-in-button {
    color: black;
    margin-top: 10px;
    line-height: 30px;
    text-align: center;
    width: 58px;
    height: 33px;
    background-color: white;
    cursor: pointer;
}

.top-ref {
    margin-left: -10px;
    padding-top: 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

a {
    color: #959BA4;
}

a:hover {
    color:black;
}

.ref-to {
    text-decoration: none;
    padding: 0 10px;
}

main {
    width: 640px;
    margin: auto;
}

.three-blocks {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.currency-selectors {
    margin: 1em 0;
    display: flex;
    flex-direction: row;
    width: 259px;
    height: 30px;
}

input[type=radio] {
    display:none; 
    margin:10px;
}

input[type=radio] + label {
    display:inline-block;
    color: #C6C6C6;
    padding: 8px 12px;
    border: 1px solid #E5E5E5;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 14px;
}

input[type=radio]:checked + label { 
    background-image: none;
    background-color: #833AE0;
    color: white;
}

#currency-left1 + label {
    border-radius: 3px 0 0 3px;
}

#currency-right1 + label {
    border-radius: 3px 0 0 3px;
}

select {
    color: #C6C6C6;
    border: 1px solid #E5E5E5;
    border-radius: 0 3px 3px 0;
}

.selected {
    background-color: #833AE0;
}

select:hover {
    background-color: white;
    color: black;
}

.numbers-n-text {
    padding: 10px;
    width: 239px;
    height: 82px;
    border: 1px solid #E5E5E5;
    border-radius: 3px;
}

#amount-input-left {
    width: 200px;
    border: none;
    outline: none;
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 36px;
    line-height: 42px;
    
    color: #000000;
    
}

#amount-input-right {
    width: 200px;
    border: none;
    outline: none;
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 36px;
    line-height: 42px;
    
    color: #000000;
    
}

.arrows {
    color: black;
    margin-top: 120px;
    font-size: 45px;
    text-align: center;
    width: 129px;
    height: 54px;
}

.arrows:hover {
    color: blue;
}

h1 {
    font-family: Roboto, sans-serif;
    font-weight: bold;
    font-size: 36px;
    line-height: 42px;
    line-height: 100%;
    text-align: Left;
    vertical-align: Top;
    color: #000000;
}

.dimmer {
    display: none;
    background: #000;
    opacity: 0.8;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.loading {
    color: #000;
    background-color: white;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 129px;
    height: 54px;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
}

.left-result {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 36px;
    line-height: 44px;
    color: #000000;
    display: none;
}

.right-result {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 36px;
    line-height: 44px;
    color: #000000;
    display: none;
}

.currency-for-one {
    margin-top: 25px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}