.pop-up-panel {
    position: fixed;
    z-index: 10000;
    left:0;
    top:0;
    height: 0%;
    width: 100%;
    overflow: auto;
    background-color: rgba(35, 48, 58, 0.35);
    opacity: 0;
    transition: opacity 250ms ease-out;
    /* transition time must also be set in popup-panel-animator.js */
}

.pop-up-panel.active {
    height: 100% !important;
    opacity: 1;
    transition: opacity 250ms ease-out;
    /* transition time must also be set in popup-panel-animator.js */
}

.pop-up-window {
    background-color: rgba(21, 36, 47, .85);
    margin: 15% auto;
    border-radius: 5px;
    width: 50%;
    min-width: 512px;
    position: relative;
}

.pop-up-header {
    padding: 12px 16px;
    background-color: rgba(255, 233, 199, 0.7);
    color: rgb(21, 25, 32);
    font-weight: bold;
    border-radius: 5px;
}

.close-window-x {
    color: rgb(21, 25, 32);
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-top:-7px;
}

.close-window-x:hover,
.close-window-x:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.pop-up-buttons {
    display: flex;
    padding: 16px;
    text-align: center;
    justify-content: space-evenly;
}

.pop-up-button {
    width: 18%;
    height: 18%;
}

.pop-up-labels {
    display: flex;
    padding: 0 16px 16px;
    text-align: center;
    justify-content: space-evenly;
}

.pop-up-label {
    width: 18%;
    margin-top: -10px;
    margin-bottom: 10px;
}

.log-in-fields {
    width: 85%;
    margin: auto;
    padding: 15px 0px 0px;
}

.log-in-field {
    display: flex;
    padding: 2px 0px;
    justify-content: space-between;
}

.log-in-field-label {
    display: flex;
    background-color: rgba(102, 103, 98, 1);
    border: none;
    border-radius: 5px;
    height: 36px;
    width: 25%;
    color: white;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-align: center;
}

.log-in-field-text-box {
    background-color: rgba(102, 103, 98, 1);
    border: none;
    border-radius: 5px;
    height: 20px;
    color: white;
    padding: 8px;
    width: 70%;
}

.imk-save-field {
    width: 80%;
    color: white;
    margin: 20px auto 5px;
    display: flex;
    justify-content: center;
}

.imk-save-field-label {
    font-weight: bold;
    margin: 2.5px 15px 2.5px 2.5px;
}

.imk-save-public-button {
    margin: 4px 4px 4px 50px;
}