.container {
    padding: 0 30px 0 30px;
}

#toast-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    font-family: 'Proxima Nova', 'Nunito Sans', 'Helvetica', 'Arial', sans-serif;
}
#toast-container.toast-bottom-center>div,
#toast-container.toast-top-center>div {
    width: auto;
    min-width: 350px;
}
#toast-container>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-position: 20px center;
    background-size: 30px;
    padding: 12px 20px 11px 60px;
    box-shadow: none;
    border-radius: 3px;
    transition: box-shadow 0.2s ease-out;
    border: none;
    margin: 5px 0;
    opacity: 1;
}
#toast-container>div:hover {
    box-shadow: none;
}
.toast-message {
    font-family: 'Poppins','Nunito Sans','Helvetica','Arial',sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: #000;
    margin-right: 30px;
}
.toast-message a {
    margin-left: 5px;
}
.toast-success .toast-message a {
    color: #000;
    text-decoration: underline;
}
.toast-success {
    background-color: rgba(125, 213, 153, 0.5);
}
#toast-container>.toast {
    max-width: initial;
}
#toast-container>.toast-success {
    background-image: url("../images/icons/approved.svg") !important;
    background-size: 22px auto;
}
.toast-success .toast-message {
    color: #000;
}
.toast-success .toast-close-button {
    color: #fff;
}
.toast-error {
    background-color: rgba(255, 132, 101, 0.4);
}
#toast-container>.toast-error {
    background-image: url("../images/icons/warning-white.svg") !important;
}

.toast-error .toast-message {
    color: #000;
    font-family: 'Poppins','Nunito Sans','Helvetica','Arial',sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
}

.toast-error .toast-close-button {
    font-size: 0;
    line-height: 0;
    color: transparent !important;
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    background-size: 15px 15px;
    background-image: url("../images/close-btn.svg") !important;
    display: block;
}

.toast-success .toast-close-button {
    font-size: 0;
    line-height: 0;
    color: transparent !important;
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    background-size: 15px 15px;
    background-image: url("../images/close-btn.svg") !important;
    display: block;
}
.toast-error .toast-message a {
    color: #000;
    text-decoration: underline;
    font-family: 'Poppins','Nunito Sans','Helvetica','Arial',sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
}
.toast-close-button {
    position: relative;
    top: 0;
    right: 0;
    order: 2;
    font-weight: 300;
    opacity: 1;
}
.toast-close-button:focus,
.toast-close-button:hover {
    opacity: 1;
    outline: none;
}