#setting-menus-container {
    font-size: 0;
    width: 1400px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    border-radius: 20px;
    padding: 50px 80px;
}
.setting-menu-item-container {
    width: 25%;
    display: inline-block;
    height: 300px;
    padding: 15px;
    border-radius: 10px;
    vertical-align: middle;
}
.setting-menu-item-wrapper {
    background: #111;
    width: 100%;
    height: 100%;
    transition: all 0.1s;
    border-radius: 10px;
    overflow:hidden;
}
.setting-menu-item-wrapper.active {
    transform: scale(1.05);
    /*background: #21AAC4;*/
}
.setting-menu-item-icon-container {
    font-size: 85px;
    color: #fff;
    text-align: center;
    margin: 20px 0;
}
.setting-menu-item-text {
    text-align: center;
    font-size: 25px;
    color: #fff;
    margin-top: -5px;
    font-weight: normal;
    padding:0 10px;
}

.parent-control-modal-button{
    border-radius: 35px !important;
    width: 250px;
    padding: 10px !important;
}

#change-lock-modal-container {
    margin-bottom: 20px;
}
#change-lock-modal .modal-btn-1 {
    min-width: 200px;
    margin-left: 10px;
    padding: 10px !important;
}
.change-lock-modal-option {
    background: #111;
    padding: 15px 25px;
}
#change-lock-modal-container .change-lock-modal-option{
    border-bottom: 2px solid #666;
}
#change-lock-modal-container .change-lock-modal-option:last-of-type{
    border-bottom: none;
}
.change-lock-modal-option .magic-radio + label {
    margin-bottom: 0 !important;
    color: #fff;
}
.change-lock-modal-option .magic-radio + label:before {
    border: 3px solid #ddd;
}
.change-lock-modal-option.active .magic-radio + label:before {
    border: 4px solid #466fe4;
}
.change-lock-modal-option .magic-radio:checked + label:before {
    border: 4px solid #ffa500 !important;
}
#change-lock-message {
    text-align: left;
    font-size: 25px;
    color: #fff;
    margin-top: -10px;
    overflow: hidden;
    height: 0;
    transition: height 0.2s;
}
#change-lock-message.expanded {
    height: 37px;
}