.arcticmodal-overlay,
.arcticmodal-container {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

.arcticmodal-container {
    overflow: auto;
    margin: 0;
    padding: 0;
    border: 0;
    border-collapse: collapse;
}

*:first-child + html .arcticmodal-container {
    height: 100%
}

.arcticmodal-container_i {
    height: 100%;
    margin: 0 auto;
}

.arcticmodal-container_i2 {
    padding: 24px;
    margin: 0;
    border: 0;
    vertical-align: middle;
}

.arcticmodal-error {
    padding: 20px;
    border-radius: 10px;
    background: #000;
    color: #fff;
}

.arcticmodal-loading {
    width: 80px;
    height: 80px;
    border-radius: 10px;
}

.box-modal {
    position: relative;
    width: 500px;
    padding: 16px;
    background: #3c3f41;
    color: #bbb;
    font: 14px/18px Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
    box-shadow: 0 0 0 6px rgba(153, 153, 153, .3);
    border-radius: 6px;
}

.box-modal_close {
    position: absolute;
    right: 10px;
    top: 6px;
    font-size: 11px;
    line-height: 15px;
    color: #999;
    cursor: pointer;
}

.box-modal_close:hover {
    color: #6897bb;
}

.close-modal {
    position: absolute;
    top: 33px;
    right: 25px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.close-modal:before,
.close-modal:after {
    content: "";
    position: absolute;
    top: 10px;
    left: -2px;
    width: 26px;
    height: 3px;
    background: #4f5255;
}

.close-modal:before {
    webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.close-modal:after {
    webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}