/*------------------------------------------------------------------------
# AA Password Generator
# ------------------------------------------------------------------------
# author    AA Extensions https://aaextensions.com
# Copyright (C) 2018 AA Extensions. All Rights Reserved.
# @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
# Websites: https://aaextensions.com
-------------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');

* {
    box-sizing: border-box;
}

.pg-container p {
    margin: 5px 0;
}

.pg-container h2 {
    margin: 10px 0 20px;
    text-align: center;
}

.pg-container input[type=checkbox] {
    margin-right: 0;
}

.pg-container {
    box-shadow: 0px 2px 10px rgba(255, 255, 255, 0.2);
    padding: 20px;
    width: 350px;
    max-width: 100%;
    margin: 0 auto;
}

.pg-result-container {
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    font-size: 18px;
    letter-spacing: 1px;
    padding: 12px 10px;
    height: 50px;
    width: 100%;
}

.pg-result-container #pg-result {
    word-wrap: break-word;
    max-width: calc(100% - 40px);
}

.pg-result-container .pg-btn {
    font-size: 20px;
    position: absolute;
    top: 5px;
    right: 5px;
    height: 40px;
    width: 40px;
}

.pg-container .pg-btn {
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 8px 12px;
}

.pg-container .pg-btn-large {
    display: block;
    width: 100%;
}

.pg-setting {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

@media screen and (max-width: 400px) {
    .pg-result-container {
        font-size: 14px;
    }
}

