/* theme */
@font-face {
  font-family: "Regular";
  src: url('../res/fonts/Montserrat-Regular.ttf') format('truetype');
}

@font-face {
  font-family: "SemiBold";
  src: url('../res/fonts/Montserrat-SemiBold.ttf') format('truetype');
}

@font-face {
  font-family: "SemiBoldItalic";
  src: url('../res/fonts/Montserrat-SemiBoldItalic.ttf') format('truetype');
}

@font-face {
  font-family: "Medium";
  src: url('../res/fonts/Montserrat-Medium.ttf') format('truetype');
}

@font-face {
  font-family: "MediumItalic";
  src: url('../res/fonts/Montserrat-MediumItalic.ttf') format('truetype');
}

@font-face {
  font-family: "Bold";
  src: url('../res/fonts/Montserrat-Bold.ttf') format('truetype');
}
@font-face {
  font-family: "BoldItalic";
  src: url('../res/fonts/Montserrat-BoldItalic.ttf') format('truetype');
}

@font-face {
  font-family: "ExtraBold";
  src: url('../res/fonts/Montserrat-ExtraBold.ttf') format('truetype');
}

@font-face {
  font-family: "Nunito ExtraBold";
  src: url('../res/fonts/Montserrat-ExtraBoldItalic.ttf') format('truetype');
}

@font-face {
  font-family: "Nunito Regular";
  src: url('../res/fonts/Montserrat-Black.ttf') format('truetype');
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}

/*style */
html {
  font-family: 'Regular', 'Helvetica', sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  height: 100%;
  
}

body {
  margin: 0;
  padding:0; 
  width: 100%;
  height: 100%;
  background: #3b424d;
  color: #eceeef;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-y:scroll;
}

* {
  box-sizing: border-box;
}

.noscroll {
  overflow-y:hidden;
  width: calc(100% - 17px);
}

/*layout*/

#header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #3b424d;
  height: 60px;
  left: 0;
  visibility: visible;
  text-align: center;
  /*box-shadow: 3px -4px 4px 2px;*/
  box-shadow: 0 4px 8px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.05);
  z-index: 1;

  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;


}


/*layout1*/
#cont {
  /*background: rgb(211, 200, 200);*/
  margin: 0 auto;
  overflow: auto;
  max-width: 1230px;
  padding: 60px 0;
  overflow-x: hidden;
 
}
/*
#wrapper {
  max-width: 1230px;
  margin: 0 auto;
  height: 100%;
}
*/
/*layout2*/
#cont2 {
  /*background: rgb(211, 200, 200);*/
  overflow: auto;
  padding: 60px 0;
}




#footer {
  position: fixed;
  left: 0;
  width: 100%;
  background: #3B424D;
  bottom: 0;
  height: 72px;
}

#wrapper2 {
  display: flex;
  margin: 0 auto;
  height: 100%;
  
  
  text-align: center;
}

.mleft {
  
 
  
  width: 50px;  
}

.mcenter {
  
  width: 100%;
  margin: 0 50px;
  text-align: center;
}

.mright {
  /*margin-left: 200px;*/
  
  
  width: 50px;  
  
}


.meni {
  /*
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  align-self: flex-start;
*/
position: fixed;
  margin-top: 30px;
  width: 48px;
  background-color:#454D5A;
  border-radius: 24px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.2);
  }
.meni .ic {
  margin: 2px;
  width:44px;
  height: 44px;
  cursor: pointer;
  border-radius: 24px;
  transition: all .2s ease-in-out;
  }
  .meni .ic:hover {
  background-color:#3B424D;
  }
  .meni .ic:active {
  background-color:#727D8D;
  }
  .meni .ic-user {
  background: url(../img/svg/user-24px-2.svg) no-repeat 50% 50%;
  background-size: 24px;
  }
  .meni .ic-folder {
  background: url(../img/svg/folder-24px-2.svg) no-repeat 50% 50%;
  background-size: 24px;
  margin:0 2px;
  }
  .meni .ic-settings {
  background: url(../img/svg/settings-24px-2.svg) no-repeat 50% 50%;
  background-size: 24px;
  }




.visible {
  visibility: visible;
  opacity: 1;
  transition: opacity 1s linear;
}
.hidden {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 1s, opacity 1s linear;
}

.tooltip {
  position: relative;
}
.tooltip:before,
.tooltip:after {
  display: block;
  opacity: 0;
  margin-top: 20px;
  pointer-events: none;
  position: absolute;
}
/*
.tooltip:after {
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(0,0,0,.75); 
  border-left: 6px solid transparent;
  content: '';
  height: 0;
    top: 40px;
    left: 40px;
  width: 0;
}
*/
.tooltip:before {
  background: rgba(0,0,0,.75);
  border-radius: 2px;
  color: #fff;
  content: attr(data-title);
  font-size: 14px;
  padding: 6px 10px;
    top: 26px;
  white-space: nowrap;
  z-index:2000;
}

/* the animations */
/* fade */
.tooltip.fade:after,
.tooltip.fade:before {
  transform: translate3d(0,-10px,0);
  transition: all .15s ease-in-out;
}
.tooltip.fade:hover:after,
.tooltip.fade:hover:before {
  opacity: 1;
  transform: translate3d(0,0,0);
}

/* expand */
.tooltip.expand:before {
  transform: scale3d(.2,.2,1);
  transition: all .2s ease-in-out;
}
.tooltip.expand:after {
  transform: translate3d(0,6px,0);
  transition: all .1s ease-in-out;
}
.tooltip.expand:hover:before,
.tooltip.expand:hover:after {
  opacity: 1;
  transform: scale3d(1,1,1);
}
.tooltip.expand:hover:after {
  transition: all .2s .1s ease-in-out;
}

/* swing */
.tooltip.swing:before,
.tooltip.swing:after {
  transform: translate3d(0,30px,0) rotate3d(0,0,1,60deg);
  transform-origin: 0 0;
  transition: transform .15s ease-in-out, opacity .2s;
}
.tooltip.swing:after {
  transform: translate3d(0,60px,0);
  transition: transform .15s ease-in-out, opacity .2s;
}
.tooltip.swing:hover:before,
.tooltip.swing:hover:after {
  opacity: 1;
  transform: translate3d(0,0,0) rotate3d(1,1,1,0deg);
}



/* Popup */

div.fadeMe {
opacity:    0.7; 
background: #000; 
width:      100%;
height:     100%; 
z-index:    1001;
top:        0; 
left:       0; 
position:   fixed; 
/*overflow-y: scroll;*/
}



.popup {
padding:12px;
position: fixed;
top: 50%;
left: 50%;
margin-right: -40%;
transform: translate(-50%, -50%);
width:100%;
max-width:600px;
z-index:1002;
text-align: left;
background:#3B424D;
border-radius: 4px;
box-shadow: 0 3px 6px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.2);
}


h1 {
font-family: "Extrabold";
font-size: 38px;
color: #ECEEEF;
}

.popup .title {
font-family: "Bold";
font-size: 14px;
color: #727d8d;
line-height: 24px;
padding: 6px 12px 0 12px;
}
.popup p {
font-family: "Regular";
font-size: 14px;
padding:12px;
}

.popup .linkarea {
position: relative;
padding:12px 24px;
margin:0 12px;
background-color: #252a31;
font-family: "Medium";
font-size: 14px;
color:#727D8D;
border-radius:12px;
border: 1px solid #252a31;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.popup .clcont {
width: 190px;
}

.popup .inputlink {
width: 100%;
word-wrap: break-word;
overflow: auto;
}

.popup .inputlink::selection {
background: #2b3039;
color: #D4D8DE;
}


.popup .disable {
background-color: #3B424D;
border: 1px solid #727D8D;
}
.popup .copylink {
float: right;
cursor: pointer;
color:#00CEFF;
font-family: "Bold";
font-size:12px;
line-height: 18px;
padding: 16px 0;
border-radius:24px;
top: 50%;
transform: translateY(-50%);
transition: all .2s ease-in-out;
}
.popup .copylink:hover {
color:#D4D8DE;
}


/* TODO: LINK AKTIVAN */


.popup .button {
width:fit-content;
padding:12px 24px;
margin:24px auto 12px auto;
text-align: center;
background-color: #727d8d;
font-family: "Bold";
font-size: 14px;
color:#2b3039;
border-radius:24px;
cursor: pointer;
box-shadow: 0 3px 6px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.2);
transition: all .1s linear;
user-select: none;
}
.popup .button:hover {
background-color:#D4D8DE;
color:#252a31;
}
.popup .button:active {
background-color:#D4D8DE;
color:#252a31;
transform: translateY(1px);
box-shadow: none;
}
.popup .btn-delete {
  width:100%;
  background-color:#EF2E4C; 
  border:1px solid #EF2E4C; 
  color:#ECEEEF;
}
.popup .btn-delete:hover {
width:100%;
background-color:#FF405D; 
color:#ECEEEF;
}
.popup .btn-generate {
width:100%;
background-color:#727D8D; 
border:1px solid #727D8D; 
color:#ECEEEF;
margin: 8px 0;
}
.popup .btn-generate:hover {
background-color:#7C8798;
color:#ECEEEF;
}
.popup .btn-links {
width:100%;
background-color:#ECEEEF;
border:1px solid #727D8D; 
color:#727D8D;
box-shadow: 0 3px 6px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.08);
margin: 24px 0 8px 0;
}
.popup .btn-links:hover {
background-color:#E2E5E6;
border:1px solid #727D8D; 
color:#727D8D;
}
.close {
float: right;
padding: 16px;
width: 24px;
height: 24px;
cursor: pointer;
background: #3b424d url(../img/svg/close-24px.svg) no-repeat center;
background-size: 24px;
border-radius:24px;
transition: all .2s ease-in-out;
}
.close:hover {
background: #282C34 url(../img/svg/close-24px.svg) no-repeat center;
background-size: 24px;
}

.popup .highlight {
color:#D4D8DE;
}
.noselect {
-webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
   -khtml-user-select: none; /* Konqueror HTML */
     -moz-user-select: none; /* Firefox */
      -ms-user-select: none; /* Internet Explorer/Edge */
          user-select: none; /* Non-prefixed version, currently
                                supported by Chrome and Opera */
}

.search_highlight {
background-color: #00ceff;
color: #2b3039;
}


.linked {
float: right;
margin: -2px 0 0 6px;
width: 17px;
height: 17px;
background: url(../img/svg/link_24_px.svg) no-repeat center;
background-size: 17px;
}

input, .minput {
  width: calc(100% - 24px);
  background-color: #2B3039;
  cursor: text;
  border: none;
  outline: none;
  padding: 12px 24px;
  margin: 24px 12px 12px 12px;
  text-align: left;
  font-size: 14px;
  font-family: "Medium";
  color: #ECEEEF;
  border-radius: 24px;
  transition: all .1s linear;
}






.row-users {
flex-direction: column;
}
.li-users {
width:calc(100% - 32px);
margin: 0 16px 1px 16px;
background-color:#2b3039;
text-align: left;
padding:8px 16px 8px 16px;
border-radius: 4px;
cursor:pointer;
}
.li-users:hover {
background-color: #303640;
transition: all .2s ease-in-out;
}
.li-users h1 {
font-family: "Bold";
font-size: 14px;
color:#ECEEEF;
}
.li-users > .date-time {
padding:0;
}
.li-users .ic-user {
float: left;
width:32px;
height: 32px;
margin-right:16px;
background: url(../img/svg/user-24px-2.svg) no-repeat 50% 50%;
background-size: 24px;
}

/*grid*/
/*layout1*/

#wrapper {
  display: grid;
  grid-gap: 0px;
  /*
  grid-template-areas: "header" "left" "center" "right" "footer";
  */
  grid-template-areas:"left" "center" "right";
  grid-template-rows: auto;
  width: 100%;
}

#g1head {
  grid-area: header;
  background-color: beige;
  display: none;
}

#g1left {
  grid-area: left;
  background-color: #eee;
}


#g1center {
  grid-area: center;
  background-color: #fff;
}


#g1right {
  grid-area: right;
  background-color: bisque;
}

#g1foot {
  grid-area: footer;
  background-color: beige;
}



#folders, #folder-search, #folder-details {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  /*justify-content: center;*/
  margin: 0;
  padding: 0;
  width: 100%;
}


/*layout2*/

.mbox, .pbox, .ghost {

  list-style-type: none;
  /*border: 1px solid gray;*/
  margin: 24px 16px;
  padding: 0px;
  width: 178px;

  /*
  float: left;
  
  width: 178px;
  height: 290px;
  
  margin: 24px;
  */
  
}

.ghost {
  visibility: hidden;
}

/*
.mbox:hover {
 cursor: pointer;
}
.mbox:hover > .mb { 
  cursor: pointer;
  background-color: #303640;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.05); 
}
*/ 

.mbox > .mb:hover { 
  cursor: pointer;
  background-color: #303640;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.05); 
}

.pbox > .mb { 
  opacity: 0.8;
}

/*
.pbox:hover > .mb { 
  cursor: pointer;
  background-color: #303640;
  opacity: 1;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.05); 
}
*/

.pbox > .mb:hover { 
  
  cursor: pointer;
  background-color: #303640;
  opacity: 1;
  /*box-shadow: 0 4px 8px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.05); */
  box-shadow: -4px 4px 4px rgba(0,0,0,0.08), -4px 4px 4px rgba(0,0,0,0.04);
}

.mb {
  opacity: .8;
  text-align: right;
  height: 226px;
  border-radius: 4px;
  background: #2b3039 url("../img/svg/folder-24px.svg") no-repeat 50% 60%;
  transition: all .2s linear;
}

.bg {
  background-size: 100px 100px;
}


.mb1 {
  background: #2b3039;
  text-align: right;
  height: 48px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.mb2 {
  height: 178px;
  background: #2b3039 url("../img/folder.png") no-repeat 50% 40%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  
}
.mb3 {
  position: relative;
  height: 64px;
  transition: all .1s linear;
}

.mb4 {
  position: relative;
  height: 74px;
  transition: all .1s linear;
}

.mb3 > b, .mb4 > b {
  position: absolute;
  top:12px;
  left: 6px;
  font-size: 16px;
  font-family:"Bold";
  color: #fff;
  width: 140px;
  text-overflow: ellipsis;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mb3 > i, .mb4 > i {
  position: absolute;
  top:12px;
  right: 6px;
  color: #00CEFF;
  font-size: 16px;
  font-style: normal;
  font-family:"Bold";
}

.mb3 > p, .mb4 > p {
  position: absolute;
  margin: 0;
  padding: 0;
  top:32px;
  left: 6px;
  font-size: 12px;
  font-family: "Medium";
  color: #727d8d;
}

.mb3 > em, .mb4 > em {
  font-family: "Semibold";
  position: absolute;
  margin: 0;
  padding: 0;
  top:48px;
  left: 6px;
  width: 166px;
  text-overflow: ellipsis;
  text-align: left;
  font-size: 10px;
  color: #727d8d;
}

.mb4 b {
  color: #727d8d;
}

.mb4 > em {
  top:32px;
  width: 140px;
  color: #fff;
  font-size: 12px;
}

.mb4 > p {
  top:48px;
}


.mb4 > .imgsize {
  font-family: "Semibold";
  position: absolute;
  margin: 0;
  padding: 0;
  top: 49px;
  right: 0;
  font-size: 10px;
  color: #727d8d;
}

.mb4 > a .imgdownlaod {
  position: absolute;
  top: 10px;
  right: 0px;
  width: 36px;
  height: 36px;
  border-radius: 24px;
  cursor: pointer;
  background: url(../img/svg/download2-24px.svg) no-repeat 50% 35%;
  background-size: 24px;
  transition: all .2s ease-in-out;
}
.mb4 > a .imgdownlaod:hover {
  background: #282C34 url(../img/svg/download3-24px.svg) no-repeat 50% 35%;
  background-size: 24px;
}

.mb4 > .labels {
  position: absolute;
  top:64px;
  width: 164px;
  height: 10px;
  line-height: 10px;
  text-align: left;
  padding: 0 5px;
}

.labels > .lname {
  cursor: pointer; 
  height: 8px;
  width: 8px;
  padding: 0;
  margin: 0px 2px;
  background-color: rgb(232, 231, 238);
  border-radius: 50%;
  display: inline-block;
}


/* LOGIN MATE */
.logo-lb {
  position: fixed;
  z-index: -1;
  width:120px;
  height: 56px;
  left:24px;
  bottom:16px;
  text-align: left;
  padding-left:4px;
  background: url(../img/svg/spa-logo.svg) no-repeat;
}
.logo-lb span {
  position: absolute;
  width:120px;
  bottom: 0;
  font-size: 8px;
  color:#727D8D;
}



.qr-whitebox {
  margin: 40px 0;
  padding: 40px 40px 32px 40px;
  text-align: center;
  background-color: #ECEEEF;
  border-radius:42px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.05); 
}

.log-center h1 {
  margin: 8px 0;
}
.log-center ul {
  list-style-type: decimal;
}
.log-center li {
  font-size: 12px;
  color: #ECEEEF;
  margin: 8px 0 0 16px;
}
.log-center span {
  color: #ECEEEF;
  font-family: "Bold";
}

.log-center p {
  font-size:14px;
  color:#D4D8DE;
}
.qr-whitebox p {
  color:#727D8D;
}

.qr-whitebox img {
  margin:24px;
  width:124px;
  height: 124px;
}



/* USER */
.user-info {
  background: #2B3039;
  max-width: 400px;
  border-radius: 16px;
  padding:24px;
}
hr {
  border:none;
  border-top:1px dashed #727D8D;
  height:1px;
  width:100%;
}








.date-sep {
  margin:36px auto 12px auto;
  padding:6px;
}
.date-time {
  font-size: 10px;
  color: #727d8d;
  padding: 8px 0;
  text-align: left;
  font-family: "Medium";
  border-radius: 4px;
}
.date-line {
  height: 1px;
  margin-top: 12px;
  width:100%;
  background-color: #282C34;
}


.links {
  display: inline-block;
  width:40px;
  height: 40px;
  padding: 4px;
  margin:8px;
  cursor: pointer;
  background: url(../img/svg/share-24px.svg) no-repeat center;
  background-size: 24px;
  border-radius:24px;
  transition: all .2s ease-in-out;
}
.links:hover {
  /* ne radi na IE */
  background: #282C34 url(../img/svg/share-24px-2.svg) no-repeat center;
  background-size: 24px;
}


.section {
  margin: 0 auto;
  max-width: 1200px;
  text-align: left;
}

h1.section-headline {
  margin: 0;
  padding: 10px 0 0 20px;
  font-size: 0.9rem;
  color: #0385d0;
}

.fromnet {
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  
}

.fbox1 {
  display: flex;
  flex-direction: row;
  flex-basis: 100%;
  padding: 8px;

  /*
  max-width: 600px;
  min-width: 390px;
  */
}


.fbox2 {
  display: flex;
  flex-direction: row;
  flex-basis: 100%;
  width: 178px; 
  height: 224px;
  /*padding: 8px; */

  /*
  max-width: 600px;
  min-width: 390px;
  */
}

.empty {
  width: 400px;
  margin:0 auto;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-right: -40%;
  line-height: 26px;
  transform: translate(-50%, -50%);
}
.empty > .bg-empty {
  background: url(../img/svg/no-result.svg) no-repeat 50% 50%;
  height: 160px;
}
.empty > .bg-h {
  margin-top:12px;
  font-size: 32px;
  color:#282C34;
  font-family: "ExtraBold";
}
.empty > .bg-h > .bg-text {
  font-size: 14px;
  font-family: "Bold";
}


/* full width background */
.fwbg {
  width: 100%;
  padding: 10px 0;
}
.bggrey10 {
  background: #faf7f2;
}

.bgwhite10 {
  /*background: #fff;*/
}

.bgpale10 {
  background: #f2faf8;
}

@media (min-width: 440px) {

  .fbox2 {
      flex-direction: column;
      /*padding: 8px;*/
  }

}



@media (min-width: 580px) {

  #wrapper {

      grid-template-columns: 2fr 1fr;
      grid-template-rows: [row1-start]  auto [row2-start] auto [last-line];
      grid-template-areas: 
          "left  right" 
          "center right" 
          "center right" 
      }

  
  .fbox2 {
      flex-direction: row;
      flex-basis: 50%;
      /*padding: 8px;*/
  }
  
}



@media (min-width: 640px) {

  .fbox1 {
      flex-direction: row;
      flex-basis: 50%;
      padding: 8px;
  }

}

@media (min-width: 780px) {

  #wrapper {
      grid-template-columns: 1fr 2fr 1fr;
      grid-template-rows: [row1-start]  auto [last-line];
      grid-template-areas: 
          "left    center right" 
  }

  
  .fbox2 {
      flex-direction: row;
      flex-basis: 33.33%;
      /*padding: 8px;*/
  }
  .row-users {
      display: flex;
      flex-direction: row;
      justify-content: center;
      flex-wrap: wrap;
    }
  .li-users {
      width:calc(50% - 32px);
  }
}


@media (min-width: 1065px) {

  .fbox2 {
      flex-direction: row;
      flex-basis: 25%;
      /*padding: 8px;*/
  }

}
/*content*/

#cleft {
  background-color: #eee;

}






/*Loading animations*/

.loading-container {
  width: 100%;
  height: 25rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: #3b424d;
  /*
  font-size: .8rem;
  font-style: italic;
  color: rgb(35, 95, 185);
  */
}


.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-ellipsis div {
  position: absolute;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #00CEFF;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 26px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 45px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}



.log-center {
  width:300px;
  height: 600px;

  position: absolute;
top:0;
bottom: 0;
left: 0;
right: 0;
  
margin: auto;
/*
  position: fixed;
  top: 50%;
  left: 50%;
  margin-right: -40%;
  transform: translate(-50%, -50%);
*/
  text-align: left;

  -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 2s; /* Firefox < 16 */
   -ms-animation: fadein 2s; /* Internet Explorer */
    -o-animation: fadein 2s; /* Opera < 12.1 */
       animation: fadein 2s;
}

@keyframes fadein {
from { opacity: 0; }
to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
from { opacity: 0; }
to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
from { opacity: 0; }
to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
from { opacity: 0; }
to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
from { opacity: 0; }
to   { opacity: 1; }
}

#qrc {
  display: inline-block;
  width: 148px;
  height: 148px;
}

/*header*/



#header > .hzone1 {
  float:left;
}

#header-select > .hleft {
  float:left;
}

#header-select > .hright {
  float:right;
}

#header-select > .hcenter {
  display: -webkit-flex; 
  display: flex;
  flex-direction: raw;
  justify-content: space-around;
  max-width:350px;
  min-width: 250px;
  margin: 0 auto;
  height: 60px;
}

.hcenter > b {
  display: inline-block;
  margin-left: 20px;
  line-height: 62px;
  font-size: 16px;
  font-family: "Bold";
}

#header > .hzone2 {
  display: -webkit-flex; 
  display: flex;
  flex-direction: raw;
  justify-content: space-around;
  max-width:350px;
  min-width: 250px;
  margin: 0 auto;
  height: 60px;
}

#header > .hzone3 {
  float: right;
}

#header .menu {
  font-family: "Nunito ExtraBold";
  line-height: 56px;
  border-bottom: 4px solid white;
  color: #3a3a3a;
  text-align: center;
  text-decoration: none;
  font-size: 15px;
  flex-basis: 110px;
  cursor: pointer; 
}

#header .active {
  border-bottom: 4px solid #3a3a3a;
}

#header .menu:hover {
  border-bottom: 4px solid #3a3a3a;
  background-color:#f7f7f7;
}

#header #micon {
  display: none;
  text-align: left;
  margin-left: 20px;
  line-height: 56px;
  /*width: 260px;*/
  height: 60px;
  cursor: pointer;
}

#header #micon > h4 {
  display: inline;
  margin-left: 15px;
  line-height: 56px;
}

.hzone1 .ic-home {
  float: left;
  height: 64px;
  width:64px;
  background: url("../img/svg/home-24px.svg") no-repeat 50% 50%;
  background-size: 24px;
}
.hzone1 .cont {
float: left;
height: 64px;
padding:14px 16px 14px 0;
}
.hzone1 .service-name {
font-family: "Bold";
font-size: 14px;
text-align: left;
}
.hzone1 .username {
font-size: 12px;
text-align: left;
}


.hzone3 .cont {
float: left;
height: 64px;
padding:12px 16px;
}
.hzone3 .cont .ic {
float: right;
height: 40px;
width:40px;
cursor: pointer;
border-radius: 20px;
transition: all .2s linear;
}
.hzone3 .ic-logout {
background: url("../img/svg/logout-24px.svg") no-repeat 50% 50%;
background-size: 24px;
}
.hzone3 .ic-calendar {
background: url("../img/svg/calendar-24px.svg") no-repeat 50% 50%;
background-size: 24px;
}
.hzone3 .ic-trash {
background: url("../img/svg/trash-24px.svg") no-repeat 50% 50%;
background-size: 24px;
}
.hzone3 .ic-download {
background: url("../img/svg/download-24px.svg") no-repeat 50% 50%;
background-size: 24px;
}
.hzone3 .ic-grid {
background: url("../img/svg/grid-block-24px.svg") no-repeat 50% 50%;
background-size: 24px;
}
.hzone3 .cont .ic:hover {
background-color: #303640;
}



@media screen and (max-width: 780px) {


  #header {
      text-align: left;
  }  
  #header > .hzone1 {
      display:none;
  }
  #header > .hzone2 {
      display: -webkit-flex; 
      display: flex;
      flex-direction: raw;
      justify-content: space-around;
      margin: 0;
 } 

}


@media screen and (max-width: 580px) {


  #header #micon {
    float:left;
    display: block;
  }

  #header {
      text-align: left;
      position: fixed;
      top: 0;
      width: 100%;
      height: 60px;
      left: 0;
  }
  
  #header > .hzone1 {
      display:none;
  }
  #header > .hzone2 {
      display: none;
      background: #fff;
      position: absolute;
      top: 60px;
      flex-direction: column;
      height: 240px;   
      width: 100%;
  }

   
  /*       
  #header > .hzone2 {
      margin: 0;
  } 
  */
  #header .menu:hover {
    border-bottom: 4px solid #fff;

  }

  #header .active {
      border-left: 4px solid #3a3a3a;
      border-bottom: 4px solid #fff;
  }
}



#header .closemenu {
  display: none;    
}



#back, #close_selecting {
  float: left;
  height: 60px;
  display: none;
}

#close_selecting {
  display: block;
}

#back > img, #close_selecting > img {
  padding: 18px;
  width: 60px;
  height: 60px;
}
#close_selecting > img {
  fill: #fff;
}

#back > img:hover {
background:#303640;  
cursor: pointer;
transition: ease-in-out .2s;
}

#close_selecting > img:hover {
  background: #0098DB;  
  cursor: pointer;
  transition: ease-in-out .2s;
}

.back > b {
display: inline-block;
margin-left: 20px;
line-height: 62px;
font-size: 16px;
font-family: "Bold";
}

.back_selecting > b {
  display: inline-block;
  margin-left: 20px;
  line-height: 62px;
  font-size: 16px;
  font-family: "Bold";
  }

.back > b.flink {
display: inline-block;
margin-left: 20px;
padding-right: 36px;
line-height: 62px;
font-size: 16px;
font-family: "Bold";
background: url(../img/svg/link_24_px.svg) no-repeat center right;
background-size: 22px;
}


.download-icon, .links-icon {
/*display: inline-block;*/
float:left;
margin: 12px;
padding: 10px 42px;
font-family: "Semibold";
text-align: left;
font-size: 12px;
color: #727D8D;
height: 36px;
border: 1px solid #282C34;
border-radius: 24px;
transition: all .2s ease-in-out;
cursor: pointer;
}
.download-icon {
width: 134px;
background: url(../img/svg/download2-24px.svg) no-repeat 12% 50%;
background-size: 20px;
}

.download-icon:hover {
background-size: 20px;
transition: all .2s ease-in-out;
background-color: #282C34;
}
.links-icon {
width: 100px;
background: url(../img/svg/share-24px-2.svg) no-repeat 12% 50%;
background-size: 20px;
margin-right:0px;
}

.links-icon:hover {
background-size: 20px;
transition: all .2s ease-in-out;
background-color: #282C34;
}




/* search box */

.s-cont {
position: relative;
width:100%;
margin:0 auto;
}

input[type=search], textarea {
-webkit-appearance: none;
-webkit-transition: all 0.20s ease-in-out;
-moz-transition: all 0.20s ease-in-out;
-ms-transition: all 0.20s ease-in-out;
-o-transition: all 0.20s ease-in-out;
outline: none;
color: #727D8D;
background-color: #2B3039;
border: 1px solid #2B3039;

}

input[type=search]:focus, textarea:focus {
background-color: #303640;
border: 1px solid #00CEFF;
}
input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
color:#727D8D;
}
::-moz-placeholder { /* Firefox 19+ */
color: #727D8D;
}
:-ms-input-placeholder { /* IE 10+ */
color: #727D8D;
}
:-moz-placeholder { /* Firefox 18- */
color: #727D8D;
}
input[type=search]::-ms-clear {  display: none; width : 0; height: 0; }
input[type=search]::-ms-reveal {  display: none; width : 0; height: 0; }
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }


.sbox {
position: relative;
width: 100%;
margin: 10px auto;
padding: 10px 24px 10px 40px;
font-family: "Medium";
font-size: 14px;
border-radius: 22px;
}
.sbox-search-icon {
position: absolute;
top:18px;
left:8px;
width: 24px;
height: 24px;
background: url("../img/svg/search-24px.svg") no-repeat;
}
.sbox-close {
position: absolute;
top:18px;
right:8px;
width: 24px;
height: 24px;
background: url("../img/svg/close-24px.svg") no-repeat;
cursor: pointer;
border-radius: 24px;
}
.sbox-close:hover {
background: #282C34 url("../img/svg/close-24px.svg") no-repeat;
}

.hcarname {
float: left;
font-family: "Bold";
font-size:16px;
color:#f7f7f7;
line-height: 60px;
text-align: left;
}
.hlogo {
float: left;
margin:12px 14px;
width:36px;
height: 36px;
background: url("../img/svg/logo-24px.svg") no-repeat center;
}

/* middle */
.media {
  display: flex;
  align-items: flex-start;
  background: #fff;
  padding: 1rem;
  text-align: left;
  /*height: 7rem;*/
  max-width: 100%;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all .3s linear;
}

.media:hover {
  background-color: #dce5e7;
  /*color: white;   */
}

.media-object {
  margin-left: 1rem;
  order: 1;
  border-radius: 1rem;
  width: 78px;
  height: 102px;
  object-fit: cover;
}

.media-body {
  flex: 1;
}

.media-heading {
  font-family: "Nunito Bold", Helvetica, sans-serif;
  margin: 0 0 .5rem;
  font-size: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  height: 3rem;
  overflow: hidden;
}

.media-p {
  margin: 0;
  padding: 5px 0 0 0;
}


.blok1 {
display: flex;
flex-direction: column;
align-items: flex-start;
background: #2b3039;
padding: 1rem;
text-align: left;
width: 100%;
/*border: 1px solid #ddd;*/
cursor: pointer;
transition: all .2s linear;
margin: 10px;
}

.blok1:hover {
position: relative;
background-color: #1f2127;
/*
background-color: #566857;
color: white;
*/
}

/* green top right corner
.blok1::before,
.blok1::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  border-color: transparent;
  border-style: solid;
}

.blok1::before {
  border-width: 1em;
  border-right-color: #ccc;
  border-top-color: #ccc;
}

.blok1::after {
  border-radius: 0.4em;
  border-width: 1em;
  border-right-color: #0c0;
  border-top-color: #0c0;
}
*/




.blok1 > img{
display: block;
padding: 0;
margin: 0;
width: 100%;
height: 6rem;
object-fit: cover;
}

.blok1-body {
flex: 1;
}

.blok1-heading {
font-family: "Nunito Bold", Helvetica, sans-serif;
margin: .5rem 0 0;
font-size: 1rem;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;  
height: 3rem;
overflow: hidden;
}

.blok1-p {
margin: 0;
padding: 5px 0 0 0;
}



.b-lazy {
-webkit-transition: opacity 500ms ease-in-out;
   -moz-transition: opacity 500ms ease-in-out;
     -o-transition: opacity 500ms ease-in-out;
        transition: opacity 500ms ease-in-out;
         max-width: 100%;
           opacity: 0;
}
.b-lazy.b-loaded {
           opacity: 1;
}




/*.checkbox {
 
  float: right;
  margin: 10px;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #3a424d;
  background: #fffefe;
  cursor: pointer;

  visibility:hidden;
  opacity:0;
  transition:visibility 0s linear 0.3s,opacity 0.3s linear;
}

.pbox > .mb:hover > .checkbox {
  visibility:visible;
  opacity:1;
  transition-delay:0s;
} 


.check-mode .checkbox {
  visibility:visible;
  opacity:1;
  transition-delay:0s;
}

.check-mode .checked {
  background:#0485d0;
  border: 2px solid #ffffff;
}
*/
.checkbox {
  float: right;
  width: 56px;
  height: 56px;
  border-radius: 0 0 0 56px;
  background: url(../img/svg/check-empty2.svg) no-repeat top right;
  background-size: 24px;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s,opacity 0.3s linear;
  transform: scale();
  background-color: #3B424D;
}

.pbox > .mb:hover > .checkbox {
visibility:visible;
opacity:1;
transition-delay:0s;
} 

.check-mode .checked < .mb < .pbox {
  opacity: 0.4;
  }

.check-mode .checkbox {
visibility:visible;
opacity:1;
transition-delay:0s;
}

.check-mode .checked {
  background: url(../img/svg/checked2.svg) no-repeat top right;
  background-size: 24px;
  border-radius: 0 0 0 56px;
  background-color: #3B424D;
}


#header-select {
  visibility: hidden;
  position: fixed;
  top: -65px;
  width: 100%;
  background: #00B1FF;
  height: 60px;
  left: 0;
  z-index: 2;  
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease;
}

.check-mode #header {
  top: -60px;
  visibility: hidden;
}
.check-mode #header-select {
  top: 0px;
  visibility: visible;
}


.rename-icon {
  /*display: inline-block;*/
  float:left;
  margin: 12px;
  padding: 10px 42px;
  font-family: "Semibold";
  text-align: left;
  font-size: 12px;
  color: #ECEEEF;
  height: 36px;
  border: 1px solid #0098DB;
  border-radius: 24px;
  transition: all .2s ease-in-out;
  cursor: pointer;
  }
  .rename-icon {
  width: 120px;
  background: url(../img/svg/edit-24px-01.svg) no-repeat 12% 50%;
  background-size: 20px;
 
  }
  
  .rename-icon:hover {
  background-size: 20px;
  transition: all .2s ease-in-out;
  background-color: #0098DB;
  }





  .selectall-icon {
    /*display: inline-block;*/
    float:left;
    margin: 12px 0 12px 12px;
    padding: 10px 12px 10px 42px;
    font-family: "Semibold";
    text-align: left;
    font-size: 12px;
    color: #ECEEEF;
    height: 36px;
    border: 1px solid #0098DB;
    border-radius: 24px;
    transition: all .2s ease-in-out;
    cursor: pointer;
    }
    .selectall-icon {
    width: 120px;
    background: url(../img/svg/check-empty-white.svg) no-repeat 12% 50%;
    background-size: 20px;
   
    }
    
    .selectall-icon:hover {
    background-size: 20px;
    transition: all .2s ease-in-out;
    background-color: #0098DB;
    }

    .selectall-icon:active {
      background: url(../img/svg/checked-white.svg) no-repeat 12% 50%;
      background-size: 20px;
      }
  
  