/******************************************
 * UIKIT 
 ******************************************/
/* Form */
form label {
    color: #333333;
}
.uk-form-custom {
    width: 100%;
}
.uk-input:disabled,
.uk-select:disabled,
.uk-textarea:disabled,
.uk-input,
.uk-textarea {
    background-color: rgba(255, 255, 255, .5);
    border: 1px solid #ffffff;
    border-radius: 5px;
    margin-top: 5px;
    width: 100%;
    color: #333;
}
.uk-input::placeholder {
    color: #333;
}
.uk-input:focus,
.uk-select:focus,
.uk-textarea:focus {
    background-color: rgba(255, 255, 255, .5);
    border: 1px solid #2c77c8;
    border-radius: 5px;
}
.uk-table th,
.uk-table td {
    color: #333;
}
.uk-table-divider>:first-child>tr:not(:first-child),
.uk-table-divider>:not(:first-child)>tr,
.uk-table-divider>tr:not(:first-child) {
    border-top: 1px solid #333;
}
.uk-icon {
    position: relative;
    top: -2px;
    margin-right: 5px;
}
/******************************************
 * Login
 ******************************************/
.glass-bg {
    background-color: rgba(255, 255, 255, .5);
    border-radius: 15px;
}
/******************************************
 * Common
 ******************************************/
html {
    color: #333;
}
.content-wrap {
    height: calc(100vh - 70px - 40px);
    overflow: scroll;
    margin-bottom: 40px;
    padding-bottom: 10px;
}
.content-block-wrap {
    height: calc(100vh - (110px + 41.59px + 40px));
    overflow: scroll;
}
.flex {
    display: flex;
}
.min-height-100 {
    min-height: 100vh;
}
.absolute-bottom {
    position: absolute;
    bottom: 0;
}

.bg-glass {
    backdrop-filter: blur(300px);
}

#sidebar {
    min-height: calc(100vh - (30px * 2));
    width: 150px;
    padding: 30px;
}
.sidemenu-block .uk-subnav {
    margin-bottom: 0;
}
.sidemenu-block .uk-subnav-pill > .uk-active > a,
.sidemenu-block .uk-subnav-pill > * > a:hover {
    background-color: transparent;
}
.sidemenu-block .uk-subnav-pill > * > :first-child {
    padding: 0;
    margin: 5px 10px;
}
.sidemenu-link {
    width: 70px;
    height: 70px;
    margin: auto;
    text-align: center;
    padding: 16px;
    border-radius: 25px;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    background-color: rgba(255, 255, 255, .3);
    transition: background-color .3s linear;
}
.sidemenu-link:hover {
    background-color: rgba(255, 255 ,255, .6);
    transition: background-color .1s linear;
}
.sidemenu-block a:hover {
    text-decoration: none;
}
.sidemenu-block a:last-child .sidemenu-link {
    margin-bottom: 0;
}
.sidemenu-link img {
    width: 30px;
    margin: auto;
}
.sidemenu-link p {
    margin: 5px 0 0 0;
    color: #2c3149;
}
.uk-active .sidemenu-link {
    background-color: #ffffff;
}

.sidemenu-link.active p {
    color: #2c3149;
}

.logo {
    text-align: center;
    font-size: 30px;
    color: #333;
    width: 120px;
    margin: auto;
    margin-bottom: 13px;
}
.link-button {
    background-color: #ffffff;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    box-shadow: 3px 3px #000000;
    transition: box-shadow .1s linear;
    border: none;
    cursor: pointer;
}
.link-button:hover {
    box-shadow: 0 0 #000000;
    transition: box-shadow .1s linear;
}
.bg-white-transparent {
    background-color: rgba(255, 255, 255, .3);
}
/******************************************
 * Form
 ******************************************/
input[type=radio],
input[type=checkbox] {
    display: none;
}

.radio,
.checkbox {
    box-sizing: border-box;
    -webkit-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
    position: relative;
    display: inline-block;
    margin: 0 20px 8px 0;
    padding: 12px 12px 12px 42px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, .5);
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
}
input[type=radio] .radio {
    border: 1px solid #0085b3;
}

.radio:hover,
.checkbox:hover {
    background-color: #cdeef9;
}

.radio:hover:after,
.checkbox:hover:after {
    border-color: #0085b3;
}

.radio:after,
.checkbox:after {
    -webkit-transition: border-color 0.2s linear;
    transition: border-color 0.2s linear;
    position: absolute;
    top: 50%;
    left: 15px;
    display: block;
    margin-top: -10px;
    width: 16px;
    height: 16px;
    /* border: 2px solid #bbb; */
    border-radius: 6px;
    content: '';
}

.radio:before {
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
    position: absolute;
    top: 50%;
    left: 20px;
    display: block;
    margin-top: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ffffff;
    content: '';
    /* opacity: 0; */
}

input[type=radio]:checked+.radio:before {
    background-color: #0085b3;
    /* opacity: 1; */
}

.checkbox:before {
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
    position: absolute;
    top: 50%;
    left: 21px;
    display: block;
    margin-top: -7px;
    width: 5px;
    height: 9px;
    border-right: 3px solid #0085b3;
    border-bottom: 3px solid #0085b3;
    content: '';
    opacity: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

input[type=checkbox]:checked+.checkbox:before {
    opacity: 1;
}