:root {
    --primary-color: #007bff;
    --secondary-color: #333;
}


html, body {
    background-color: #f5f7fa;
    color: #636b6f;
    font-family: 'Nunito', sans-serif;
    font-weight: 200;
    margin: 0;
    font-size:13px;
}

[v-cloak] > * { display:none }
[v-cloak]::before { 
    content: "loading component…";
    margin:0 auto;
    display: table;
}
a:hover {
    text-decoration: none;
}
b, 
strong {
    font-weight: bold !important;
}

.small, small {
    font-size: 13px;
}

.rounded-20 {
    border-radius: 20px;
}
.rounded-25 {
    border-radius: 25px;
}

.full-height {
    height: 100vh;
}

.flex-center {
    align-items: center;
    display: flex;
    justify-content: center;
}

.position-ref {
    position: relative;
}

.top-right {
    position: absolute;
    right: 10px;
    top: 18px;
}

.content {
    text-align: center;
}

.title {
    font-size: 84px;
}

.links > a {
    color: #636b6f;
    padding: 0 25px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1rem;
    text-decoration: none;
    text-transform: uppercase;
}

.m-b-md {
    margin-bottom: 30px;
}

.main {
    background-color: #f5f7fa;
}
.main .content {
    position: relative;
    background-color: #fff;
    padding:50px 20px 20px 20px;


}
.main .content::before {
    content:" ";
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 50px;
    z-index:100;
    background: #f5f7fa;
    background: -moz-linear-gradient(top, #f5f7fa 0%, #ffffff 60%, #ffffff 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #f5f7fa), color-stop(60%, #ffffff), color-stop(100%, #ffffff));
    background: -webkit-linear-gradient(top, #f5f7fa 0%, #ffffff 60%, #ffffff 100%);
    background: -o-linear-gradient(top, #f5f7fa 0%, #ffffff 60%, #ffffff 100%);
    background: -ms-linear-gradient(top, #f5f7fa 0%, #ffffff 60%, #ffffff 100%);
    background: linear-gradient(to bottom, #f5f7fa 0%, #ffffff 60%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f7fa', endColorstr='#f5f7fa', GradientType=0 );
}
.main .content .page {
}
.logo {
    text-align: center;
}



/*FORM*/

form .form-group {
    padding-top: 10px;
    display: flex;
    flex-direction: column;  
}
form .form-group input,
form .form-group textarea,
form .form-group select {
    border: 1px solid #ddd;
    transition: all 0.3s ease-in;
    min-height: 45px;
    padding:5px;
    font-weight: 300;
}
form .form-group textarea{
    min-height: 200px;
}
form .form-group input:focus,
form .form-group select:focus,
form .form-group textarea:focus {
    box-shadow: none;
    outline: none;
    border-color: var(--primary-color);

}
form .form-group label {
    padding-left: 5px;
    transition: all 0.3s ease-in;
    transform: translateY(40px);
    pointer-events: none;
    font-weight: 300;
}
form .form-group label sup {
    color: #E74C3C;
}
form .form-group label.move-label-up {
    transform: translateY(-2px);
    color: var(--secondary-color);
    padding-left: 0;
    transition: all 0.3s ease-in;
    font-weight: 500;

}

/*SWITCH BUTTON*/
form .form-check label {
    transform: none !important;
}

.on-off-btn .btn-primary{
    background: #46a046;
    border: solid 1px #46a046;
    -webkit-border-radius:50px;
    -moz-border-radius:50px;
    border-radius:50px;
}
.on-off-btn .toggle.btn{
    min-width:55px;
    min-height: 23px;
}
.on-off-btn .btn{
    padding:4px 6px!important;
    text-transform: uppercase;
}

.on-off-btn  .btn-default{
    background: #e7e7e7;
    -webkit-border-radius:50px;
    -moz-border-radius:50px;
    border-radius:50px;
}
.on-off-btn .btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}
.on-off-btn .btn-primary .toggle-handle {
    background: #fff none repeat scroll 0 0;
    border-radius: 100%;
    height: 15px;
    margin:0 28px 0 0;
    width: 15px;
}
.on-off-btn .btn-default .toggle-handle {
    margin:0 0 0 28px;
    background: #fff none repeat scroll 0 0;
    border-radius: 100%;
    height: 15px;
    padding: 0;
    width: 15px;
}
.on-off-btn .toggle-on.btn {
    text-align: left;
}
.on-off-btn .toggle-off.btn {
    text-align: right;
    padding-right:0.5rem !important;
}
.on-off-btn .toggle-off{
    top:1px;
    padding-right: 8px!important;
}
.on-off-btn label{
    font-size: 11px;
}
.input-error {
    background-color: #ffdfe2 !important;
    border-color: #DC3545 !important;
}

.footer {
    margin-top:50px;
    padding-top: 15px;
    border-top: 2px dotted #cbd2d6;
}

ul.custom-nav {
    width: 100%;
    margin:20px 0 0 0;
    padding:0;
    list-style-type: none;
}
ul.custom-nav li {
    width: 100%;
}
ul.custom-nav li a {
    width: 100%;
    display:block;
    border-bottom: 1px solid #ececec;
    padding: 10px;
    color: #333;
    font-weight: bold;
}
ul.custom-nav li a.active {
    color: var(--primary-color);
}
ul.custom-nav li a:hover {
    text-decoration: none;
}



table {
    border-collapse: collapse;
    width: 100%;
}

table td, table th {
    border: 1px solid #ececec;
    padding: 6px;
}
table th {
    text-transform: uppercase;

}
table tr th {
    background-color: #f1f1f1;
}

/*table tr:nth-child(even){background-color: #f2f2f2;}*/
table tr:nth-child(even){background-color: #fff;}

table tr:hover {background-color: #f7f7f7;}

table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #fff;
}

.table-action {
    min-width: 100px;
}
.table-action a {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid #ececec;
    display: inline-block;
    text-align: center;
    padding-top: 3px;
    margin-right: 5px;
    color: #333;
}
.table-action a.success {
    /*color:#46a046;*/
}
.table-action a.danger {
    /*color:#dc3545;*/
}
.table-action a.warning {
    /*    color:#ffc107;*/
}


.modal {
    top: 50px;
}
.modal-dialog {
    max-width: 100%;
}
.modal-header {
    position: relative;
}
.modal-header .close {
    position: absolute;
    top:0;
    right: -10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 3px 5px 22px -7px rgba(1, 1, 1, 0.25); 
    background-color: var(--primary-color);
    text-align: center;
    padding:0;
    opacity: 1;
    color: #fff;
}
.modal-header .close:focus {
    outline: none;
}



.section-content {
    width: 100%;
    border: 3px solid #f7f7f9;
    padding:15px;
    margin-top: 35px;
    position: relative;
}
.section-content .title {
    position: absolute;
    top: -9px;
    left: 10px;
    background-color: #fff;
    padding: 0px 5px;
    text-transform: uppercase;
    font-size: 12px;
}




.file-upload {
    width: 100%;
    border:1px dashed #ddd;
    position: relative;
    text-align: center;
    cursor: pointer;
}
.file-upload input[type="file"]{
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left:0;
}
.file-upload .icon {
    font-size: 3rem;
}

.selected-file {
    position: relative;
}
.selected-item {
    border: 1px solid #ffc107;
    padding: 5px 10px;
    border-radius: 10px;
    margin-right: 10px;
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
}
.selected-file .remove,
.selected-item .remove {
    position: absolute;
    top:-15px;
    right:-5px;
    font-size: 1.2rem;
}
