﻿.aml-banner {
    background-color: #008231;
    margin-bottom: 15px;
}

.aml-panel {
    position: fixed;
    overflow-y: auto;
    top: 0;
    left: 0;
    background: #f7f7f7;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.aml-container {
    width: 85%;
    margin: 0 auto;
    padding-top: 15px;
}

.aml-logo {
    position: relative;
    height: 50px;
    left: 50%;
    transform: translateX(-50%);
    margin: 10px;
}

.aml-subtitle {
    line-height: 25px;
    margin: 35px 0;
}

.aml-subtitle.aml-subtitle--margin-small {
    margin: 10px;
}

.aml-subtitle a {
    text-decoration: underline;
}

.aml-alert {
    background-color: #f9ece6;
    padding: 0 15px;
    border: 1px solid #c63b00;
    border-left-width: 5px;
    margin-bottom: 30px;
}

.aml-alert .aml-alert__title {
    margin-bottom: 5px;
}

.aml-alert .aml-alert__description {
    margin-top: 0;
}

.aml-divider {
    border-color: #202020;
    border-top-width: 2px;
    margin-top: 0;
    margin-bottom: 30px;
}

.aml-input {
    /*Label font-size*/
    font-size: 14px;
}

.aml-save-button {
    float: right;
}

.aml-loader {
    z-index: 6;
}

.aml-documents-upload-icon {
    color: rgb(37, 116, 169);
}

.aml-documents-upload-info-container {
    display: inline-block;
    cursor: help;
}

.aml-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 20px;
}

.aml-steps__step {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #BFBFC5;
    
    transition: all 0.3s ease-out;
}

.aml-steps__step.aml-steps__step--active {
    height: 18px;
    width: 18px;
    background-color: #669BD4;
}