#popup_container {
    font-family: 'Roboto Regular',Helvetica,'Droid Sans',Tahoma,Geneva,sans-serif;
    font-size: 14px;
    min-width: 350px; /* Dialog will be no smaller than this */
    max-width: 900px; /* Dialog will wrap after this width */
    background: #e0eaf6;
    color: #000;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin: 0;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
}

#popup_title {
    text-transform: uppercase;
    font-family: 'Roboto Regular',Helvetica,'Droid Sans',Tahoma,Geneva,sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    line-height: 32px;
    color: white;
    background-color: #71AEE0;
    cursor: default;
    margin: 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

#popup_content {
    background: url(images/info.gif) no-repeat left top;
    padding-left: 15px;
    padding-right: 5px;
    margin: 20px;
}

    #popup_content.alert {
        background-image: url(img/advertencia.png);
    }

    #popup_content.confirm {
        background-image: url(img/pregunta.png);
    }

    #popup_content.yesNoCancel {
        background-image: url(img/pregunta.png);
    }

    #popup_content.info {
        background-image: url(img/info.png);
    }

    #popup_content.prompt {
        background-image: url(img/prompt.png);
    }

    #popup_content.bookmark {
        background-image: url(img/favoritos.png);
    }

    #popup_content.homepage {
        background-image: url(img/home.png);
    }

    #popup_content.wait {
        font-family: 'Roboto Regular',Helvetica,'Droid Sans',Tahoma,Geneva,sans-serif;
        font-size: 22px;
        padding-left: 5px;
        margin: 15px 25px 10px 5px;
        background-image: url(img/wait.gif);
    }

#popup_message {
    min-height: 40px;
    padding-left: 48px;
    padding-top: 5px;
    padding-bottom: 8px;
}

    #popup_message.wait {
        padding-top: 8px !important;
    }

    #popup_message.promptHomeFav {
        min-height: 0;
    }

#popup_panel {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    align-content: center;
    text-align: center;
    margin-top: 0.7em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 15px;
}

#popup_prompt {
    margin-top: -0.5em;
    margin-left: 3.5em;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 5px;
    border-radius: 5px;
    font-family: 'Roboto Regular', Helvetica, 'Droid Sans', Tahoma, Geneva, sans-serif;
    border: 0px;
}

.button input[type=button] {
    font-family: 'Roboto Regular',Helvetica,'Droid Sans',Tahoma,Geneva,sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    height: 35px;
    border: 0px;
    cursor: pointer;
    color: white;
    border-radius: 5px;
    padding: 5px 10px 5px 10px;
    background-color: #3d94f6;
    min-width: 80px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .button input[type=button]:hover {
        transform: scale(1.05);
        border: 0px;
    }
    .button input[type=button]:focus-within {
        transform: scale(1.05);
        border: 0px;
    }

.buttonOK input[type=button] {
}

    .buttonOK input[type=button]:hover {
        background-color: #3985dc;
    }
    .buttonOK input[type=button]:focus-within {
        transform: scale(1.05);
        border: 0px;
    }
    .buttonOK input[type=button]:focus {
        transform: scale(1.05);
        border: 0px;
    }

.buttonCancel input[type=button] {
    margin-left: 10px;
    background-color: crimson;
}

    .buttonCancel input[type=button]:hover {
        margin-left: 10px;
        background-color: #b01a38;
    }
    .buttonCancel input[type=button]:focus-within {
        transform: scale(1.05);
        border: 0px;
    }

.buttonNo input[type=button] {
    margin-left: 10px;
}

    .buttonNo input[type=button]:hover {
        background-color: #3985dc;
    }
    .buttonNo input[type=button]:focus-within {
        transform: scale(1.05);
        border: 0px;
    }
