:root {
    --color-notification-error: #c63c32;
    --notification-animation-curve: cubic-bezier(.41, .45, .14, .84);
    --notification-animation-time: .75s;
    --color-notification-text: #fff;
}

#notification-container {
    position: fixed;
    bottom: 0;
    left: 50%;
    width: 500px;
    margin-left: -235px;
    overflow: hidden;
}

#notification-container > div {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 5px 16px;
    transition: transform var(--notification-animation-time) var(--notification-animation-curve);
    color: var(--color-notification-text);
    font-weight: 600;
}

.notification > img {
    margin-right: 12px;
}

.error {
    background: var(--color-notification-error);
}

.container {
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px auto;
    color: #354153;
    width: 800px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 19px;
    background: #fff;
    padding: 50px 45px;
    box-shadow: 0 2px 4px 0 rgba(53,65,83, .12), 0 0 2px 0 rgba(53,65,83, .12);
}

.banner {
    align-items: center;
    justify-content: center;
    margin: 0 auto 50px auto;
    color: #354153;
    width: 700px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 19px;
    padding: 50px 45px 0px 45px;
}

.footer {
    align-items: center;
    justify-content: center;
    margin: 0 auto 50px auto;
    color: #354153;
    width: 700px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 19px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 50px 50px 50px;
    color: #354153;
}

.arrow {
    width: 60px;
    margin: 0 10px;
    border-radius: 6px;
}

.logo {
    margin: 15px;
    height: 80px;
    width: 80px;
    box-shadow: 5px 7px 2px 0 rgba(53, 65, 83, 0.15);
    border-radius: 6px;
    background-color: #fff;
}

.row-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 800px;
    height: 25px;
    border-bottom: 1px solid #8393aa;
    padding-bottom: 15px;
}

.left-heading {
    display: flex;
    flex: 75%;
    float:left;
    text-align: left;
    justify-content: left;
    width: 325px;
    height: 100%;
    margin: 0;
}

.right-heading {
    flex: 50%;
    float:right;
    text-align: left;
    justify-content: left;
    width: 300px;
    height: 100%;
}

.row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 700px;
    height: 25px;
    margin-top: 25px;
}

.right {
    flex: 50%;
    float:right;
    text-align: left;
    justify-content: left;
    width: 250px;
    height: 100%;
    margin-left:75px;
    margin-right:75px;
}

.left {
    display: flex;
    flex: 50%;
    float:left;
    text-align: left;
    justify-content: left;
    width: 275px;
    height: 100%;
    margin-left:25px;
    margin-right:25px;
}

.right {
    flex: 50%;
    float:right;
    text-align: left;
    justify-content: left;
    width: 250px;
    height: 100%;
    margin-left:25px;
    margin-right:25px;
}

.button-row {
    width: 800px;
}

.right-button {
    float:right;
}

.button {
    border: 0;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 10px 20px;
    transition: box-shadow .5s, background-color .5s, border .5s;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #5e4e76;
    box-shadow: 0 2px 4px 0 rgba(53,65,83, .12), 0 0 2px 0 rgba(53,65,83, .12);
}

.instruction {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #2e3745;
    text-align: justify;
    line-height: 29px;
}

.heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #7162a0;
    text-align: justify;
    line-height: 33px;
    margin: 0;
}

.heading-description {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #52627b;
    text-align: left;
    margin: 0;
}

.description {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #52627b;
    text-align: left;
    margin: 0;
}

.transactionType, .nameOption {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #52627b;
    text-align: left;
    margin: 0;
    padding-top: 10px;
    padding-left: 10px;
    width: 265px;
    cursor: pointer;
    height:20px;
}

.nameOption {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #52627b;
    text-align: left;
    margin: 0;
    padding-top: 10px;
    padding-left: 10px;
    width: 600px;
    cursor: pointer;
    height:20px;
}

.transactionType:hover, .transactionType:focus, .nameOption:hover, .nameOption:focus {
    background-color: #ddd;
}

.details {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #52627b;
    text-align: left;
    margin-top: 0px;
    font-style: italic;
}

.detailed-description {
    padding-top: 5px;
}

.subheading {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #354153;
    margin-top: 30px;
    padding-bottom: 25px;
}

.default {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #8393aa;
    text-align: left;
    line-height: 29px;
    margin-top: 0;
}

.light {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 19px;
    text-align: justify;
}

.checkbox {
    margin-right:15px;
    cursor: pointer;
    background-color: #f5f7fb;
    width: 25px;
}

.radio-container {
    cursor: pointer;
}

.dropdown-container {
    display:flex;
    float:left;
    height:30px;
    width: 275px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.dropbtn {
    color: black;
    padding: 16px;
    font-size: 10px;
    border: none;
    cursor: pointer;
    height:30px;
    width:40px;
    margin-left:-20px;
    padding:0;
}

.dropbtn:hover, .dropbtn:focus {
    background-color: #ddd;
}

.dropdown-input {
    box-sizing: border-box;
    background-position: 14px 12px;
    background-repeat: no-repeat;
    font-size: 16px;
    padding: 14px 20px 12px 15px;
    border: none;
    width: 227px;
}

.dropdown-input:focus {
    outline: 3px solid #ddd;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f6f6f6;
    min-width: 230px;
    overflow: auto;
    border: 1px solid #ddd;
    z-index: 1;
    margin-top:32px;
    border-radius: 6px;
    max-height:220px;
}

.dropdown-content.large {
    width: 600px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown a:hover {background-color: #ddd;}

.show {display: block;}

.check-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.check-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #f5f7fb;
    border: solid #839aaa;
    border-width: 1px;
    border-radius: 2px;
    margin-top: 5px;
}

.check-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.check-container input:checked ~ .checkmark {
    background-color: #f5f7fb;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.check-container input:checked ~ .checkmark:after {
    display: block;
}

.check-container .checkmark:after {
    left: 4px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid #839aaa;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.no-margin {
    margin-top:0;
}

.info {
    width: 600px;
    margin-left:auto;
    margin-right:auto;
    text-align:center;
    padding-top:100px;
}

.info h1 {
    color: #354153;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 45px;
    margin: 10px;
}

.info h2 {
    color: #27334E;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 22px;
}

.info img {
    width: 70px;
    height: 70px;
}

.info p {
    color: #6a7282;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
}

.disabled {
    background-color: #dadada;
}

.learn-container {
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px auto;
    width: 1000px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 19px;
    padding: 50px 45px;
    height: 100%;
    display: flex;
}

.learn-banner {
    align-items: center;
    justify-content: center;
    margin: 0 auto 50px auto;
    color: #ffffff;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 19px;
    height: 460px;
    background-color: #242437;
}

.learn-left {
    height: 100%;
    width: 400px;
}

.learn-left h1 {
    font-weight: 500;
    font-size: 32px;
    text-align: left;
    line-height:32px;
    font-family: 'Poppins', sans-serif;
}

.learn-left h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    text-align: left;
    margin-bottom: 10px;
}

.learn-left p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-align: left;
    line-height:25px;
}

.learn-graphic {
    width: 470px;
    height: 260px;
    margin-top: 250px;
    box-shadow: 0 2px 4px 0 rgba(53,65,83, .12), 0 0 2px 0 rgba(53,65,83, .12);
    border-radius: 6px;
}

.learn-right {
    flex: 50%;
    height: 100%;
}

.learn-gray {
    color: #8393aa;
}

.learn-footer {
    align-items: center;
    justify-content: center;
    margin: 0 auto 50px auto;
    color: #354153;
    width: 700px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 19px;
}

.learn-header {
    display: flex;
    margin: 0 50px 50px 0;
    color: #354153;
}

.learn-arrow {
    width: 60px;
    margin: 0 10px;
    border-radius: 6px;
}

.learn-logo {
    margin: 15px;
    height: 80px;
    width: 80px;
    box-shadow: 5px 7px 2px 0 rgba(53, 65, 83, 0.15);
    border-radius: 6px;
    background-color: #fff;
}

.dwolla-logo {
    margin: 15px;
    height: 60px;
    width: 60px;
    box-shadow: 5px 7px 2px 0 rgba(53, 65, 83, 0.15);
    border-radius: 6px;
    background-color: #fff;
    padding: 10px;
}

.learn-logo-row {
    width: 600px;
    padding-top: 110px;
    text-align: left;
}

.learn-logo-row img {
    margin-left: 100px;
}

.learn-row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 600px;
}

.learn-button {
    border: 0;
    cursor: pointer;
    display: inline-block;
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 20px 20px;
    transition: box-shadow .5s, background-color .5s, border .5s;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 21px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #5e4e76;
    box-shadow: 0 2px 4px 0 rgba(53, 65, 83, .12), 0 0 2px 0 rgba(53, 65, 83, .12);
    width: 170px;
}


.learn-banner-image {
    width:169px;
    height:43px;
    float:left;
    padding: 10px;
}

.learn-banner-image img{
    width:169px;
    height:43px;
}
