@charset "UTF-8";

.uialert {
    width:80%;
    background: #fff;
    color: rgba(46,44,112,1.0);;
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 100000;
    visibility: hidden;
    font-family: 'GothamMedium';
    text-align: center;
    font-size:18px;
    z-index: 100000;
    box-shadow: 0px 0px 15px rgba(36, 36, 36, 0.4);
    border-radius: 20px;
    border: 2px solid rgba(46,44,112,1.0);;
}
.uialert.show{
    visibility: visible;
}
.uialert .uialert_inner{
    padding:2em 2em 1em 2em;
}

.uialert .uialert_content {
}

.uialert .uialert_inner .uialert_button_container{
    margin-top:2em;
}
.uialert button.action {
    color: #74716D;
    text-decoration: none;
    outline: none;
    width:80%;
    display:block;
    margin:8px auto;
}

.uialert button.action {
    padding: 1em 2em;
  /*  border-radius:.4em;*/
    outline: none;
    font-weight: 600;
    border: none;
    color: #fff;
    background: #c94e50;
    font-size: 16px;
    font-family: 'GothamMedium';
    border-radius: 20px;
    border: 2px solid #ffffff;
}

.uialert button.action span {
/*  background: -webkit-linear-gradient(60deg, #B99A4C, #E0C97C);
    background: linear-gradient(60deg,  #B99A4C, #E0C97C);
    -webkit-background-clip: text;
      -moz-background-clip: text;
      -webkit-text-fill-color: transparent;
      -moz-text-fill-color: transparent;*/
}

.uialert_mask{
    background:#333333;
    width:100%;
    height:100%;
    position: fixed;
    left:0;
    top:0;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease;
}
.uialert_mask.show{
    visibility: visible;
    opacity: 0.7;
}


.uialert.dialog-open,
.uialert.dialog-close {
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.uialert.dialog-open {
    -webkit-animation-name: anim-open;
    animation-name: anim-open;
    -webkit-animation-timing-function: cubic-bezier(0.6,0,0.4,1);
    animation-timing-function: cubic-bezier(0.6,0,0.4,1);
}

.uialert.dialog-close{
    -webkit-animation-name: anim-close;
    animation-name: anim-close;
}

@-webkit-keyframes anim-open {
    0% { opacity: 0; -webkit-transform: scale3d(0, 0, 1); }
    100% { opacity: 1; -webkit-transform: scale3d(1, 1, 1); }
}

@keyframes anim-open {
    0% { opacity: 0; -webkit-transform: scale3d(0, 0, 1); transform: scale3d(0, 0, 1); }
    100% { opacity: 1; -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); }
}

@-webkit-keyframes anim-close {
    0% { opacity: 1; }
    100% { opacity: 0; -webkit-transform: scale3d(0.5, 0.5, 1); }
}

@keyframes anim-close {
    0% { opacity: 1; }
    100% { opacity: 0; -webkit-transform: scale3d(0.5, 0.5, 1); transform: scale3d(0.5, 0.5, 1); }
}
