@charset "utf-8";

@import url("reset.css");

@import url(https://fonts.googleapis.com/css?family=Muli:300,400|Arvo:400,700);

@import url("common.css");

@import url("nav.css");

@import url("m.css");

.loader-100,
.alert-container-100 {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000000f2;
    z-index: 9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    border: 1px solid #6bb8e4;
}

.loader-100>.loaderx {
    position: absolute;
    /* top: 50%; */
    /* left: 50%; */
    width: 60px;
    height: 60px;
    /* margin: -30px 0 0 -30px; */
}

.loader-100>.loaderx:before,
.loader-100>.loaderx:after {
    position: absolute;
    display: inline-block;
    width: 60px;
    height: 60px;
    content: "";
    -webkit-animation: preloader-wave 1.6s linear infinite;
    animation: preloader-wave 1.6s linear infinite;
    border-radius: 50%;
    background: #bf9c60;
}

.loader-100>.loaderx:after {
    -webkit-animation-delay: -.8s;
    animation-delay: -.8s;
}

.alert-container-100>.btn-alert-ok {
    background: white;
    padding: .4em;
    color: white;
    font-weight: 800;
    cursor: pointer;
    text-align: center;
    margin-top: 10px;
    color: #EAC117;
}

.alert-container-100 .alert-item {
    font-size: 1.2em;
    display: block;
    color: white;
    font-weight: 500;
    padding: .4em;
    font-weight: bold;
}

.alert-container-100 .alert-item.success {
    color: rgb(4, 155, 29) !important
}

.alert-container-100 .alert-item.danger {
    color: rgb(167, 10, 10) !important;
}

.alert-container-100>.btn-alert-ok {
    background: #252525;
    padding: 1em;
    color: white !important;
    font-weight: 800;
    cursor: pointer;
    min-width: 50%;
    max-width: 100%;
}

.alert-container-100>.btn-alert-ok a {
    color: inherit !important
}

form {
    position: relative;
}