#junotoys_modal_bg {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 100000;
}
.junotoys_message {
    display: block;
    position: absolute;
    max-width: 800px;
    min-width: 280px;
    overflow: hidden;
    border-radius: 4px;
    border: 2px solid #e5e5e5;
    background-color: #ffffff;
    color: #4c4c4c;
    opacity: 0;
    top: 0;
    left: 50%;
    padding: 12px;
	box-sizing: border-box;
    line-height: 1.4em;
    z-index: 100001;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
.junotoys_message .junotoys_message_close {
    display: block;
    position: absolute;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    right: 6px;
    top: 4px;
    cursor: pointer;
    color: #4c4c4c;
}
.junotoys_message .junotoys_message_icon {
    float: left;
    display: block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border: 2px solid #c9c9c9;
    border-radius: 50%;
    margin: 0 10px 6px 0;
    font-size: 15px;
    font-weight: 400;
    color: #c9c9c9;
}
.junotoys_message .junotoys_message_icon:before {
    padding: 0;
    margin: 0;
}
.junotoys_message .junotoys_message_header {
    color: #4c4c4c;
    padding: 0 3em 0 0;
    font-size: 1.3em;
    line-height: 1.3em;
    font-weight: bold;
    margin-top: 0.5em;
}
.junotoys_message:not(.junotoys_message_dialog) .junotoys_message_body {
    padding: 0 0 0 30px;
    line-height: 24px;
}
.junotoys_message_warning {
    border-color: #d7a9b1;
    background-color: #ffcdde;
    color: #a63a4b;
}
.junotoys_message_warning .junotoys_message_close {
    color: #a63a4b;
}
.junotoys_message_warning .junotoys_message_icon {
    border-color: #a63a4b;
    color: #a63a4b;
}
.junotoys_message_warning .junotoys_message_header {
    color: #a63a4b;
}
.junotoys_message_success {
    border-color: #b3e7a8;
    background-color: #d8ffd0;
    color: #517d48;
}
.junotoys_message_success .junotoys_message_close {
    color: #517d48;
}
.junotoys_message_success .junotoys_message_icon {
    border-color: #517d48;
    color: #517d48;
}
.junotoys_message_success .junotoys_message_icon {
    line-height: 34px;
}
.junotoys_message_success .junotoys_message_header {
    color: #517d48;
}
.junotoys_message_info {
    border-color: #9ecade;
    background-color: #ebf7fe;
    color: #4cb2e1;
}
.junotoys_message_info .junotoys_message_close {
    color: #4cb2e1;
}
.junotoys_message_info .junotoys_message_icon {
    border-color: #4cb2e1;
    color: #4cb2e1;
}
.junotoys_message_info .junotoys_message_icon {
    line-height: 34px;
}
.junotoys_message_info .junotoys_message_header {
    color: #4cb2e1;
}
.junotoys_message_dialog .junotoys_message_icon {
    line-height: 36px;
}
.junotoys_message_dialog .junotoys_message_buttons {
    margin-top: 20px;
}
.junotoys_message_dialog .junotoys_message_button {
    display: inline-block;
    padding: 0 12px;
    margin-right: 6px;
    min-width: 60px;
    height: 30px;
    line-height: 30px;
    background-color: #4b4b4b;
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
    text-align: center;
    font-weight: bold;
}
.junotoys_message_dialog .junotoys_message_button:hover {
    background-color: #4cb2e1;
}