.alert-container {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.9em;
    color: #555555;
    height: 100%;
    width: 100%;
    display: table;
    position: fixed;
    z-index: 1000;
    background-color: rgba(55, 55, 55, 0.5);
}

.alert-container .alert-wrapper {
    display: table-cell;
    vertical-align: middle;
}

.alert-container .alert-wrapper .alert {
    width: 250px;
    height: 250px;
    background-color: white;
    overflow: auto;
    -webkit-box-shadow: 0 0 50px 1px rgba(55, 55, 55, 0.3);
            box-shadow: 0 0 50px 1px rgba(55, 55, 55, 0.3);
    border-radius: 4px;
    margin: auto;
}

.alert-container .alert .header-container {
    background-color: #f0f0f0;
    height: 50px;
}

.alert-container .alert .header-container .title {
    line-height: 50px;
    float: left;
    margin: 0;
    margin-left: 25px;
}

.alert-container .alert .header-container .cancel {
    height: 50px;
    width: 50px;
    border-style: none;
    float: right;
    cursor:pointer;
}

.alert-container .alert .header-container .cancel .svg {
    content: url(cancel.svg);
    width: 10px;
    height: 10px;
    margin-top: 20px;
    margin-left: 20px;
}

.alert-container .alert .message-container .alert-message {
    text-align: left;
    padding: 25px 25px 25px 25px;
    margin: 0;
}