/*
 * @package   Awesome Support: Private Credentials
 * @author    Robert W. Kramer III for Awesome Support <support@getawesomesupport.com>
 * @license   GPL-2.0+
 * @link      https://getawesomesupport.com
 * @copyright 2016. Awesome Support
 *
 */


/**
* Private Credentials modal window
*/
.as-pc-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(238, 238, 238);
}

/**
* Private Credentials modal close icon
*/
.as-pc-modal-close-icon {
    font-size: 30px;
    position: absolute;
    text-decoration: none;
    color: rgb(39, 39, 39);
    right: 20px;
    top: 10px;
    font-family: sans-serif;
}


/**
* Private Credentials modal content
*/
.as-pc-modal-content {
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 50px;
    max-width: 40%;
    height: 100%;
    width: 100%;
    padding: 30px;
    overflow-y: auto;
}

.as-pc-modal-content h3 {
    text-align: center;
}

/**
* Private Credentials buttons placeholder
*/
.as-pc-buttons {
    border-top: 1px solid rgb(207, 207, 207) !important;
    padding: 20px 0 60px 0;
    margin-top: 20px;
}


/**
* Private Credentials button style
*/
.wpas-pc-btn {
    color: rgb(61, 61, 61);
    background-color: rgb(214, 214, 214);
    border: 1px solid rgb(207, 207, 207) !important;
    text-decoration: none;
    font-size: 13px !important;
    border-radius: 4px; 
    padding: 4px 12px;
    margin-right: 10px;
    cursor: pointer;
    display: inline-block;
}

.wpas-pc-btn.large {
    color: rgb(61, 61, 61);
    background-color: rgb(245, 245, 245);
    text-decoration: none;
    font-size: 15px !important;
    border-radius: none; 
    padding: 6px 14px;
    margin-right: 10px;
}

.wpas-pc-btn:hover {
    text-decoration: none;
    background-color: rgb(207, 207, 207);
    color: rgb(61, 61, 61);
}

.wpas-pc-btn.large:hover {
    background-color: rgb(255, 255, 255);
}



/**
* Private Credentials table style
*/
.as-pc-table {
    width: 100%;
    border: 0 !important;
    border-top: 1px solid rgb(207, 207, 207) !important;
    margin-top: 15px;
}

.as-pc-system {
    font-size: 15px !important;
    font-weight: bold;
    color: rgb(99, 99, 99);
}

.as-pc-table tr:first-child td {
    padding-top: 20px !important;
}

.as-pc-table td {
    width: 25%;
    padding: 5px;
    font-size: 13px;
    color: rgb(99, 99, 99);
    vertical-align: top;
}

.as-pc-table td strong {
    display: block;
    font-weight: 600;

}


.wpas-overflow-hidden {
    overflow: hidden;
}


.as-pc-modal-status {
    margin-top: 10px;
    margin-bottom: 10px;
}


.as-pc-table input[type="text"], .as-pc-table textarea {
    width: 100% !important;
    font-size: 15px;
    border-radius: 4px;
    border: 1px solid rgb(207, 207, 207);
}

.as-pc-table input[type="text"] {
    height: 36px;
}

.as-pc-table textarea {
    height: 70px;
}

/**
* Align
*/
.wpas-text-center {
    text-align: center;
}

/**
* Form validation error
*/
.wpas-input-error {
    border: 2px solid rgb(255, 0, 0) !important;
}


/**
* Responsive
*/
@media only screen and (max-width: 640px) {

    .as-pc-modal-content {
        max-width: 90%;
        padding: 20px 0;
    }

    .as-pc-table {
        width: 100%;
    }

    .as-pc-table td {
        display: block;
        padding: 5px;
        width: 90% !important;
    }
}


