/* hide captcha input in the form */
form #age
{
    display:none;
}


/* cursor link without href */
a{
    cursor:pointer;
}


/* hide search filter */
.ak-search-hide{
    display:none !important;
}


/* fix bug upload ios APP */
.form-group{
    position: relative;
    /*overflow: hidden;*/
}
.akfakeinput{
    display:block;
    /*font-size: 100px;*/
    position:absolute;
    left:0;
    top:0;
    right:0;
    bottom:0;
    opacity:0;
}



/* constructor list
li.is_folder
{
    background-color:#368b2a;
}

li.is_folder a
{
    color:white !important;
    font-weight:bold;
}


.list_depot_name_wrap li
{
    display: block;
    padding: 5px 15px;
}

.list_depot_name_wrap li a
{
    color:#27641E;
}
.list_depot_name_wrap li:hover a
{
    color:#27641E !important;
}


.list_depot_name_wrap li:hover, .list_depot_name_wrap li.active
{
    background: rgba(39, 100, 30, 0.3);
}

*/




/*-------------( fix bug Ui Popup )-------------*/
.ui_popup_wrap
{
    z-index:999999 !important;
}



/*-------------( display cursor pointer )-------------*/
.pointer
{
    cursor:pointer !important;
}



/*-------------( disabled text)-------------*/
.disable-text
{
    user-select: none;
   -webkit-user-select: none;
   -khtml-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
}

/** Toggle - switch **/
:root {
    --red: #f03c23;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

.toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toggle-switch {
    display: inline-block;
    background: #ccc;
    border-radius: 16px;
    width: 58px;
    height: 32px;
    position: relative;
    vertical-align: middle;
    transition: background 0.25s;
}

.toggle-switch:before {
    content: "";
    display: block;
    background: linear-gradient(to bottom, #fff 0%,#eee 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.25);
    width: 24px;
    height: 24px;
    position: absolute;
    top: 4px;
    left: 4px;
    transition: left 0.25s;
}

.toggle:hover .toggle-switch:before {
    background: linear-gradient(to bottom, #fff 0%,#fff 100%);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.5);
}

.toggle-checkbox {
    position: absolute;
    visibility: hidden;
}

.toggle-checkbox:checked + .toggle-switch {
    background: var(--red);
}

.toggle-checkbox:checked + .toggle-switch:before {
    left: 30px;
}

.toggle-label {
    font-size: 16px;
    color: #333;
}