.Alert {
    display: none;
    min-width: 280px;
    max-width: 400px;
    min-height: 80px;
    padding: 10px 20px;
    background: #ffffff;
    border: 1px solid #405b8b;
    border-radius: 4px;
    box-shadow: 0 1px 6px #cccccc;
    font-size: 12px;
    color: #555555;
    position: fixed;
    z-index: 999;
    top: 50%;
    left: 50%;
}

.Alert__box {
    width: 100%;
    min-height: 25px;
    margin-bottom: 5px;
    text-align: center;
}

.Alert__close {
    display: block;
    width: 74px;
    height: 24px;
    border: 1px solid #405b8b;
    padding: 3px;
    background: #405b8b;
    color: #ffffff;
    font-size: 12px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    margin: 2px auto;
}

.Background__window {
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000000;
    opacity: 0.7;
    position: fixed;
    z-index: 991;
}

/* Form */

.Form {
    width: 460px;
    min-height: 10px;
    padding: 10px;
}

.Form__title {
    width: 100%;
    min-height: 20px;
    padding: 5px 0px;
    font-size: 16px;
    font-weight: bold;
    color: #595959;
}

.Form__box {
    width: 100%;
    min-height: 10px;
}

.Form__section {
    width: 440px;
    min-height: 30px;
    margin-bottom: 20px;
    position: relative;
    font-size: 14px;
    font-weight: bold;
}

.Form__field, .Form__buttons {
    width: 440px;
    min-height: 30px;
    margin-bottom: 10px;
    position: relative;
}

.Form__field.multi {
    padding-bottom: 10px;
}

.Form__field.data .value {
    margin-bottom: 5px;
    border: 1px solid #eeeeee;
    padding: 2px;
}

.Form__field .name {
    width: 140px;
    min-height: 30px;
    margin-right: 10px;
    padding-top: 5px;
    text-align: right;
    float: left;
}

.Form__field .value {
    width: 260px;
    min-height: 30px;
    float: left;
}

.Form__section {
    width: 440px;
    min-height: 20px;
    margin: 20px 0px 10px 0px;
    font-size: 14px;
    font-weight: bold;
}

.Form__field input[type="text"], .Form__field select {
    width: 260px;
    height: 30px;
    border: 1px solid #b1b1b1;
    padding: 4px 6px;
    font-size: 16px;
    color: #3d3d3d;
}

.Form__field.multi input[type="text"] {
    margin-bottom: 5px;
}

.Form__field input[type="checkbox"] {
    width: 15px;
    height: 15px;
}

.Form__field input.files {
    display: none;
}

.Form__field textarea {
    width: 260px;
    height: 80px;
    border: 1px solid #b1b1b1;
    padding: 4px 6px;
    font-size: 16px;
    color: #3d3d3d;
    resize: none;
}

.Form__field_add {
    display: block;
    font-size: 13px;
    color: #405b8b;
    text-decoration: underline;
    margin-left: 150px;
}

.Form__field_add:hover {
    text-decoration: none;
}

.Form__buttons .button {
    display: inline-block;
    min-width: 80px;
    min-height: 24px;
    padding: 8px 12px;
    font-size: 14px;
    color: #ffffff;
    background: #333333;
    text-align: center;
    text-decoration: none;
    margin: 4px;
    box-sizing: border-box;
}

.Form__buttons .button.send {
    margin-left: 150px;
    background: #405b8b;
}

.Form__buttons .button.clear {
    background: #aaaaaa;
}

.Form__item {
    max-width: 130px;
    height: 30px;
    padding: 7px 5px 0 10px;
    font-size: 14px;
    color: #ffffff;
    background: #405b8b;
    border-radius: 4px;
    flex-grow: 0;
    display: inline-block;
    float: left;
    white-space: nowrap;
    margin: 2px;
    box-sizing: border-box;
}

.Form__item_text {
    max-width: 104px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    box-sizing: border-box;
}

.Form__item_delete {
    width: 12px;
    height: 16px;
    margin-left: 4px;
    display: inline-block;
    cursor: pointer;
    box-sizing: border-box;
    color: #ffffff;
    text-align: center;
}

.Form__item_delete:after {
    width: 12px;
    height: 12px;
    position: absolute;
    content: "x";
    margin: -2px 0 0 -5px;
}

.Form__file {
    max-width: 260px;
    height: 30px;
    padding: 7px 5px 0 10px;
    font-size: 14px;
    color: #ffffff;
    background: #405b8b;
    border-radius: 4px;
    flex-grow: 0;
    display: inline-block;
    float: left;
    white-space: nowrap;
    margin: 2px;
    box-sizing: border-box;
}

.Form__file_text {
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    box-sizing: border-box;
}

.Form__file_delete {
    width: 12px;
    height: 16px;
    margin-left: 4px;
    display: inline-block;
    cursor: pointer;
    box-sizing: border-box;
    color: #ffffff;
    text-align: center;
}

.Form__file_delete:after {
    width: 12px;
    height: 12px;
    position: absolute;
    content: "x";
    margin: -2px 0 0 -5px;
}

.Form__data {
    display: none;
    width: 400px;
    min-height: 200px;
    position: absolute;
    z-index: 9;
    background: #ffffff;
    border: 1px solid #d8d8d8;
}

.Form__data_title {
    padding: 5px;
    font-size: 15px;
    font-weight: bold;
}

.Form__data_body {
    width: 100%;
    min-height: 140px;
    display: flex;
    background: #f5f5f5;
    border-top: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
}

.Form__data_menu {
    width: 150px;
    min-height: 140px;
    padding: 5px;
    border-right: 1px solid #e2e2e2;
}

.Form__data_menu a {
    display: block;
    font-size: 13px;
    color: #405b8b;
    text-decoration: underline;
    margin-bottom: 5px;
}

.Form__data_menu a.select {
    color: #555555;
    text-decoration: none;
}

.Form__data_menu a:hover {
    text-decoration: none;
}

.Form__data_content {
    width: 250px;
    min-height: 140px;
    padding: 5px;
}

.Form__data_content-field {
    width: 100%;
    padding: 3px;
    margin-bottom: 3px;
    font-size: 13px;
    color: #555555;
}

.Form__data_content-field:nth-child(2n) {
    background: #eaeaea;
}

.Form__data_content-field a {
    font-size: 12px;
    color: #36c1c0;
    text-decoration: none;
    margin-right: 5px;
}

.Form__data_content-field a:hover {
    text-decoration: underline;
}


.Form__data_nav {
    padding: 8px;
    position: relative;
}

.Form__data_nav a {
    font-size: 12px;
    color: #405b8b;
    text-decoration: none;
    position: absolute;
}

.Form__data_nav a:hover {
    text-decoration: underline;
}

.Form__data_nav a.prev {
    left: 5px;
}

.Form__data_nav a.next {
    right: 5px;
}