body {
    font-family: Helvetica;
    font-size: 15px;
    line-height: 1.3;
    color: #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: 0
}

#bodyContent,#popcontent {
    position: absolute;
    top: 73px;
    bottom: 0;
    right: 0;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #fff;
    color: #000;
    -webkit-transition: left .3s;
    -moz-transition: left .3s;
    -ms-transition: left .3s;
    -o-transition: left .3s;
    transition: right .3s
}

.fullscreen #bodyContent,.fullscreen #popcontent {
    left: 0;
    top: 0;
    z-index: 1
}

body.hide-admin-notice #bodyContent,
body.hide-admin-notice #popcontent {
    top: 55px
}

#popcontent {
    display: none
}

#popupwindow {
    position: fixed;
    top: 73px;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background-color: rgba(0, 0, 0, .5);
    display: none;
    opacity: 0;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    z-index: 1
}

body.hide-admin-notice #popupwindow {
    top: 55px
}

#popupwindow>.wrapper {
    position: relative;
    overflow: hidden;
    width: 95%;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, .5)
}

#popupwindow>.wrapper>.head {
    font-weight: 700;
    color: #F44336;
    border-bottom: 2px solid;
    padding-bottom: 10px
}

#loading {
    z-index: 2;
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    background-color: #000;
    display: none;
    opacity: .6
}

#loading img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    margin: -50px;
    -webkit-animation-name: spin;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-name: spin;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.fullscreen #bodyContent,
.fullscreen #popcontent {
    left: 0;
    top: 0;
    z-index: 1
}

.show-menu #bodyContent,
.show-menu #popcontent {
    right: 200px
}

.show-menu #bodyContent:before,
.show-menu #popcontent:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1
}

.alert-log {
    height: 400px;
    overflow: auto;
    border: 1px solid;
    background: #eee;
    margin-top: 10px;
    padding: 10px;
    text-align: justify
}

.alert-log::-webkit-scrollbar {
    display: block;
    width: 15px
}

.swal-close-link {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    line-height: 30px;
    color: #00f;
    text-decoration: underline
}

.warn-text {
    color: orange;
    font-weight: 700
}

.error-text {
    color: red;
    font-weight: 700
}

input[type=text],input[type=email],input[type=tel],input[type=number],input[type=password],input[type=date],input[type=time],textarea,select {
    width: 100%;
    font-family: sans-serif;
    font-size: 13px;
    margin: 0;
    padding: 7px 10px;
    position: relative;
    display: block;
    outline: 0;
    border: 1px solid #999;
    border-radius: 0;
    background: #fff;
    color: #000;
    -webkit-appearance: none;
    appearance: none;
}

input[type=text]:hover,input[type=email]:hover,input[type=tel]:hover,input[type=number]:hover,input[type=password]:hover,input[type=date]:hover,input[type=time]:hover,textarea:hover,select:hover {
    border: 1px solid #666
}

input[readonly],input[disabled],select[readonly],select[disabled] {
    background-color: #ddd
}

.btn {
    display: block;
    text-align: center;
    padding: 7px 0 6px;
    cursor: pointer;
    background-color: #5CB85C;
    color: #fff!important;
    font-size: 13px;
    border: 1px solid #4CAE4C;
    border-radius: 3px
}

.btn:hover {
    background-color: #449D44
}

.btn.danger {
    background-color: #D9534F;
    border: 1px solid #D43F3A
}

.btn.danger:hover {
    background-color: #C9302C
}

.btn.warning {
    background-color: #FF9800;
    border-color: #F57C00
}

.btn.warning:hover {
    background-color: #FB8C00
}

.btn.primary {
    background-color: #3F51B5;
    border-color: #283593
}

.btn.primary:hover {
    background-color: #283593
}

.btnlogin {
    background-color: #f58a20 !important;
    border-color: #e8b684 !important;
    width: 100%;
}

#login{
    overflow:hidden;
    width:100%;
    height:100%;
    background:#42413c
}

#login .containerLogin {
    width: 90%;
    max-width: 400px;
    padding: 30px;
    margin: 30px auto;
    background: #fff;
    box-shadow: 1px 1px 5px rgba(0,0,0,.5);
    border-radius: 8px
}

#login .containerLogin input {
    padding: 15px;
    font-size: 15px;
    margin-bottom: 15px;
    background: #f3f3f3
}

#login .containerLogin .btn {
    padding: 12px 0;
    font-size: 15px
}