1292 lines
27 KiB
CSS
1292 lines
27 KiB
CSS
:root {
|
|
--slider-width: 480px;
|
|
--border-radius: 10px;
|
|
--btn-color-primary: #7F54B3;
|
|
--color-primary-1: #7367f0;
|
|
--color-primary: #7367CC;
|
|
--color-secondary: #545cd8;
|
|
--text-color-primary: #09205c;
|
|
--text-color-1: #5e5873;
|
|
--text-color-heading-1: #5d596c;
|
|
--text-disable: #a5a3ae
|
|
}
|
|
.pointer:hover{
|
|
cursor: pointer
|
|
}
|
|
.mini-scrollbar{
|
|
height: calc(100vh - 176px)
|
|
}
|
|
|
|
.ellipsis {
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden
|
|
}
|
|
html {
|
|
font-size: 18px;
|
|
font-weight: 500;
|
|
}
|
|
/*Control*/
|
|
[data-dropdown]:not(.nav-i) .sub-item {
|
|
border-radius: var(--border-radius);
|
|
overflow: hidden;
|
|
position: fixed;
|
|
background: #fff;
|
|
opacity: .6;
|
|
z-index: 10001;
|
|
box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
|
|
height: 0;
|
|
transition: height .3s ease-out, opacity .3s ease-out
|
|
}
|
|
|
|
[data-dropdown] .sub-item.show {
|
|
height: auto;
|
|
opacity: 1;
|
|
}
|
|
/*Overlay*/
|
|
.c-overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
opacity: 0;
|
|
transition: all ease-in-out .4s;
|
|
background: rgb(86 83 96 / 0.32)
|
|
}
|
|
|
|
.c-overlay.show {
|
|
opacity: 1
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-weight: 600;
|
|
color: #5e5873;
|
|
margin-bottom: 5px
|
|
}
|
|
|
|
h5 {
|
|
font-size: .82rem
|
|
}
|
|
|
|
h4 {
|
|
font-size: 1rem
|
|
}
|
|
|
|
.font-small {
|
|
font-size: .75rem;
|
|
font-weight: 400
|
|
}
|
|
|
|
|
|
header {
|
|
border-top-right-radius: var(--border-radius);
|
|
border-bottom-right-radius: var(--border-radius);
|
|
position: fixed;
|
|
width: 280px;
|
|
background: white;
|
|
-webkit-box-shadow: 0 0 15px 0 rgb(34 41 47 / 5%);
|
|
box-shadow: 0 0 15px 0 rgb(34 41 47 / 5%);
|
|
height: 100%;
|
|
color: #6e6b7b;
|
|
z-index: 2100;
|
|
left: -325px;
|
|
transition: left ease-in-out .3s;
|
|
max-width: 100%
|
|
}
|
|
|
|
header.show {
|
|
left: 0
|
|
}
|
|
|
|
.hd-close {
|
|
position: absolute;
|
|
right: 15px;
|
|
top: 15px;
|
|
cursor: pointer
|
|
}
|
|
|
|
.wiget .sub-item .atg {
|
|
color: #6e6b7b
|
|
}
|
|
|
|
.wiget .sub-item a {
|
|
padding: 8px 10px
|
|
}
|
|
|
|
|
|
@media (min-width:576px) {
|
|
nav {
|
|
width: calc(100% - 70px) !important;
|
|
margin: 24px 35px 0 !important
|
|
}
|
|
|
|
.main-wrapper {
|
|
padding: 120px 20px 0 !important
|
|
}
|
|
|
|
nav .sub-item {
|
|
overflow: hidden !important;
|
|
position: fixed !important;
|
|
background: #fff !important;
|
|
box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%) !important;
|
|
height: 0
|
|
}
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
nav .sub-item {
|
|
background: none !important;
|
|
box-shadow: none !important;
|
|
height: auto !important;
|
|
position: relative !important;
|
|
overflow: visible !important
|
|
}
|
|
|
|
.wiget .sub-item .atg {
|
|
color: #fff
|
|
}
|
|
}
|
|
|
|
@media (min-width:1200px) {
|
|
header {
|
|
left: 0
|
|
}
|
|
|
|
nav {
|
|
width: calc(100% - 350px) !important
|
|
}
|
|
|
|
.main-wrapper {
|
|
margin-left: 280px
|
|
}
|
|
}
|
|
|
|
|
|
|
|
nav {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
width: calc(100% - 24px);
|
|
margin: 24px 12px 0;
|
|
border-radius: var(--border-radius);
|
|
background: var(--color-primary);
|
|
color: white;
|
|
-webkit-box-shadow: 0 4px 24px 0 rgb(34 41 47 / 10%);
|
|
box-shadow: 0 4px 24px 0 rgb(34 41 47 / 10%);
|
|
z-index: 12;
|
|
}
|
|
|
|
.nav-shadow {
|
|
background: -webkit-gradient(linear,left top,left bottom,color-stop(44%,hsla(0,0%,97.3%,.95)),color-stop(73%,hsla(0,0%,97.3%,.46)),to(hsla(0,0%,100%,0)));
|
|
background: linear-gradient( 180deg,hsla(0,0%,97.3%,.95) 44%,hsla(0,0%,97.3%,.46) 73%,hsla(0,0%,100%,0));
|
|
left: 0;
|
|
padding-top: 2.2rem;
|
|
display: block;
|
|
width: 100%;
|
|
height: 102px;
|
|
position: fixed;
|
|
top: 0;
|
|
z-index: 11;
|
|
}
|
|
|
|
.c-nav {
|
|
min-height: calc(100% - 3.35rem);
|
|
padding: .8rem 1rem;
|
|
}
|
|
|
|
.c-logo {
|
|
padding: 15px 16px 0;
|
|
height: 100px
|
|
}
|
|
|
|
.logo-name {
|
|
font-weight: 500;
|
|
font-size: 1.2rem;
|
|
color: var(--text-color-primary);
|
|
}
|
|
|
|
.menu-content {
|
|
height: calc(100% - 172px)
|
|
}
|
|
|
|
.m-footer {
|
|
border-top: 1px solid #eee;
|
|
font-weight: 500;
|
|
padding: 12px 16px;
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
.nav-overlay {
|
|
margin-top: -.7rem;
|
|
background: -webkit-gradient(linear,left top,left bottom,color-stop(41%,#fff),color-stop(95%,hsla(0,0%,100%,.11)),to(hsla(0,0%,100%,0)));
|
|
background: linear-gradient(#fff 41%,hsla(0,0%,100%,.11) 95%,hsla(0,0%,100%,0));
|
|
position: absolute;
|
|
z-index: 2;
|
|
height: 50px;
|
|
width: 100%;
|
|
pointer-events: none;
|
|
-webkit-filter: blur(5px);
|
|
filter: blur(5px)
|
|
}
|
|
|
|
.nav-main {
|
|
padding-top: 8px;
|
|
}
|
|
|
|
.nav-header {
|
|
margin: 20px 5px 10px 27px;
|
|
color: var(--color-primary);
|
|
line-height: 1.5;
|
|
font-size: .82rem;
|
|
font-weight: 600;
|
|
letter-spacing: .01rem
|
|
}
|
|
|
|
|
|
.nav-main .nav-i {
|
|
border-radius: var(--border-radius);
|
|
position:relative;
|
|
background-color: transparent;
|
|
color: #565360;
|
|
margin: .125rem 12px;
|
|
font-size: .85rem;
|
|
line-height: 24px;
|
|
padding: 10px 15px;
|
|
transition: margin ease-in-out .3s, background-color ease-in-out .3s, font-weight .3s ease-in-out
|
|
}
|
|
|
|
.nav-main .nav-i:hover {
|
|
margin-left: 15px
|
|
}
|
|
|
|
.nav-main > .nav-i:not(.has-sub):hover, .nav-main .sub-item > .nav-i:hover {
|
|
background-color: #f8f8f8
|
|
}
|
|
|
|
.nav-main .nav-i > .atg {
|
|
text-align: center;
|
|
font-size: 1.2rem
|
|
}
|
|
.nav-main .nav-i.has-sub {
|
|
padding: 0;
|
|
margin: 0
|
|
}
|
|
.nav-main .sub-item .nav-i .atg {
|
|
text-align: center;
|
|
width: 22px;
|
|
font-size: .7rem;
|
|
line-height: 24px
|
|
}
|
|
|
|
.nav-main .sub-item > .nav-i {
|
|
font-size: .8rem;
|
|
margin-left: 30px
|
|
}
|
|
|
|
.nav-main .sub-item {
|
|
overflow: hidden;
|
|
height: 0;
|
|
background-color: transparent;
|
|
transition: height 0.3s ease-out;
|
|
}
|
|
.nav-main .nav-i.active .sub-item {
|
|
padding-bottom: 10px;
|
|
}
|
|
.nav-main .sub-item.show {
|
|
height: auto;
|
|
}
|
|
.nav-main > .nav-i.active > a {
|
|
font-weight: 500;
|
|
color: var(--text-color-heading-1);
|
|
background-color: #f8f8f8 !important
|
|
}
|
|
.nav-main .sub-item > .nav-i.active, .nav-main > .nav-i:not(.has-sub).active {
|
|
background-position: 50px;
|
|
background: linear-gradient( 118deg,#7367f0,rgba(115,103,240,.7));
|
|
-webkit-box-shadow: -2px 3px 10px 1px rgb(115 103 240 / 60%);
|
|
box-shadow: -2px 3px 10px 1px rgb(115 103 240 / 60%);
|
|
color: #fff
|
|
}
|
|
.nav-main .sub-item > .nav-i.active, .nav-main > .nav-i.active > a {
|
|
border-radius: var(--border-radius);
|
|
}
|
|
|
|
.more {
|
|
cursor:pointer
|
|
}
|
|
|
|
.active .more span{
|
|
-webkit-transform: rotate(90deg);
|
|
-moz-transform: rotate(90deg);
|
|
-ms-transform: rotate(90deg);
|
|
-o-transform: rotate(90deg);
|
|
transform: rotate(90deg);
|
|
}
|
|
.more span {
|
|
transition: all .3s ease-in;
|
|
transform: rotate(0)
|
|
}
|
|
.more {
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
|
|
right: 15px;
|
|
font-size: .7rem;
|
|
}
|
|
|
|
|
|
.wiget {
|
|
font-size: 1.2rem
|
|
}
|
|
|
|
.wiget a {
|
|
position: relative;
|
|
padding: 0 10px
|
|
}
|
|
|
|
.wiget > a:first-child {
|
|
padding-left: 0 !important
|
|
}
|
|
|
|
.wiget a:last-child {
|
|
padding-right: 0 !important
|
|
}
|
|
|
|
.wiget .badge {
|
|
border-radius: 50%;
|
|
position: absolute;
|
|
width: 16px;
|
|
height: 16px;
|
|
font-size: .45rem;
|
|
text-align: center;
|
|
line-height: 16px;
|
|
font-weight: 600;
|
|
background: #ea5455;
|
|
color: white;
|
|
top: -6px;
|
|
right: 4px
|
|
}
|
|
|
|
.wiget .atg {
|
|
color: white
|
|
}
|
|
|
|
.avatar {
|
|
border-radius: 50%;
|
|
width: 40px;
|
|
height: 40px;
|
|
background-color: aliceblue;
|
|
overflow: hidden
|
|
}
|
|
|
|
.c-user {
|
|
margin-right: 10px;
|
|
font-size: .7rem;
|
|
color: white
|
|
}
|
|
|
|
.c-user span:first-child {
|
|
font-weight: 700;
|
|
font-size: .8rem
|
|
}
|
|
|
|
.status {
|
|
position: absolute;
|
|
width: 11px;
|
|
height: 11px;
|
|
border: 1px solid white;
|
|
border-radius: 50%;
|
|
background-color: forestgreen;
|
|
z-index: 10;
|
|
right: 1px;
|
|
bottom: 1px
|
|
}
|
|
|
|
.c-breadcrumbs {
|
|
margin: 0 15px 25px 15px;
|
|
}
|
|
|
|
.c-breadcrumbs .title {
|
|
margin-right: 15px;
|
|
font-size: 1.2rem;
|
|
font-weight: 600
|
|
}
|
|
|
|
.breadcrumbs {
|
|
border-left: 1px solid #d6dce1
|
|
}
|
|
|
|
.breadcrumbs .icon {
|
|
font-size: 1.1rem;
|
|
color: #7367f0
|
|
}
|
|
|
|
.breadcrumbs .sperate {
|
|
line-height: 28px;
|
|
font-weight: 500
|
|
}
|
|
|
|
.breadcrumbs .item {
|
|
line-height: 30px;
|
|
margin: 0 10px;
|
|
color: #7367f0;
|
|
font-weight: 500
|
|
}
|
|
|
|
.breadcrumbs .item.active {
|
|
font-weight: 400;
|
|
color: #6e6b7b
|
|
}
|
|
|
|
.main-wrapper {
|
|
padding-top:120px
|
|
}
|
|
.card-body .more {
|
|
padding: 5px;
|
|
right: 0
|
|
}
|
|
|
|
.card-body {
|
|
border-radius: var(--border-radius);
|
|
padding: 20px 20px;
|
|
margin: 0 15px 30px 15px;
|
|
background: white;
|
|
box-shadow: 0 4px 24px 0 rgb(34 41 47 / 10%);
|
|
height: calc(100% - 30px)
|
|
}
|
|
|
|
.card-text {
|
|
font-size: .8rem;
|
|
margin-bottom: 5px
|
|
}
|
|
|
|
/**/
|
|
.wizard-nav {
|
|
padding: 0 20px 10px 20px;
|
|
border-bottom: 1px solid rgba(34,41,47,.08)
|
|
}
|
|
|
|
.wizard-nav .item {
|
|
padding-bottom: 10px
|
|
}
|
|
|
|
.wizard-nav .item .tab {
|
|
color: #b8c2cc;
|
|
background-color: rgba(115, 103, 240, 0.08);
|
|
border-radius: var(--border-radius);
|
|
width: 40px;
|
|
height: 40px;
|
|
font-weight: 600
|
|
}
|
|
|
|
.wizard-nav .item .tab-title {
|
|
margin: 0 10px;
|
|
font-size: .9rem;
|
|
color: #b8c2cc;
|
|
font-weight: 600
|
|
}
|
|
|
|
.wizard-nav .item .atg {
|
|
color: #b8c2cc;
|
|
margin-right: 10px
|
|
}
|
|
|
|
.wizard-nav .item.active .tab {
|
|
box-shadow: rgb(105 108 255 / 40%) 0px 3px 6px 0px;
|
|
background-color: #7367f0;
|
|
color: #fff
|
|
}
|
|
|
|
.wizard-nav .item.active .tab-title, .wizard-nav .item.active .atg {
|
|
color: #7367f0
|
|
}
|
|
|
|
.wizard-nav .item:first-child .atg {
|
|
display: none
|
|
}
|
|
|
|
|
|
/*AButton*/
|
|
.loader,
|
|
.loader:after {
|
|
margin-right: 10px;
|
|
border-radius: 50%;
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
|
|
.loader {
|
|
position: relative;
|
|
border-top: 2px solid rgba(255, 255, 255, 0.2);
|
|
border-right: 2px solid rgba(255, 255, 255, 0.2);
|
|
border-bottom: 2px solid rgba(255, 255, 255, 0.2);
|
|
border-left: 2px solid #ffffff;
|
|
-webkit-transform: translateZ(0);
|
|
-ms-transform: translateZ(0);
|
|
transform: translateZ(0);
|
|
-webkit-animation: load8 1.1s infinite linear;
|
|
animation: load8 1.1s infinite linear;
|
|
}
|
|
|
|
@-webkit-keyframes load8 {
|
|
0% {
|
|
-webkit-transform: rotate(0deg);
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
100% {
|
|
-webkit-transform: rotate(360deg);
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
@keyframes load8 {
|
|
0% {
|
|
-webkit-transform: rotate(0deg);
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
100% {
|
|
-webkit-transform: rotate(360deg);
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
/*Form Input*/
|
|
.btn {
|
|
cursor: pointer;
|
|
padding: 10px 20px;
|
|
border-radius: var(--border-radius);
|
|
font-weight: 400;
|
|
font-size: .9rem;
|
|
color: white;
|
|
transition: all .3s ease-in
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
-webkit-box-shadow: 0 8px 25px -8px #7367f0;
|
|
box-shadow: 0 8px 25px -8px #7367f0
|
|
}
|
|
|
|
.btn-secondary {
|
|
color: #a8aaae;
|
|
border-color: rgba(0, 0, 0, 0);
|
|
background: #f1f1f2;
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
background: #eaebec !important;
|
|
color: #a8aaae !important;
|
|
}
|
|
|
|
.btn-warning {
|
|
padding:10px 12px;
|
|
border-color: #ff9f43 !important;
|
|
background-color: #ff9f43 !important
|
|
}
|
|
|
|
.btn-warning:hover {
|
|
box-shadow: 0 8px 25px -8px #ff9f43
|
|
}
|
|
|
|
.btn-danger {
|
|
padding: 10px 12px;
|
|
background-image: linear-gradient( 47deg,#ea5455,#f08182);
|
|
background-repeat: repeat
|
|
}
|
|
|
|
.btn-danger:hover {
|
|
background-image: linear-gradient( 15deg,#ea5455,#f08182);
|
|
box-shadow: 0 8px 25px -8px #f08182
|
|
}
|
|
|
|
.btn.disabled {
|
|
background: rgb(64 55 142 / 0.80) !important
|
|
}
|
|
|
|
.btn-primary {
|
|
border-color: #7367f0;
|
|
background-color: #7367f0;
|
|
}
|
|
|
|
[data-style] .form-control {
|
|
padding: .438rem 1rem;
|
|
background-color: #fff;
|
|
background-clip: padding-box;
|
|
border: 1px solid #d8d6de;
|
|
border-radius: var(--border-radius);
|
|
}
|
|
.form-group-con{
|
|
margin: 0 -20px
|
|
}
|
|
[data-style] .form-control:focus, .form-group input:focus, .con-aselect.active .aselect, .form-group > .input-custom:focus-within {
|
|
background-color: #fff;
|
|
border-color: #7367f0;
|
|
-webkit-box-shadow: 0 3px 10px 0 rgb(34 41 47 / 10%);
|
|
box-shadow: 0 3px 10px 0 rgb(34 41 47 / 10%);
|
|
}
|
|
.form-group > .input-custom input:focus{
|
|
box-shadow: none !important
|
|
}
|
|
.form-group label{
|
|
margin-top: 10px;
|
|
margin-bottom: 5px
|
|
}
|
|
|
|
.form-control:focus {
|
|
color: #6e6b7b;
|
|
outline: 0;
|
|
}
|
|
|
|
.form-control:hover {
|
|
cursor: text;
|
|
}
|
|
|
|
.form-control {
|
|
display: block;
|
|
width: 100%;
|
|
height: 2.714rem;
|
|
font-size: 1rem;
|
|
font-weight: 400;
|
|
line-height: 1.45;
|
|
color: #6e6b7b;
|
|
-webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
|
|
transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
|
|
transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
|
|
transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
|
|
}
|
|
|
|
.form-header, .form-header-1 {
|
|
padding: 0 20px
|
|
}
|
|
|
|
.form-header-1 {
|
|
margin-bottom: 30px
|
|
}
|
|
|
|
.form-header-1 h4 {
|
|
margin-top: 25px;
|
|
font-weight: 600;
|
|
font-size: .9rem
|
|
}
|
|
|
|
.form-header-1 .des {
|
|
color: #b9b9c3;
|
|
font-weight: 400;
|
|
font-size: .85rem
|
|
}
|
|
|
|
|
|
.form-group {
|
|
margin-bottom: 10px;
|
|
padding: 0 20px
|
|
}
|
|
|
|
.form-group label {
|
|
font-size: .8rem;
|
|
margin-bottom: 5px
|
|
}
|
|
|
|
.form-group .invalid, .form-group .invalid:focus {
|
|
border-color: #ea5455;
|
|
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ea5455'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23ea5455' stroke='none'/%3E%3C/svg%3E");
|
|
background-repeat: no-repeat;
|
|
background-size: 20px;
|
|
background-position: right 0.4rem center
|
|
}
|
|
|
|
.form-group input:disabled{
|
|
background-color: #efefef
|
|
}
|
|
|
|
.form-group > .input-custom {
|
|
display: inline-block;
|
|
min-height: 38px;
|
|
}
|
|
.input-custom input {
|
|
border-radius: 0 !important;
|
|
border: 1px solid #d8d6de;
|
|
border-left: none !important;
|
|
border-right: none !important;
|
|
}
|
|
.input-custom span.input-append {
|
|
border-radius: 0;
|
|
border: 1px solid #d8d6de;
|
|
border-right: none;
|
|
}
|
|
.input-custom > .input-append:hover {
|
|
background-color: #f4f3fe;
|
|
}
|
|
.input-custom:focus-within > .input-append {
|
|
transform: scale(1);
|
|
}
|
|
|
|
.input-custom .input-append:focus + .input-append input, .input-custom:focus-within input {
|
|
border-color: var(--color-primary)
|
|
}
|
|
|
|
.form-group .minus, .form-group .plus {
|
|
cursor: pointer
|
|
}
|
|
.input-custom > .input-append {
|
|
box-shadow: none !important;
|
|
border-radius: var(--border-radius);
|
|
transform: scale(1.001);
|
|
}
|
|
.input-custom .input-append {
|
|
padding: 6px 12px;
|
|
margin-bottom: 0;
|
|
font-size: .82rem !important;
|
|
font-weight: 500;
|
|
color: var(--color-primary);
|
|
text-align: center;
|
|
background-color: #fff;
|
|
border-color: var(--color-primary) !important;
|
|
transition: all .15s ease-in-out
|
|
}
|
|
|
|
.input-custom > .input-append.right {
|
|
border-top-left-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
border: 1px solid;
|
|
}
|
|
|
|
.input-custom > .input-append.left {
|
|
border-top-right-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
border: 1px solid;
|
|
}
|
|
|
|
.input-custom .input-content {
|
|
border-top-left-radius: var(--border-radius);
|
|
border-bottom-left-radius: var(--border-radius);
|
|
border: 1px solid #d8d6de;
|
|
border-right: none !important;
|
|
transition:all .3s ease-in-out;
|
|
}
|
|
.input-custom.active .input-content{
|
|
border-color: var(--color-primary);
|
|
}
|
|
|
|
.amultitag {
|
|
transition: box-shadow .15s ease-in-out
|
|
}
|
|
.amultitag.active {
|
|
box-shadow: 0 3px 10px 0 rgb(34 41 47 / 10%);
|
|
}
|
|
|
|
.form-group input, .form-group .aselect, .form-group textarea {
|
|
font-size: .75rem;
|
|
width: 100%;
|
|
padding: 8px 25px 8px 15px;
|
|
line-height: 18px;
|
|
background-color: #fff;
|
|
background-clip: padding-box;
|
|
border: 1px solid #d8d6de;
|
|
border-radius: var(--border-radius);
|
|
-webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
|
|
transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
|
|
transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
|
|
transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out
|
|
}
|
|
|
|
.form-group textarea {
|
|
height: auto !important;
|
|
resize: none
|
|
}
|
|
|
|
.custom-checkbox{
|
|
min-height: 18px;
|
|
padding-left: 25px;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
.custom-checkbox input[type=checkbox]:checked ~ .a-checkbox-label:before {
|
|
box-shadow: 0 2px 4px 0 rgba(115,103,240,.4) !important;
|
|
border-color: #7367f0;
|
|
background-color: #7367f0;
|
|
}
|
|
|
|
input[type=checkbox] {
|
|
width: 18px;
|
|
height: 18px;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
padding: 0;
|
|
left: 0;
|
|
margin: 0;
|
|
position: absolute;
|
|
z-index: -1;
|
|
opacity: 0
|
|
}
|
|
|
|
.a-checkbox-label {
|
|
position: static;
|
|
display:block;
|
|
margin: 0 !important
|
|
}
|
|
|
|
.a-checkbox-label::before {
|
|
background-color: #fff;
|
|
border: 1px solid #d8d6de;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
}
|
|
|
|
.a-checkbox-label::before, .a-checkbox-label::after {
|
|
position: absolute;
|
|
display: block;
|
|
content: '';
|
|
left: 0;
|
|
border-radius: var(--border-radius);
|
|
width: 18px;
|
|
height: 18px
|
|
}
|
|
|
|
.a-checkbox-label::after {
|
|
background: no-repeat 50%/50% 50%;
|
|
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9.5 7.5'%3E%3Cpolyline points='0.75 4.35 4.18 6.75 8.75 0.75' style='fill:none;stroke:%23fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5px'/%3E%3C/svg%3E");
|
|
background-size: 57%;
|
|
}
|
|
|
|
/*ASelect*/
|
|
.lock{
|
|
cursor: wait !important;
|
|
}
|
|
.con-aselect .hide {
|
|
overflow: hidden;
|
|
height: 0px !important
|
|
}
|
|
|
|
.con-aselect .hide select:empty{
|
|
display:none;
|
|
}
|
|
|
|
.aselect {
|
|
background: #fff !important;
|
|
cursor: pointer
|
|
}
|
|
|
|
.aselect .icon {
|
|
position: absolute;
|
|
right: 8px;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
transition: .3s all ease-in-out;
|
|
color: #6e6b7b
|
|
}
|
|
|
|
|
|
.con-aselect.active > .aselect > .icon {
|
|
transform: translateY(-50%) rotate(180deg)
|
|
}
|
|
|
|
|
|
.a-s-sub {
|
|
margin-top: 10px;
|
|
max-height: 250px
|
|
}
|
|
|
|
.a-s-sub .a-search {
|
|
padding: 10px 10px 0 10px
|
|
}
|
|
|
|
.a-s-sub .noitem {
|
|
font-size: .85rem;
|
|
padding: 10px 15px
|
|
}
|
|
|
|
.a-s-sub .a-search input:focus {
|
|
border-color: #6e6b7b
|
|
}
|
|
|
|
.a-s-sub .a-option {
|
|
border-radius: var(--border-radius);
|
|
font-size: .82rem;
|
|
margin: 1px 10px;
|
|
padding: 10px 15px;
|
|
cursor: default;
|
|
transition: all .3s ease-in-out
|
|
}
|
|
|
|
.a-s-sub .a-option-group {
|
|
padding: 10px 15px;
|
|
font-weight: 600;
|
|
cursor: default
|
|
}
|
|
|
|
.a-option-group ~ .a-option {
|
|
padding-left: 25px !important
|
|
}
|
|
|
|
.a-s-sub .a-option:hover, .a-s-sub .a-option.hover {
|
|
color: #7367f0;
|
|
background: #eeedfd
|
|
}
|
|
.a-s-sub .a-option.active {
|
|
color: white;
|
|
background: #7367f0
|
|
}
|
|
|
|
.a-s-sub .sub-items{
|
|
padding: 5px 0
|
|
}
|
|
|
|
.aselect[ismultiple]{
|
|
padding: 3px 3px 6px 3px;
|
|
}
|
|
.aselect [item-multiple]{
|
|
margin-right: 25px
|
|
}
|
|
.aselect [item-multiple] > input.item {
|
|
padding: 0;
|
|
border-radius: 0;
|
|
width: 60%;
|
|
color: #6e6b7b;
|
|
background-color: transparent;
|
|
border-color: transparent;
|
|
box-shadow: none;
|
|
cursor: text
|
|
}
|
|
|
|
.aselect [item-multiple] > .item, .aselect[ismultiple] .text {
|
|
font-size: .75rem;
|
|
padding: 2px 4px 2px 8px;
|
|
margin: 5px 5px 0 5px
|
|
}
|
|
.aselect [item-multiple] > .item {
|
|
border-radius: var(--border-radius);
|
|
color: white;
|
|
background-color: var(--color-primary-1)
|
|
}
|
|
|
|
.aselect [item-multiple] button{
|
|
border-radius:50%;
|
|
width: 16px;
|
|
height: 16px;
|
|
line-height: 2;
|
|
}
|
|
|
|
.invalid-feedback {
|
|
display: none;
|
|
font-size: .85rem;
|
|
color: #ea5455;
|
|
}
|
|
/*From Dropdonw*/
|
|
|
|
/*Loading*/
|
|
|
|
.loader,
|
|
.loader:after {
|
|
margin-right: 10px;
|
|
border-radius: 50%;
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
|
|
.loader {
|
|
position: relative;
|
|
border-top: 2px solid rgba(255, 255, 255, 0.2);
|
|
border-right: 2px solid rgba(255, 255, 255, 0.2);
|
|
border-bottom: 2px solid rgba(255, 255, 255, 0.2);
|
|
border-left: 2px solid #ffffff;
|
|
-webkit-transform: translateZ(0);
|
|
-ms-transform: translateZ(0);
|
|
transform: translateZ(0);
|
|
-webkit-animation: load8 1.1s infinite linear;
|
|
animation: load8 1.1s infinite linear;
|
|
}
|
|
|
|
@-webkit-keyframes load8 {
|
|
0% {
|
|
-webkit-transform: rotate(0deg);
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
100% {
|
|
-webkit-transform: rotate(360deg);
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
@keyframes load8 {
|
|
0% {
|
|
-webkit-transform: rotate(0deg);
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
100% {
|
|
-webkit-transform: rotate(360deg);
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
/*End Loading*/
|
|
|
|
|
|
/*Text*/
|
|
.dt, .dd {
|
|
padding: 0 20px;
|
|
font-size: .85rem;
|
|
line-height: 1.45
|
|
}
|
|
|
|
.dd {
|
|
color: #6e6b7b
|
|
}
|
|
|
|
.dt {
|
|
font-weight: 500;
|
|
color: #6e6b7b
|
|
}
|
|
/*Table*/
|
|
.c-table {
|
|
border-radius: var(--border-radius);
|
|
overflow:hidden;
|
|
width: 100%
|
|
}
|
|
.c-ta-c {
|
|
box-shadow: 0 0px 20px 0px rgb(0 0 0 / 15%);
|
|
border-radius: 10px;
|
|
|
|
}
|
|
/*@media not all and (min-resolution:.001dpcm) {
|
|
@supports (-webkit-appearance:none) {
|
|
.c-ta-c {
|
|
-webkit-mask-image: -webkit-radial-gradient(white, black);
|
|
}
|
|
}
|
|
}*/
|
|
.c-ta-scroll {
|
|
-webkit-backface-visibility: hidden;
|
|
-moz-backface-visibility: hidden;
|
|
-webkit-transform: translate3d(0, 0, 0);
|
|
-moz-transform: translate3d(0, 0, 0);
|
|
overflow: hidden;
|
|
height: auto !important;
|
|
width: 100%;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.a-table {
|
|
border-radius: 10px;
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
color: #6e6b7b
|
|
}
|
|
|
|
|
|
.a-table th {
|
|
color: #fff;
|
|
background-color: #36304a;
|
|
padding: 20px 10px 20px;
|
|
font-size: .85rem;
|
|
text-transform: capitalize;
|
|
letter-spacing: .5px
|
|
}
|
|
|
|
.a-table th:first-child, .a-table td:first-child{
|
|
padding-left: 25px !important
|
|
}
|
|
|
|
|
|
.a-table tbody tr:nth-child(even){
|
|
background: #f8f6ff
|
|
}
|
|
|
|
.a-table td {
|
|
color: #808080;
|
|
padding: 16px 10px 16px 10px;
|
|
}
|
|
|
|
/*A Overlay*/
|
|
.c-aoverlay {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
z-index: 2000;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transition: all ease-out .5s
|
|
}
|
|
|
|
.c-aoverlay.show {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
background: rgb(86 83 96 / 0.32)
|
|
}
|
|
/*********** End Overlay **********/
|
|
|
|
|
|
/*AModal*/
|
|
.modal-scroll {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
.modal-con{
|
|
margin:auto;
|
|
}
|
|
.modal-dialog {
|
|
position: relative;
|
|
background-color: white;
|
|
border-radius: var(--border-radius);
|
|
box-shadow: 0 .31rem 1.25rem 0 rgba(75, 70, 92, .4);
|
|
opacity: .6;
|
|
transition: all .3s ease-in-out
|
|
}
|
|
.modal-con.slider-right {
|
|
height: 100%;
|
|
}
|
|
|
|
.modal-con.slider-right .btClose{
|
|
display:flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 1;
|
|
top: 15px;
|
|
right: 15px;
|
|
width: 25px;
|
|
height:25px;
|
|
}
|
|
|
|
.modal-con.slider-right .modal-dialog {
|
|
width: var(--slider-width);
|
|
height: 100%;
|
|
margin-left: auto;
|
|
margin-right: calc(-1 * calc(var(--slider-width) + 10px));
|
|
}
|
|
|
|
.c-aoverlay.show .modal-con.slider-right .modal-dialog {
|
|
opacity: 1;
|
|
|
|
margin-right: 0;
|
|
}
|
|
|
|
.modal-con.default .modal-dialog {
|
|
margin: 0;
|
|
padding: 30px 25px;
|
|
transform: scale(.2);
|
|
}
|
|
|
|
.c-aoverlay.show .modal-con.default .modal-dialog {
|
|
transform: scale(1);
|
|
opacity: 1;
|
|
margin: 150px auto;
|
|
}
|
|
|
|
.modal-dialog .btClose {
|
|
position: absolute;
|
|
right: -10px;
|
|
top: -10px;
|
|
background-color: #fff;
|
|
border-radius: var(--border-radius);
|
|
opacity: 1;
|
|
padding: 5px;
|
|
box-shadow: 0 .125rem .25rem rgba(165, 163, 174, .3)
|
|
}
|
|
|
|
.modal-dialog.middle {
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%)
|
|
}
|
|
.mess-info{
|
|
font-size: .82rem;
|
|
font-weight: 400;
|
|
margin: 5px 0;
|
|
}
|
|
|
|
.mess-success {
|
|
color: #28c76f;
|
|
}
|
|
|
|
.mess-error {
|
|
color: #ea5455;
|
|
}
|
|
|
|
.aslider{
|
|
padding: 60px 40px
|
|
}
|
|
/***************** End Modal **************/
|
|
|
|
.StorageTabs {
|
|
width: calc(100% + 40px) !important;
|
|
margin: 0 -20px;
|
|
}
|
|
|
|
/****************** ATabs ***********************/
|
|
.atabs {
|
|
display: inline-flex;
|
|
margin: 25px 0;
|
|
font-size: .8rem;
|
|
font-weight: 500;
|
|
border: 1px solid var(--color-primary);
|
|
padding: 1px 0;
|
|
border-radius: var(--border-radius)
|
|
}
|
|
|
|
.atabs .item {
|
|
border-radius: var(--border-radius);
|
|
padding: 8px 20px;
|
|
color: var(--text-color-heading-1);
|
|
line-height: 2.1;
|
|
transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
|
|
}
|
|
|
|
.atabs .item:not([disabled]):not(.active):hover {
|
|
color: #7367f0
|
|
}
|
|
|
|
.atabs .item[disabled]{
|
|
cursor: default;
|
|
color: var(--text-disable)
|
|
}
|
|
|
|
.animationSlide {
|
|
width: 100%;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.animationSlide .slideContent{
|
|
display:inline-flex;
|
|
transition: transform .6s ease-in-out
|
|
}
|
|
|
|
.animationSlide .tabcontent.show{
|
|
opacity: 1;
|
|
}
|
|
|
|
.animationSlide .tabcontent{
|
|
opacity: 0;
|
|
}
|
|
|
|
.animationFade .tabcontent {
|
|
opacity: 0;
|
|
display: none;
|
|
}
|
|
.animationFade .tabcontent.show {
|
|
display: block;
|
|
}
|
|
|
|
.tabcontent.fade {
|
|
transition: opacity .6s linear;
|
|
}
|
|
|
|
.atabs .item.active {
|
|
color:white;
|
|
background-color: #7367f0;
|
|
box-shadow: 0 .125rem .25rem rgba(165, 163, 174, .3);
|
|
}
|
|
|
|
/********************* End ***********************/
|
|
|
|
/****************** ASliderBar ***********************/
|
|
|
|
|
|
/********************* End **********************/ |