.sat-password-generator {
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    /* width: 310px; */
    width: 23%;
    max-width: 100%;
    top: 41%;
    z-index: 0;
    position: absolute;
    border: none;
    border-radius: 5px;
    text-align: center;
}

.sat-password-generator.hide {
    display: none;
}

.sat-result-container {
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    font-size: 18px;
    letter-spacing: 1px;
    height: 50px;
}

.sat-result-container span {
    word-wrap: break-word;
    max-width: calc(100% - 40px);
    font-size: 12px;
}

h4 {
    color: #000 !important;
}

.sat-result-container>.sat-btn {
    /* font-size: 16px; */
    position: relative;
    right: 5px;
    height: 30px;
    width: 30px;
    background: white;
}

.sat-result-container>.sat-btn1 {
    position: relative;
    right: 5px;
    height: 30px;
    width: 30px;
    background: white;
}

.sat-btn {
    border: none;
    color: #000;
    cursor: pointer;
    font-size: 16px;
    padding: 6px 0px;
    /* background-color: #3B3B98; */
}

.sat-btn1 {
    border: none;
    color: #000;
    cursor: pointer;
    font-size: 16px;
    padding: 6px 0px;
    /* background-color: #3B3B98; */
}

.checkbox-setting {
    display: flex;
    justify-content: space-between;
    margin-top: 5%;
}

.sat-setting {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px;
}

.sat-setting~input {}

.sat-indicators {
    display: flex;
    justify-content: space-between;
}

.sat-indicators span {
    margin-top: 5px;
    background-color: #d3cfcf;
    width: calc(25% - 2px);
    padding: 2px;
}

/*------------------------------------ password indicator ------------------------ */

form .indicator {
    height: 5px;
    margin-top: 5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    display: none;
}

form .indicator span {
    position: relative;
    height: 100%;
    width: 100%;
    background: lightgrey;
    border-radius: 5px;
    transition: all 40ms linear;
}

form .indicator span:nth-child(2) {
    margin: 0 3px;
}

form .indicator span:nth-child(3) {
    margin: 0 3px;
}

form .indicator span.active:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 5px;
}

.indicator span.weak:before {
    background-color: #f00;
}

.indicator span.medium:before {
    background-color: #ffbf00;
}

.indicator span.strong:before {
    background-color: #ffbf00;
}

.indicator span.verystrong::before {
    background-color: #23ad5c;
}

@media only screen and (max-width:600px) {
    .sat-password-generator {
        left: 27% !important;
        width: 60% !important;
    }
}

@media only screen and (min-width:602px) and (max-width:950px) {
    .sat-password-generator {
        left: 25% !important;
        width: 50% !important;
    }
}

@media only screen and (min-width:952px) and (max-width:1024px) {
    .sat-password-generator {
        left: 30% !important;
        width: 30% !important;    
    }
}