.bergnet{
    background-color: #159A34;
}

html {
    position: relative;
    min-height: 100%;
}

#page-content {
    flex: 1 0 auto;
}

#sticky-footer {
    width: 100%;
    position: absolute;
    bottom: 0;
    background-color: #159A34;
}

/* Other Classes for Page Styling */

body {
    background: #FFFFFF;
    margin-bottom: 24px; /* Do not hide stuff behind the sticky footer */
}

.checkbox-teal [type="checkbox"]:checked+label:before {
    border-color: transparent #009688 #009688 transparent;
}

.checkbox-warning-filled [type="checkbox"][class*='filled-in']:checked+label:after {
    border-color: #FF8800;
    background-color: #FF8800;
}

.checkbox-rounded [type="checkbox"][class*='filled-in']+label:after {
    border-radius: 50%;
}

.checkbox-living-coral-filled [type="checkbox"][class*='filled-in']:checked+label:after {
    border-color: #FF6F61;
    background-color: #FF6F61;
}

.checkbox-cerulean-blue-filled [type="checkbox"][class*='filled-in']:checked+label:after {
    border-color: #92aad0;
    background-color: #92aad0;
}

.button-trash {
    content: "";
    width: 35px;
    height: 35px;
    display: inline-block;
    margin-right: 5px;
    vertical-align: text-top;
    background-color: transparent;
    background-position : center center;
    background-repeat:no-repeat;
    background-image : url(../images/icon-26-trash-can.png);
}
/* PW GEN */
.info {
    font-size: 0.9rem;
    text-align: left;
}

.title-section {
    background: #159a34;
    padding: 2px 10px;
    color: white;
}

.inner-section {
    padding: 20px;
}
.wrapper {
    overflow: hidden;
    margin: auto;
    width: 90%;
    max-width: 380px;
    background: white;
    border-radius: 5px;
    box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-flow: column wrap;
}
.wrapper .password-section {
    position: relative;
    border: 2px solid lightgray;
    color: gray;
    margin-top: 20px;
    padding: 2px 2px 2px 8px;
    border-radius: 5px;
    text-align: left;
    display: flex;
    justify-content: space-between;
}
.wrapper .password-section .alert {
    position: absolute;
    padding: 0 5px;
    border-radius: 2px;
    height: 89%;
    left: 2px;
    top: -100%;
    width: 96%;
    text-align: center;
    color: #333;
    opacity: 0;
    transition: all 0.5s ease;
}
.wrapper .password-section .alert.success {
    background: rgb(29,161,242, 0.9);
    opacity: 1;
}
.wrapper .password-section .alert.fail {
    background: rgb(230,0,35, 0.9);
    color: white;
    opacity: 1;
}
.wrapper .password-section .copy {
    height: 100%;
    background: #008ac5;
    border: 0;
    color: white;
    border-radius: 2px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.wrapper .password-section .copy:hover {
    background: #13d440;
}
.wrapper .controls {
    text-align: left;
    display: flex;
    flex-flow: column wrap;
}
.wrapper .controls .control {
    padding: 3px;
    border-bottom: 1px solid lightgray;
    width: 100%;
    margin: 2px;
}
.wrapper .controls .generate {
    width: 100%;
    border: 0;
    color: white;
    background: #159a34;
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
    transition: all 0.3s ease;
}
.wrapper .controls .generate:hover {
    background: #13d440;
}
#length-box {
    width: 100%;
}
#length-box input {
    width: 100%;
}

label.check-label {
    position: relative;
}
