.full_height_container {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.layout_full_height_container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* error container */

.error_container {
    min-width: 280px;
    max-width: 350px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.error_container .positive,
.error_container .negative {
    width: 100%;
    margin-bottom: 20px;
    position:relative;
    overflow: hidden;
    height: 100%;
    min-height:90px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.error_container .negative {
    background-color: #f4f5f9;
    -webkit-box-shadow: 5px 5px 15px #ff7473;
    -moz-box-shadow: 5px 5px 15px #ff7473;
    box-shadow: 5px 5px 15px #ff7473;
}

.error_container .positive {
    background-color: #f4f5f9;
    -webkit-box-shadow: 5px 5px 15px #8FBC8F;
    -moz-box-shadow: 5px 5px 15px #8FBC8F;
    box-shadow: 5px 5px 15px #8FBC8F;
}

.error_container .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    font-size: 50px;
    text-align: center;
    text-shadow: 1px 1px rgba(0,0,0,0.12);
    color: #fff;
    position: absolute;
    margin-right: 4px;
    top:0;
    bottom:0;
    left:0;
}

.error_container .message_container {
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.error_container .negative > .icon {
    background-color: #f1404b;
    border: 1px solid #f1404b;
    background-image: -webkit-radial-gradient(ellipse farthest-corner at center bottom, #ff7473 0%, #f1404b 50%);
    background-image: radial-gradient(ellipse farthest-corner at center bottom, #ff7473 0%, #f1404b 50%);
}

.error_container .positive > .icon {
    background-color: #3ac569;
    border: 1px solid #3ac569;
    background-image: -webkit-radial-gradient(ellipse farthest-corner at center bottom, #88dba3 0%, #3ac569 50%);
    background-image: radial-gradient(ellipse farthest-corner at center bottom, #88dba3 0%, #3ac569 50%);
}

.error_container .message {
    font-size: 15px;
    position: relative;
    padding: 3px;
    margin-left: 90px;
    overflow: hidden;
}

.error_container .sub_message {
    font-size: 13px;
    padding:3px;
    margin: 2px;
    margin-left: 90px;
}



.error_container .button {
    font-size: 15px;
    line-height: 28px;
    padding: 0 8px;
    float: left;
    margin: 5px 10px;

    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 1px 1px 3px rgba(0,0,0,0.12);
    -moz-box-shadow: 1px 1px 3px rgba(0,0,0,0.12);
    box-shadow: 1px 1px 3px rgba(0,0,0,0.12);
    z-index: 100;
    margin-left: 100px;
}


.error_container .message > span {
    font-weight: 800;
}

.error_container .negative .message,
.error_container .negative .sub_message {
    color: #000000;
}

.error_container .positive .message,
.error_container .positive .sub_message {
    color: #000000;
}


.error_container .no {
    color: #f1404b;
    border: 1px solid #f1404b;
}

.error_container .no:hover {
    color: #fff;
    background-color: #f1404b;
    border: 1px solid #f1404b;
}


.error_container .ok {
    color: #3ac569;
    border: 1px solid #3ac569;
}

.error_container .ok:hover {
    color: #fff;
    background-color: #3ac569;
    border: 1px solid #3ac569;
}
