:root{
  --blue: #0066FF;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #0066FF;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 0;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
  position:relative;
}
a,a:link,a:visited,a:hover{
	outline:none;
	cursor:pointer;
	text-decoration:none;
	display:block;
}
textarea{
  border-radius: 8px;
  width:100%;
  min-width:200px;
  max-width:100%;
  height:200px!important;
  outline:none;
  padding:10px;
  box-sizing: border-box;
  border:2px solid #ccc;
}
input,
select{
  border-radius: 8px;
  width:100%;
  min-width:200px;
  max-width:100%;
  outline:none;
  padding:10px;
  box-sizing: border-box;
  border:2px solid #ccc;
}
input:focus,
select:focus,
textarea:focus{
  border:2px solid var(--blue);
}

.miiframe-dataset-mask{display:block;box-sizing: border-box;width:calc( 100% - 10px );height:calc( 100% - 10px );margin:5px;padding:0;background:rgba(0,0,0,0.1);}
view{margin:0;padding:0;width:100%;display:block;}
h1,h2,h3,h4,h5,h6{margin:0;padding:0;font-weight:400;line-height:1.5em;}
h1{font-size:84px;}
h2{font-size:72px;}
h3{font-size:60px;}
h4{font-size:48px;}
h5{font-size:24px;}
p{font-size:16px;line-height:1.5em;margin:0;padding:0;margin-top:1em;}
ul,dl{margin:0;padding:0;}

.fixed{position:fixed;}
.fixed-top{top:0;}
.fixed-left{left:0;}
.fixed-right{right:0;}
.fixed-bottom{bottom:0;}

.bg-white{background-color:white;}
.bg-gray{background-color:gray;}
.bg-black{background-color:black;}
.bg-blue{background-color:blue;}
.bg-red{background-color:red;}
.bg-green{background-color:green;}
.bg-yellow{background-color:yellow;}

.scroll-auto{
  overflow:auto;
}
.scroll-y{
  overflow-x:hidden;
  overflow-y:auto;
}
.scroll-x{
  overflow-x:auto;
  overflow-y:hidden;
}

@-moz-document url-prefix() {
    *{
        scrollbar-width: 5px;
    }
}

::-ms-scrollbar{
    width: 5px;     
    height: 5px;
}
::-ms-scrollbar-thumb{
    border-radius: 5px;
     -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.2);
    background: #f2f2f2;
}
::-ms-scrollbar-track{
    -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.2);
    border-radius: 5px;
    background: #e1e1e1;
}

::-moz-scrollbar{
    width: 5px;     
    height: 5px;
}
::-moz-scrollbar-thumb{
    border-radius: 5px;
     -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.2);
    background: #f2f2f2;
}
::-moz-scrollbar-track{
    -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.2);
    border-radius: 5px;
    background: #e1e1e1;
}

::-webkit-scrollbar{
    width: 5px;     
    height: 5px;
}
::-webkit-scrollbar-thumb{
    border-radius: 5px;
     -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.2);
    background: #f2f2f2;
}
::-webkit-scrollbar-track{
    -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.2);
    border-radius: 5px;
    background: #e1e1e1;
}

.no-border,
.no-border:before,
.no-border:after{
  border:none!important;
}

.box{
  width:100%;
  box-sizing: border-box;
}
.box>.caption{
  width:80%;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
  font-size:42px;
  font-weight:300;
  padding-bottom:50px;
}
.box>.caption p{
  padding:0px;
  margin:0px;
  font-size:24px;
  color:#aaa;
  text-align:center;
}
.box>.caption-left p{
  text-align:left!important;
}
.box>.caption-right p{
  text-align:right!important;
}
.box>.caption-normal{
  font-size:1.25rem;
}
.box>.caption-left{
  text-align:left;
}
.box>.caption-right{
  text-align:right;
}

.box-padding{padding:10px;}
.box-padding-20{padding:20px;}
.box-padding-30{padding:30px;}
.box-padding-40{padding:40px;}
.box-padding-50{padding:50px;}

.box-padding-top{padding-top:10px;}
.box-padding-top-20{padding-top:20px;}
.box-padding-top-30{padding-top:30px;}
.box-padding-top-40{padding-top:40px;}
.box-padding-top-50{padding-top:50px;}

.box-padding-bottom{padding-bottom:10px;}
.box-padding-bottom-20{padding-bottom:20px;}
.box-padding-bottom-30{padding-bottom:30px;}
.box-padding-bottom-40{padding-bottom:40px;}
.box-padding-bottom-50{padding-bottom:50px;}

.box>.client{
  width:80%;
  margin-left:auto;
  margin-right:auto;
}
.box>.client-flex{
  display:flex;
}
.box>.client-flex>view{
  flex:1;
}
.box>.client-flex>.small{
  max-width:200px;
  min-width:200px;
}
.box-fluid>.caption{
  width:100%;
  margin:0;
}
.box-fluid>.client{
  width:100%;
  margin:0;
}

/*mainmenu style*/
.mainmenu{
  font-size:16px;
}
.mainmenu>ul{
  list-style:none;
}
.mainmenu>ul>li{
  float:left;
  margin-right:10px;
}
.mainmenu>ul>li>a{
  padding:0px 10px;
  display:block;
}
.mainmenu>ul>.dropdown>a,
.mainmenu>ul>.dropdown-menu{
  position:relative;
}
.mainmenu>ul>.dropdown>a>i{
  margin-left:5px;
}
.mainmenu>ul>.dropdown,
.mainmenu>ul>.dropdown>a{
  cursor:default;
}
.mainmenu>ul>.dropdown:hover>a:before{
  content:"";
  position:absolute;
  bottom:-20px;
  left:50%;
  transform:translate(-50%, 0%);
  width:0;
  height:0;
  border-top:10px solid transparent;
  border-left:10px solid transparent;
  border-right:10px solid transparent;
  border-bottom:10px solid #fff;
  z-index:1;
}
.mainmenu>ul>.dropdown>.sub-mask{
  position:absolute;
  top:69px;
  left:0;
  right:0;
  padding-top:20px;
  background:transparent;
  display:none;
  z-index:2;
  box-sizing: border-box;
}
.mainmenu>ul>.dropdown>.sub-mask>.sub-page{
  width:100%;
  padding-top:60px;
  padding-bottom:60px;
  background:#fff;
  color:#000;
  min-height:300px;
  transition:all .2s;
  box-shadow:5px 5px 5px 5px rgba(0,0,0,0.15);
  overflow:hidden;
}
.mainmenu>ul>.dropdown>.sub-menu{
  position:absolute;
  top:69px;
  left:50%;
  width:200px;
  box-sizing: border-box;
  transform:translate(-50%, 0%);
  background:transparent;
  color:#000;
  transition:all 1s;
  display:none;
  overflow:visible;
  z-index:2;
}
.mainmenu>ul>.dropdown-menu:hover:before{
  content:"";
  position:absolute;
  bottom:-20px;
  left:50%;
  transform:translate(-50%, 0%);
  width:0;
  height:0;
  border-top:10px solid transparent;
  border-left:10px solid transparent;
  border-right:10px solid transparent;
  border-bottom:10px solid #fff;
  z-index:1;
}
.mainmenu>ul>.dropdown>.sub-menu>.client{
  padding:20px 0px 0px 0px;
  box-sizing: border-box;
}
.mainmenu>ul>.dropdown>.sub-menu .popmenu{
  padding:0px 20px;
  margin:0;
  list-style:none;
  width:160px;
  background:#fff;
  border-radius: 10px;
  box-shadow:5px 5px 5px 0px rgba(0,0,0,0.15);
  box-sizing: border-box;
}
.mainmenu>ul>.dropdown>.sub-menu .popmenu>dd{
  box-sizing: border-box;
  margin:0;
  padding:10px 0px;
  line-height:100%;
}
.mainmenu>ul>.dropdown>.sub-menu .popmenu>dd:first-child{
  padding-top:20px;
}
.mainmenu>ul>.dropdown>.sub-menu .popmenu>dd:last-child{
  padding-bottom:20px;
}
/*end of mainmenu style*/

/*quickmenu style*/
.quickmenu{
  font-size:12px;
  max-width:400px;
}
.quickmenu>ul{
  list-style:none;
  float:right;
}
.quickmenu>ul>li{
  float:left;
  margin-right:5px;
}
.quickmenu>ul>li>a{
  padding:0px 5px;
  display:block;
}
.quickmenu>ul>.light{
  margin:0px;
  margin-left:5px;
  font-weight:400;
}
.quickmenu>ul>.light>a{
  display:block;
  padding:0px 30px;
  color:#fff!important;
}
.quickmenu>ul>.light-yellow{
  background:#ffaa00;
  color:#fff!important;
}
.quickmenu>ul>.light-blue{
  background:#0066FF;
  color:#fff!important;
}

.quickmenu>ul>.dropdown>a,
.quickmenu>ul>.dropdown-menu{
  position:relative;
}
.quickmenu>ul>.dropdown>a>i{
  margin-left:5px;
}
.quickmenu>ul>.dropdown,
.quickmenu>ul>.dropdown>a{
  cursor:default;
}
.quickmenu>ul>.dropdown:hover>a:before{
  content:"";
  position:absolute;
  bottom:-20px;
  left:50%;
  transform:translate(-50%, 0%);
  width:0;
  height:0;
  border-top:10px solid transparent;
  border-left:10px solid transparent;
  border-right:10px solid transparent;
  border-bottom:10px solid #fff;
  z-index:1;
}
.quickmenu>ul>.dropdown>.sub-mask{
  position:absolute;
  top:69px;
  left:0;
  right:0;
  padding-top:20px;
  background:transparent;
  display:none;
  z-index:2;
  box-sizing: border-box;
}
.quickmenu>ul>.dropdown>.sub-mask>.sub-page{
  width:100%;
  padding-top:60px;
  padding-bottom:60px;
  background:#fff;
  color:#000;
  min-height:300px;
  transition:all .2s;
  box-shadow:5px 5px 5px 5px rgba(0,0,0,0.15);
  overflow:hidden;
}
.quickmenu>ul>.dropdown>.sub-menu{
  position:absolute;
  top:69px;
  left:50%;
  width:200px;
  box-sizing: border-box;
  transform:translate(-50%, 0%);
  background:transparent;
  color:#000;
  transition:all 1s;
  display:none;
  overflow:visible;
  z-index:2;
}
.quickmenu>ul>.dropdown-menu:hover:before{
  content:"";
  position:absolute;
  bottom:-20px;
  left:50%;
  transform:translate(-50%, 0%);
  width:0;
  height:0;
  border-top:10px solid transparent;
  border-left:10px solid transparent;
  border-right:10px solid transparent;
  border-bottom:10px solid #fff;
  z-index:1;
}
.quickmenu>ul>.dropdown>.sub-menu>.client{
  padding:20px 0px 0px 0px;
  box-sizing: border-box;
}
.quickmenu>ul>.dropdown>.sub-menu .popmenu{
  padding:0px 20px;
  margin:0;
  list-style:none;
  width:160px;
  background:#fff;
  border-radius: 10px;
  box-shadow:5px 5px 5px 0px rgba(0,0,0,0.15);
  box-sizing: border-box;
}
.quickmenu>ul>.dropdown>.sub-menu .popmenu>dd{
  box-sizing: border-box;
  margin:0;
  padding:10px 0px;
  line-height:100%;
}
.quickmenu>ul>.dropdown>.sub-menu .popmenu>dd:first-child{
  padding-top:20px;
}
.quickmenu>ul>.dropdown>.sub-menu .popmenu>dd:last-child{
  padding-bottom:20px;
}

/*end of quickmenu style*/

/*left nav style*/

/*end of left nav style*/

/*list global style*/
.list{
  padding:0;
  margin:0;
  width:100%;
  list-style:none;
  display:flex;
  justify-content: space-between;
  flex-flow:wrap;
  box-sizing: border-box;
}
.list:after{
  content:"";
  flex:1;
  margin:0;
  padding:0;
  margin-bottom:10px;
  line-height:100%;
  max-width:none!important;
  min-width:none!important;
  margin-right:0px!important;
}
.list>li,
.list>dd,
.list>view{
  flex:1;
  margin:0;
  padding:0;
  
  margin-bottom:10px;
  margin-right:10px;
  
  --list-colspan:10px;
  --list-rowspan:10px;

  line-height:100%;
  display:inline-block;
}
.list-rowspan-none>li,
.list-rowspan-none>dd,
.list-rowspan-none>view{
  margin-bottom:0px!important;
  --list-rowspan:0px;
}
.list-rowspan-10>li,
.list-rowspan-10>dd,
.list-rowspan-10>view{
  margin-bottom:10px!important;
  --list-rowspan:10px;
}
.list-rowspan-20>li,
.list-rowspan-20>dd,
.list-rowspan-20>view{
  margin-bottom:20px!important;
  --list-rowspan:20px;
}
.list-rowspan-30>li,
.list-rowspan-30>dd,
.list-rowspan-30>view{
  margin-bottom:30px!important;
  --list-rowspan:30px;
}
.list-rowspan-40>li,
.list-rowspan-40>dd,
.list-rowspan-40>view{
  margin-bottom:40px!important;
  --list-rowspan:40px;
}
.list-rowspan-50>li,
.list-rowspan-50>dd,
.list-rowspan-50>view{
  margin-bottom:50px!important;
  --list-rowspan:50px;
}

.list-rowspan-100>li,
.list-rowspan-100>dd,
.list-rowspan-100>view{
  margin-bottom:100px!important;
  --list-rowspan:100px;
}

.list-colspan-none>li,
.list-colspan-none>dd,
.list-colspan-none>view{
  margin-right:none!important;
  --list-colspan:0px;
}

.list-colspan-10>li,
.list-colspan-10>dd,
.list-colspan-10>view{
  margin-right:10px!important;
  --list-colspan:10px;
}

.list-colspan-20>li,
.list-colspan-20>dd,
.list-colspan-20>view{
  margin-right:20px!important;
  --list-colspan:20px;
}

.list-colspan-30>li,
.list-colspan-30>dd,
.list-colspan-30>view{
  margin-right:30px!important;
  --list-colspan:30px;
}

.list-colspan-40>li,
.list-colspan-40>dd,
.list-colspan-40>view{
  margin-right:40px!important;
  --list-colspan:40px;
}

.list-colspan-50>li,
.list-colspan-50>dd,
.list-colspan-50>view{
  margin-right:50px!important;
  --list-colspan:50px;
}
/*end of list global style*/

/*list 1column style*/
.list-1>li,
.list-1>dd,
.list-1>view{
  max-width:calc( 100% );
  min-width:calc( 100% );
  margin-right:0px!important;
}
.list-1>li:nth-last-of-type(1)
.list-1>dd:nth-last-of-type(1),
.list-1>view:nth-last-of-type(1){
  margin-bottom:0px!important;
}
/*end of list 1column style*/

/*list 2column style*/
.list-2>li,
.list-2>dd,
.list-2>view{
  max-width:calc( ( 100% - var(--list-colspan) ) / 2);
  min-width:calc( ( 100% - var(--list-colspan) ) / 2);
}
.list-2>li:nth-child(2n),
.list-2>dd:nth-child(2n),
.list-2>view:nth-child(2n){
  margin-right:0px!important;
}
.list-2>li:nth-last-of-type(1),
.list-2>li:nth-last-of-type(2),
.list-2>dd:nth-last-of-type(1),
.list-2>dd:nth-last-of-type(2),
.list-2>view:nth-last-of-type(1),
.list-2>view:nth-last-of-type(2){
  margin-bottom:0px!important;
}
/*end of list 2column style*/

/*list 3column style*/
.list-3>li,
.list-3>dd,
.list-3>view{
  max-width:calc( ( 100% - 2 * var(--list-colspan) ) / 3);
  min-width:calc( ( 100% - 2 * var(--list-colspan) ) / 3);
}
.list-3>li:nth-child(3n),
.list-3>dd:nth-child(3n),
.list-3>view:nth-child(3n){
  margin-right:0px!important;
}
.list-3>li:nth-last-of-type(1),
.list-3>li:nth-last-of-type(2),
.list-3>li:nth-last-of-type(3),
.list-3>dd:nth-last-of-type(1),
.list-3>dd:nth-last-of-type(2),
.list-3>dd:nth-last-of-type(3),
.list-3>view:nth-last-of-type(1),
.list-3>view:nth-last-of-type(2),
.list-3>view:nth-last-of-type(3){
  margin-bottom:0px!important;
}
/*end of list 3column style*/

/*list 4column style*/
.list-4>li,
.list-4>dd,
.list-4>view{
  max-width:calc( ( 100% - 3 * var(--list-colspan) ) / 4);
  min-width:calc( ( 100% - 3 * var(--list-colspan) ) / 4);
}
.list-4>li:nth-child(4n),
.list-4>dd:nth-child(4n),
.list-4>view:nth-child(4n){
  margin-right:0px!important;
}
.list-4>li:nth-last-of-type(1),
.list-4>li:nth-last-of-type(2),
.list-4>li:nth-last-of-type(3),
.list-4>li:nth-last-of-type(4),
.list-4>dd:nth-last-of-type(1),
.list-4>dd:nth-last-of-type(2),
.list-4>dd:nth-last-of-type(3),
.list-4>dd:nth-last-of-type(4),
.list-4>view:nth-last-of-type(1),
.list-4>view:nth-last-of-type(2),
.list-4>view:nth-last-of-type(3),
.list-4>view:nth-last-of-type(4){
  margin-bottom:0px!important;
}
/*end of list 4column style*/

/*list 5column style*/
.list-5>li,
.list-5>dd,
.list-5>view{
  max-width:calc( ( 100% - 4 * var(--list-colspan) ) / 5);
  min-width:calc( ( 100% - 4 * var(--list-colspan) ) / 5);
}
.list-5>li:nth-child(5n),
.list-5>dd:nth-child(5n),
.list-5>view:nth-child(5n){
  margin-right:0px!important;
}
.list-5>li:nth-last-of-type(1),
.list-5>li:nth-last-of-type(2),
.list-5>li:nth-last-of-type(3),
.list-5>li:nth-last-of-type(4),
.list-5>li:nth-last-of-type(5),
.list-5>dd:nth-last-of-type(1),
.list-5>dd:nth-last-of-type(2),
.list-5>dd:nth-last-of-type(3),
.list-5>dd:nth-last-of-type(4),
.list-5>dd:nth-last-of-type(5),
.list-5>view:nth-last-of-type(1),
.list-5>view:nth-last-of-type(2),
.list-5>view:nth-last-of-type(3),
.list-5>view:nth-last-of-type(4),
.list-5>view:nth-last-of-type(5){
  margin-bottom:0px!important;
}
/*end of list 5column style*/

/*list 6column style*/
.list-6>li,
.list-6>dd,
.list-6>view{
  max-width:calc( ( 100% - 5 * var(--list-colspan) ) / 6);
  min-width:calc( ( 100% - 5 * var(--list-colspan) ) / 6);
}
.list-6>li:nth-child(6n),
.list-6>dd:nth-child(6n),
.list-6>view:nth-child(6n){
  margin-right:0px!important;
}
.list-6>li:nth-last-of-type(1),
.list-6>li:nth-last-of-type(2),
.list-6>li:nth-last-of-type(3),
.list-6>li:nth-last-of-type(4),
.list-6>li:nth-last-of-type(5),
.list-6>li:nth-last-of-type(6),
.list-6>dd:nth-last-of-type(1),
.list-6>dd:nth-last-of-type(2),
.list-6>dd:nth-last-of-type(3),
.list-6>dd:nth-last-of-type(4),
.list-6>dd:nth-last-of-type(5),
.list-6>dd:nth-last-of-type(6),
.list-6>view:nth-last-of-type(1),
.list-6>view:nth-last-of-type(2),
.list-6>view:nth-last-of-type(3),
.list-6>view:nth-last-of-type(4),
.list-6>view:nth-last-of-type(5),
.list-6>view:nth-last-of-type(6){
  margin-bottom:0px!important;
}
/*end of list 6column style*/

/*list 7column style*/
.list-7>li,
.list-7>dd,
.list-7>view{
  max-width:calc( ( 100% - 6 * var(--list-colspan) ) / 7);
  min-width:calc( ( 100% - 6 * var(--list-colspan) ) / 7);
}
.list-7>li:nth-child(7n),
.list-7>dd:nth-child(7n),
.list-7>view:nth-child(7n){
  margin-right:0px!important;
}
.list-7>li:nth-last-of-type(1),
.list-7>li:nth-last-of-type(2),
.list-7>li:nth-last-of-type(3),
.list-7>li:nth-last-of-type(4),
.list-7>li:nth-last-of-type(5),
.list-7>li:nth-last-of-type(6),
.list-7>li:nth-last-of-type(7),
.list-7>dd:nth-last-of-type(1),
.list-7>dd:nth-last-of-type(2),
.list-7>dd:nth-last-of-type(3),
.list-7>dd:nth-last-of-type(4),
.list-7>dd:nth-last-of-type(5),
.list-7>dd:nth-last-of-type(6),
.list-7>dd:nth-last-of-type(7),
.list-7>view:nth-last-of-type(1),
.list-7>view:nth-last-of-type(2),
.list-7>view:nth-last-of-type(3),
.list-7>view:nth-last-of-type(4),
.list-7>view:nth-last-of-type(5),
.list-7>view:nth-last-of-type(6),
.list-7>view:nth-last-of-type(7){
  margin-bottom:0px!important;
}
/*end of list 7column style*/

/*list 8column style*/
.list-8>li,
.list-8>dd,
.list-8>view{
  max-width:calc( ( 100% - 7 * var(--list-colspan) ) / 8);
  min-width:calc( ( 100% - 7 * var(--list-colspan) ) / 8);
}
.list-8>li:nth-child(8n),
.list-8>dd:nth-child(8n),
.list-8>view:nth-child(8n){
  margin-right:0px!important;
}
.list-8>li:nth-last-of-type(1),
.list-8>li:nth-last-of-type(2),
.list-8>li:nth-last-of-type(3),
.list-8>li:nth-last-of-type(4),
.list-8>li:nth-last-of-type(5),
.list-8>li:nth-last-of-type(6),
.list-8>li:nth-last-of-type(7),
.list-8>li:nth-last-of-type(8),
.list-8>dd:nth-last-of-type(1),
.list-8>dd:nth-last-of-type(2),
.list-8>dd:nth-last-of-type(3),
.list-8>dd:nth-last-of-type(4),
.list-8>dd:nth-last-of-type(5),
.list-8>dd:nth-last-of-type(6),
.list-8>dd:nth-last-of-type(7),
.list-8>dd:nth-last-of-type(8),
.list-8>view:nth-last-of-type(1),
.list-8>view:nth-last-of-type(2),
.list-8>view:nth-last-of-type(3),
.list-8>view:nth-last-of-type(4),
.list-8>view:nth-last-of-type(5),
.list-8>view:nth-last-of-type(6),
.list-8>view:nth-last-of-type(7),
.list-8>view:nth-last-of-type(8){
  margin-bottom:0px!important;
}
/*end of list 8column style*/

#MiiFrame-loading-container{
  position:fixed;
  top:0;
  left:0;
  bottom:0;
  right:0;
  background-color:rgba(0,0,0,0.5);
  z-index:999999999;
  transition: all .2s;
}
.miiframe-loading-form{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  background:#fff;
  color:#000;
  width:calc( 100% - 60px );
  max-width:200px;
  height:80px;
  line-height:80px;
  padding:0px;
  text-align:center;
  border-radius: 8px;
  box-shadow:2px 2px 10px 2px #333;
  box-sizing:border-box;
  transition: all .2s;
}

/*btn style*/
.btn {
  line-height:100%;
  font-size: 14px;
  border-radius: 0px;
  text-align:center;
  font-weight: 0;
  color: #fff;
  display: inline-block!important;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor:pointer;
  box-shadow:2px 2px 2px 4px rgba(0,0,0,0.3);
  -webkit-box-shadow:2px 2px 4px rgba(0,0,0,0.3);
  -moz-box-shadow:2px 2px 2px 4px rgba(0,0,0,0.3);
  position:relative;
}

.btn-fluid{
  width:100%!important;
  height:100%!important;
}

.btn-img{
  padding:0px 30px!important;
  line-height:30px;
  display:flex!important;
  align-items:center!important;
  justify-content: center!important;
}
.btn-img img{
  flex:1;
  width:16px;
  height:16px;
  margin-right:10px;
}

.btn-common{
    padding:0px 30px!important;
    line-height:30px;
}

.btn-clear{
  padding:5px 10px!important;
}

.btn-small{
  padding:0px 5px!important;
}

.btn-no-shadow{
  box-shadow: none!important;
}

.btn:focus,
.btn:active {
  box-shadow: none;
  outline: none;
  color: #fff;
}

.btn-blue {
  border: 1px solid #0066FF;
  background: #0066FF;
  position: relative;
  color: #fff!important;
  z-index: 1;
  border-radius: 2px;
}

.btn-blue:hover {
  color: #fff!important;
  background: #0044CC;
  border-color: #0044CC;
  transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
}

.btn-white {
  border: 1px solid #ccc;
  background: #fff;
  position: relative;
  color:#333!important;
  z-index: 1;
  border-radius: 2px;
}
.btn-white:hover{
  color: #333!important;
  background: #ccc;
  border-color: #ccc;
  transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
}

.btn-red {
  border: 1px solid #FF0000;
  background: #FF0000;
  position: relative;
  color:#fff!important;
  z-index: 1;
  border-radius: 2px;
}
.btn-red:hover{
  color: #fff!important;
  background: #AA0000;
  border-color:#AA0000;
  transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
}

.btn-yellow {
  border: 1px solid #FFAA00;
  background: #FFAA00;
  position: relative;
  color:#fff!important;
  z-index: 1;
  border-radius: 2px;
}
.btn-yellow:hover{
  color: #fff!important;
  background: #FF6600;
  border-color:#FF6600;
  transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
}

.btn-green {
  border: 1px solid #00AA00;
  background: #00AA00;
  position: relative;
  color:#fff!important;
  z-index: 1;
  border-radius: 2px;
}
.btn-green:hover{
  color: #fff!important;
  background: #006600;
  border-color:#006600;
  transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
}

.btn-gray {
  border: 1px solid #ccc;
  background: #e1e1e1;
  position: relative;
  color:#000!important;
  z-index: 1;
  border-radius: 2px;
}
.btn-gray:hover{
  color: #000!important;
  background: #ccc;
  border-color:#ccc;
  transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
}

.btn-black {
  border: 1px solid #333;
  background: #333;
  position: relative;
  color:#fff!important;
  z-index: 1;
  border-radius: 2px;
}
.btn-black:hover{
  color: #fff!important;
  background: #000;
  border-color:#000;
  transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
}

.btn-border {
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 2px;
}

.btn-border:hover {
  border-color:#ccc;
  color: #000;
  background-color:#ccc;
}

.btn-border-white {
  color: #fff!important;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 2px;
}

.btn-border-white:hover {
  border-color:#ccc;
  color: #000!important;
  background-color:#ccc;
}

.btn-border-gray {
  color: #000!important;
  background-color: transparent;
  border: 1px solid #999;
  border-radius: 2px;
}

.btn-border-gray:hover {
  border-color:#999;
  color: #000!important;
  background-color:#ccc;
}

.btn-border-blue {
  color: #0066FF!important;
  background-color: transparent;
  border: 1px solid #0066FF;
  border-radius: 2px;
}

.btn-border-blue:hover {
  border-color:#0066FF;
  color: #fff!important;
  background-color:#0066FF;
}

.btn-border-red {
  color: #FF0000!important;
  background-color: transparent;
  border: 1px solid #FF0000;
  border-radius: 2px;
}

.btn-border-red:hover {
  border-color:#FF0000;
  color: #fff!important;
  background-color:#FF0000;
}

.btn-border-yellow {
  color: #FFAA00!important;
  background-color: transparent;
  border: 1px solid #FFAA00;
  border-radius: 2px;
}

.btn-border-yellow:hover {
  border-color:#FFAA00;
  color: #fff!important;
  background-color:#FFAA00;
}

.btn-border-green {
  color: #00AA00!important;
  background-color: transparent;
  border: 1px solid #00AA00;
  border-radius: 2px;
}

.btn-border-green:hover {
  border-color:#00AA00;
  color: #fff!important;
  background-color:#00AA00;
}

.btn-border-black {
  color: #333!important;
  background-color: transparent;
  border: 1px solid #333;
  border-radius: 2px;
}

.btn-border-black:hover {
  border-color:#333;
  color: #fff!important;
  background-color:#333;
}

.btn-lg {
  padding: 14px 33px;
  text-transform: uppercase;
  font-size: 16px;
}

.btn-rm {
  padding: 7px 0px;
  color: #999;
  text-transform: capitalize;
}

.btn-rm i {
  vertical-align: middle;
}

button:focus {
  outline: none !important;
}
.btn-cycle{
  border-radius:25px!important;
}
/*end of btn style*/

.text-center{
  text-align:center;
}

.text-line-1 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.text-line-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.text-line-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.text-line-4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.text-line-5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.f-left{text-align:left;}
.f-center{text-align:center;}
.f-right{text-align:right;}

.f-16{font-size:16px;}
.f-20{font-size:20px;}
.f-24{font-size:24px;}

.min-height-100{min-height:100px;}
.min-height-200{min-height:200px;}
.min-height-300{min-height:300px;}
.min-height-400{min-height:400px;}
.min-height-500{min-height:500px;}

.component{
  position:absolute;
  overflow:visible;
  transform-origin:center center;
}
.component-maker{
  position:absolute;
  background:rgba(0,20,255, 0.5);
  border:1px solid #333;
}
.component-client{
  position:absolute;
  left:0px;
  top:0px;
}
.component-edit{
  position:absolute;
  cursor:default;
}
.editor-mask{
  position:absolute;
  background:rgba(0,20,255, 0.5);
  /*border:1px solid #0066FF;*/
  top:0px;
  left:0px;
  right:0px;
  bottom:0px;
  width:100%;
  height:100%;
  z-index:5000000;
  display:none;
}
.editor-action{
  position:absolute;
  background:#fff;
  width:10px;
  height:10px;
  border:1px solid #0066FF;
  /*border-radius:50%;*/
  z-index:5900000;
  zoom:1!important;
  box-sizing: border-box;
}
.editor-action-move{
  top:0px;
  left:0px;
  right:0px;
  bottom:0px;
  width:100%!important;
  height:100%!important;
  border:none!important;
  border-radius: 0px!important;
  cursor:default;
  background:none!important;
}
.editor-action-up{
  top:-5px;
  left:50%;
  transform:translate(-50%, 0);
  cursor:s-resize;
}
.editor-action-down{
  bottom:-5px;
  left:50%;
  transform:translate(-50%, 0);
  cursor:s-resize;
}
.editor-action-left{
  top:50%;
  left:-5px;
  transform:translate(0, -50%);
  cursor:w-resize;
}
.editor-action-right{
  top:50%;
  right:-5px;
  transform:translate(0, -50%);
  cursor:w-resize;
}
.editor-action-left-up{
  top:-5px;
  left:-5px;
  cursor:nwse-resize;
}
.editor-action-right-up{
  top:-5px;
  right:-5px;
  cursor:nesw-resize;
}
.editor-action-left-down{
  bottom:-5px;
  left:-5px;
  cursor:nesw-resize;
}
.editor-action-right-down{
  bottom:-5px;
  right:-5px;
  cursor:nwse-resize;
}
.editor-action-rotate{
  top:-50px;
  left:50%;
  transform:translate(-50%, 0);
  cursor:w-resize;
}
.editor-action-rotate:before{
  content:"";
  position:absolute;
  left:3px;
  width:0px;
  height:40px;
  bottom:-40px;
  border-left:2px solid #0066FF;
}
.form{
  box-sizing: border-box;
  padding:15px;
}
.form-border{
  border:1px solid #ccc;
}
.form-border-radius{
  border-radius: 8px;
}
.form .form-caption{
  font-size:24px;
  margin-bottom:15px;
  padding-bottom:15px;
  border-bottom:1px solid #ccc;
}
.form .form-item{
  display:flex;
  padding-top:5px;
  padding-bottom:5px;
}
.form .form-item .form-item-label{
  flex:1;
  max-width:100px;
  text-align:left;
  margin-right:10px;
  display:flex;
  flex-direction: column;
  justify-content: center;
}
.form .form-item .form-item-text{
  flex:1;
  text-align:left;
}
.form .form-item .form-item-input{
  flex:1;
  text-align:left;
  line-height:40px;
}
.form .form-item .form-item-input-small input,
.form .form-item .form-item-input-small select{
  width:50px!important;
  min-width:50px!important;
}
.form .form-item .form-item-input textarea{
  border-radius: 8px;
  width:100%;
  min-width:200px;
  max-width:100%;
  height:200px!important;
  outline:none;
  padding:10px;
  box-sizing: border-box;
  border:2px solid #ccc;
}
.form .form-item .form-item-input input,
.form .form-item .form-item-input select{
  border-radius: 8px;
  width:100%;
  min-width:200px;
  max-width:100%;
  outline:none;
  padding:10px;
  box-sizing: border-box;
  border:2px solid #ccc;
}
.form .form-item .form-item-input input:focus,
.form .form-item .form-item-input select:focus,
.form .form-item .form-item-input textarea:focus{
  border:2px solid var(--blue);
}
.form .form-bottom{
  border-top:1px solid #ccc;
  padding-top:15px;
  margin-top:15px;
}

.layui-layer-title{
  background:#fff!important;
  border:none!important;
}

.layui-layer,
.layui-layer-title{
  border-top-left-radius: 12px!important;
  border-top-right-radius: 12px!important;
}

.layui-layer,
.layui-layer-content,
.layui-layer-content iframe{
  border-bottom-left-radius: 12px!important;
  border-bottom-right-radius: 12px!important;
}

.layui-layer-setwin .layui-layer-closetrue {
  background-position: -179px -31px;
  cursor: pointer
}

.layui-layer-setwin a {
  position: absolute;
  width: 32px!important;
  height: 40px!important;
  top: -25px!important;
  right:-25px!important;
}


@media (max-width:574px) {
  .desktop,.pad{display:none;}
  .mobile{display:inherit;}
}
@media (max-width:800px) {
  .desktop,.pad{display:none;}
  .mobile{display:inherit;}
}
@media (max-width:1000px) {
  .desktop,.pad{display:none;}
  .mobile{display:inherit;}
}
@media (max-width:1200px) {
  .desktop,.pad{display:none;}
  .mobile{display:inherit;}
}