@font-face {
    font-family: 'Larsseit';
    src: url(../assets/fonts/Larsseit.otf) format('opentype');
}

@font-face {
    font-family: 'LarsseitBold';
    src: url(../assets/fonts/Larsseit-Bold.otf) format('opentype');
}

@font-face {
    font-family: 'LarsseitThin';
    src: url(../assets/fonts/Larsseit-Thin.otf) format('opentype');
}

.prompt {
	/* make the backgronud full screen */
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #1e1e1e1e;
	
	/* make it show on top of all other elements */
	z-index: 999;
	
	/* hide the prompt by default */
	visibility: hidden;
	opacity: 0;
	transition: .6s opacity, .6s visibility;
  }
  
  .prompt__form {
	/* center the prompt window */
	position: fixed;
	top: 55%;
	left: 50%;
	transform: translate( -50%, -50% );
	width: 400px;
	padding: 1em;
	border-radius: 5px;
	color: #fff;
	/* background: rgb(255, 255, 255); */
  }
  
  .prompt--show {
	visibility: visible;
	opacity: 1;
  }
  
  .prompt__input {
	width: 75%;
	float: left;
  }
  
  .prompt__submit {
	width: 20%;
	float: left;
  }

  #loginInput{
	font-size: larger;
	padding: 10px;
	border-radius: 5px;
	border-width: 1px;
	height: 45px;
	text-decoration: none;
  }

  #loginInput:focus{
    outline: none;
}

  #loginBtn{
	padding-top: 5px;
	margin: 0 0 0 5%;
	text-align: center;
	border-radius: 5px;
	height: 45px;
	width: 20%;
	font-size: large;
  }

  #loginBtn::after {
	background-color: #79FDAE;
  }
  
/* Starting Blossom_OS */
#startup-blossom-os {
	position: fixed;
	background: #000;
	height: 100%;
	width: 100%;
	z-index: 101;
	text-align: center;
}

#startup-blossom-os img {
	position: relative;
	top: 22%;
	width: 150px;
}

#loader {
	display: none;
	width: 100%;
	height: 100%;
	z-index:101;
	background: #267ed7;
}

/* Loader using CSS */
.ring {
	visibility: hidden;
	position: absolute;
	top: 400px;
	width: 50px;
	height: 50px;
	margin: auto;
	left: 48%;
	overflow: visible;
	z-index:100;
	margin-top: 12px;
}

.ring .indeterminate-ring {
	position: absolute;
	width: 50px;
	height: 50px;
	opacity: 0;
	transform: rotate(225deg);
	-o-animation-name: indeterminate-progress-ring;
	-moz-animation-name: indeterminate-progress-ring;
	-webkit-animation-name: indeterminate-progress-ring;
	animation-name: indeterminate-progress-ring;
	-o-animation-duration: 4.4s;
	-moz-animation-duration: 4.4s;
	-webkit-animation-duration: 4.4s;
	animation-duration: 4.4s;
	-o-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-o-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

.ring .indeterminate-ring::after {
	background-color: white;
	border-radius: 50%;
	width: 5px;
	height: 5px;
	position: absolute;
	content: '';
	left: 8%;
	top: 8%;
}

.ring .indeterminate-ring.indicator-1 {
	-o-animation-delay: 0.96s;
	-moz-animation-delay: 0.96s;
	-webkit-animation-delay: 0.96s;
	animation-delay: 0.96s;
}

.ring .indeterminate-ring.indicator-2 {
	-o-animation-delay: 0.19s;
	-moz-animation-delay: 0.19s;
	-webkit-animation-delay: 0.19s;
	animation-delay: 0.19s;
}

.ring .indeterminate-ring.indicator-3 {
	-o-animation-delay: 0.38s;
	-moz-animation-delay: 0.38s;
	-webkit-animation-delay: 0.38s;
	animation-delay: 0.38s;
}

.ring .indeterminate-ring.indicator-4 {
	-o-animation-delay: 0.58s;
	-moz-animation-delay: 0.58s;
	-webkit-animation-delay: 0.58s;
	animation-delay: 0.58s;
}

.ring .indeterminate-ring.indicator-5 {
	-o-animation-delay: 0.77s;
	-moz-animation-delay: 0.77s;
	-webkit-animation-delay: 0.77s;
	animation-delay: 0.77s;
}

@-webkit-keyframes indeterminate-progress-ring {
	0% {
		transform: rotate(200deg);
		opacity: 1;
		animation-timing-function: ease-out;
	}
	7% {
		transform: rotate(345deg);
		animation-timing-function: linear;
	}
	30% {
		transform: rotate(455deg);
		animation-timing-function: ease-in-out;
	}
	40% {
		transform: rotate(760deg);
		animation-timing-function: linear;
	}
	70% {
		transform: rotate(895deg);
		opacity: 1;
		animation-timing-function: ease-out;
	}
	73% {
		transform: rotate(955deg);
		animation-timing-function: ease-out;
		opacity: 0;
	}
	74% {
		transform: rotate(985deg);
		opacity: 0;
	}
	100% {
		transform: rotate(1005deg);
		opacity: 0;
	}
}

@-moz-keyframes indeterminate-progress-ring {
	0% {
		transform: rotate(200deg);
		opacity: 1;
		animation-timing-function: ease-out;
	}
	7% {
		transform: rotate(345deg);
		animation-timing-function: linear;
	}
	30% {
		transform: rotate(455deg);
		animation-timing-function: ease-in-out;
	}
	40% {
		transform: rotate(760deg);
		animation-timing-function: linear;
	}
	70% {
		transform: rotate(895deg);
		opacity: 1;
		animation-timing-function: ease-out;
	}
	73% {
		transform: rotate(955deg);
		animation-timing-function: ease-out;
		opacity: 0;
	}
	74% {
		transform: rotate(985deg);
		opacity: 0;
	}
	100% {
		transform: rotate(1005deg);
		opacity: 0;
	}
}

@-o-keyframes indeterminate-progress-ring {
	0% {
		transform: rotate(200deg);
		opacity: 1;
		animation-timing-function: ease-out;
	}
	7% {
		transform: rotate(345deg);
		animation-timing-function: linear;
	}
	30% {
		transform: rotate(455deg);
		animation-timing-function: ease-in-out;
	}
	40% {
		transform: rotate(760deg);
		animation-timing-function: linear;
	}
	70% {
		transform: rotate(895deg);
		opacity: 1;
		animation-timing-function: ease-out;
	}
	73% {
		transform: rotate(955deg);
		animation-timing-function: ease-out;
		opacity: 0;
	}
	74% {
		transform: rotate(985deg);
		opacity: 0;
	}
	100% {
		transform: rotate(1005deg);
		opacity: 0;
	}
}

@keyframes indeterminate-progress-ring {
	0% {
		transform: rotate(200deg);
		opacity: 1;
		animation-timing-function: ease-out;
	}
	7% {
		transform: rotate(345deg);
		animation-timing-function: linear;
	}
	30% {
		transform: rotate(455deg);
		animation-timing-function: ease-in-out;
	}
	40% {
		transform: rotate(760deg);
		animation-timing-function: linear;
	}
	70% {
		transform: rotate(895deg);
		opacity: 1;
		animation-timing-function: ease-out;
	}
	73% {
		transform: rotate(955deg);
		animation-timing-function: ease-out;
		opacity: 0;
	}
	74% {
		transform: rotate(985deg);
		opacity: 0;
	}
	100% {
		transform: rotate(1005deg);
		opacity: 0;
	}
}

* {
	box-sizing: border-box;
	font-family: "Larsseit", sans-serif;
	padding: 0;
	overflow: hidden;
}

.hide {
	display: none;
}

body,
html {
	height: 100%;
}

body{
	overflow: hidden;
	margin: 0;
}

h1{
    font-family: "LarsseitBold", sans-serif;
}

h2{
    font-family: "LarsseitBold", sans-serif;
    margin-bottom: 5px;
}

h3{
    color: gray;
    margin-top: 0;
    font-size: medium;
}

#namemodal{
	font-family: "LarsseitBold", sans-serif;
}

#main {
	background: url('assets/wallpapers/1.svg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	height: 100%;
	width: 100%;
}

/* Right Click Menu */
#rclick-menu {
	overflow: visible;
	position: absolute;
	background: #f2f2f2;
	width: 200px;
	box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.5);
}

#rclick-menu ul{
	margin: 0;
}

#rclick-menu li {
	background: inherit;
	width: 200px;
	font-size: 0.7em;
	padding: 5px 10px;
	list-style: none;
	color: black;
	transition: all 0.1s;
	margin: 5px 0;
}

#rclick-menu li:hover {
	background: #91c9f7;
}

#sub-menu {
	display: none;
	position: absolute;
	top: 0;
	right: -100px;
	background: #f2f2f2;
	width: 120px;
	font-size: 1.4em;
	box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
}

#sub-menu li {
	width: 120px;
}

#change-wallpaper:hover #sub-menu {
	display: block;
}

/* desktop icons */
#main .desktop-item {
	margin: 1%;
	padding: 10px;
	height: auto;
	margin-bottom: 10px;
	width: 90px;
	text-align: center;
	border-radius: 5px;
}

#main .desktop-item:hover {
	cursor: default;
}

#main .desktop-item img {
	width: 80%;
}

#main .desktop-item p {
	color: rgb(255, 255, 255);
	font-size: 0.9em;
	margin-top: 5px;
}

/* All the tabs defaut styling */
#tab-files,
.tab-image,
.tab-video,
.tab-error,
#tab-applynow,
#tab-videocall,
#tab-trashbin {
	display: none;
	/* position comment = opening all tabs on fullscreen */
	position: absolute; 
	z-index: 9;
	font-size: 0.8em;
    margin: 0;
	padding: 0;
	box-shadow: rgba(0, 0, 0, 0.5) 10px 10px 30px;
	resize: both;
	border-radius: 5px;
}

#tab-trashbin{
	top: 5%;
	left: 15%;
	width: 350px;
	height: 250px;
	min-width: 400px;
	min-height: 270px;
	max-width: 500px;
	max-height: 400px;
}

#tab-videocall{
	top: 15%;
	left: 25%;
	width: 1100px;
	height: 620px;
	min-width: 500px;
	min-height: 500px;
	max-width: 1400px;
	max-height: 800px;
}

#tab-files{
	top: 10%;
	left: 20%;
	width: 900px;
	height: 490px;
	min-width: 500px;
	min-height: 500px;
	max-width: 1300px;
	max-height: 690px;
}

#tab-applynow{
	top: 20%;
	left: 30%;
	width: 720px;
	height: 495px;
	min-width: 515px;
	min-height: 400px;
	max-width: 750px;
	max-height: 700px;
}

.tab-image{
	top: 10%;
	left: 30%;
	width: 610px;
	height: 380px;
	min-width: 172px;
	min-height: 215px;
	max-width: 610px;
	max-height: 380px;
}

.tab-video{
	top: 10%;
	left: 30%;
	width: 610px;
	height: 380px;
	min-width: 172px;
	min-height: 215px;
	max-width: 610px;
	max-height: 380px;
}

/* Tab Header */
.tab-header {
	position: absolute;
	width: 100%;
	height: 40px;
	top: 0;
	right: 0;
	padding: 12px 15px;
	/* cursor: move; */
	z-index: 12;
	background-color: #1e1e1e;
	color: #fff;
}

/* Tab Close Button */
.tab-header i {
	display: block;
	height: 100%;
	width: 40px;
	padding: 10px 0 0 12px;
	font-size: 1.3em;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 10;
	color: white;
	background: #1e1e1e;
	transition: all 0.2s;
}

.tab-header i:hover {
	background: rgba(255, 0, 0, 0.8);
	cursor: pointer; 
}

.tab-middle {
	position: absolute;
	width: 100%;
	height: 100% (40px);
	top: 40px;
	right: 0;
	bottom:0;
	z-index: 9;
	color: rgb(0, 0, 0);
}

.resp2-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 94.2%;
    border: 0;
}

.resp-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
}

.resp-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Tab Footer */
.tab-footer {
	position: absolute;
	width: 100%;
	height: 25px;
	bottom: 0;
	right: 0;
	padding: 5px 12px;
	z-index: 10;
	background-color: #1e1e1e;
	color: #fff;
}

/* To disbale user's text selection */
.disable-select {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Button style */
.hover-underline-animation {
	display: inline-block;
	position: relative;
	color: #fff;
	background-color: #1e1e1e;
	border: none;
	margin: 6px;
}

.hover-underline-animation::after {
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: #fff;
	transform-origin: bottom left;
	transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
	transform: scaleX(1);
	transform-origin: bottom left;
}

/* -------------------------

Bottom StartBar Part ...

---------------------------*/

#start-bar {
	position: fixed;
	z-index: 100;
	bottom: 0;
	right: 0;
	height: 40px;
	width: 100%;
	background: #1e1e1e
}

/* Blossom icon on the left side */
#start-bar .blossom-icon {
	position: absolute;
	height: 100%;
	width: 45px;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0) url('assets/icons/blossom.png') no-repeat;
	background-size: 30px;
	background-position: 10px;
	opacity: 1;
	transition: all 0.3s;
}

#start-bar .blossom-icon:hover {
	opacity: 1;
	background: rgba(255, 255, 255, 0.15) url('assets/icons/blossom.png') no-repeat;
	background-size: 28px;
	background-position: 10px;
}

/* Logout and Cancel options on click on blossom button */
#logOut {
	display: none;
	position: fixed;
	bottom: 40px;
	height: 115px;
	width: 200px;
	background: #1e1e1e;
	border-radius: 5px 5px 0 0;
	z-index: 999;
}

#logout-btn {
	padding: 10px;
	margin: 10px;
	position: absolute;
	text-align: left;
}

#logout-btn p{
	display: inline;
}

/*Fullscreen*/
#fullscreen {
	position: absolute;
	text-align: center;
	font-size: 0.7em;
	color: white;
	height: 100%;
	width: 40px;
	z-index:3;
	top: 0;
	right: 80px;
	line-height: 17px;
	opacity: 0.9;
	transition: all 0.3s;
}

#fullscreen:hover {
	background: rgba(255, 255, 255, 0.15);
	cursor: default;
}

/* Windows clock on the right side */
#clock {
	position: absolute;
	text-align: center;
	font-size: 0.7em;
	color: white;
	height: 100%;
	width: auto;
	top: 0;
	right: 5px;
	line-height: 17px;
	padding: 4px 10px 0;
	opacity: 0.9;
	transition: all 0.3s;
}

#clock:hover {
	background: rgba(255, 255, 255, 0.15);
	cursor: default;
}

/* The Modal (background) */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 99; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content/Box */
  .modal-content {
	background-color: #fff;
	margin: 15% auto; /* 15% from the top and centered */
	padding: 30px;
	border-radius: 5px;
	width: 80%; /* Could be more or less, depending on screen size */
	max-width: 600px;
  }
  
  /* The Close Button */
  .close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
  }