@charset "utf-8";
/* CSS Document */

body { 
	font-family: Calibri, sans-serif;
	font-size: 15px;
	color: #666;
	margin: 0;
	padding: 0;
	min-width: 375px;
}

.ShareInfoLink {
	color: white;
	font-size: 130px;
 }
 
 #ShareURL{
	font-family: Calibri, sans-serif;
    width: 75%;
    padding: 15px 0;
	font-size: 130px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    outline: none;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    border: 1px solid #CDCDCD;
    border-radius: 5px;
    box-shadow: inset 0 -5px 45px rgba(100,100,100,0.2), 0 1px  1px rgba(255,255,255,0.2);
    text-align: center;
}

 #DeleteURL{
	font-family: Calibri, sans-serif;
    width: 75%;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    outline: none;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    border: 1px solid #CDCDCD;
    border-radius: 5px;
    box-shadow: inset 0 -5px 45px rgba(100,100,100,0.2), 0 1px  1px rgba(255,255,255,0.2);
    text-align: center;
}
 

.DeleteButton {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    border: 1px solid #dcdcdc;
    display: inline-block;
    color: #ffffff;
    font-family: Arial;
    font-size: 15px;
    font-weight: bold;
    padding: 6px 24px;
    text-decoration: none;
	background: red;
    text-shadow: none;
    color: white;
    cursor: pointer;
    -webkit-box-shadow: none;
    -moz-box-shadow:none;
	box-shadow: none;
}


#filedropzone {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 3;
    background: rgba(255, 255, 255, .9);
	display: none;
	border: 5px dashed;
	border-color: rgba(0, 136, 255, 1);
}

#filedropzone div {
	margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
	text-align: center;
    font-size: -webkit-xxx-large;
    color: black;
}

.PhotoCredit {
    position: fixed;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, .7);
    padding: 2px 10px;
	z-index: 2;
}

.PhotoCredit a {
    color: white;
	text-decoration: none;
	font-size: 20px;
}
	
.FileUploadInfoBox {
	position: absolute;
	left: 50%;
	color: white;
	font-size: 20px;
	transform: translateX(-50%);
}

.FadeOut {
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s 2s, opacity 2s linear;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-o-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

.progress {
  height: 80px;
  overflow: hidden;
  background-color: grey;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
	position: relative;
    width: 90%;
    margin: auto;
}
.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  -webkit-transition: width .6s ease;
       -o-transition: width .6s ease;
          transition: width .6s ease;
}

.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  -webkit-background-size: 40px 40px;
          background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
       -o-animation: progress-bar-stripes 2s linear infinite;
          animation: progress-bar-stripes 2s linear infinite;
}

.progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}

.progress-bar-success {
  background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}

.progress-bar-danger {
  background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}


.logo {
	position: absolute;
	top: 25px;
    left: 25px;
}

.logo img {
	width: 250px;
	height: auto;
}

.EnterGUID {
	position: absolute;
	top: 30px;
	right: 15px;
}

.SubmitGUID {
    display: inline-block;
    padding: 9px 11px;
    -webkit-appearance: none;
    background: rgba(0, 136, 255, 1);
	color: white;
	border: 0;
	height: 100%;
	border-radius: 0px 5px 5px 0px;
	-moz-border-radius: 0px 5px 5px 0px;
	-webkit-border-radius: 0px 5px 5px 0px;
	border: 1px solid #CDCDCD;
	cursor: pointer;
	font-weight: bold;
}

.SubmitGUID:hover{
    background: rgba(255, 255, 255, 1);
    color: #333;
}


.Content {
	padding: 0;
	text-align: center;
	position: absolute;
	top: 300px;
	bottom: 100px;
	left: 0;
	right: 0;
	margin: 0;
}

img.Preview {
	width: 92%;
	margin-bottom: 20px;
	margin-top: 25px;
}

div.FileIcon {
	display: inline-block;
	width: 25%;
    padding-bottom: 50px;
    padding-top: 35px;
}

div.FileInfo {
	text-align: left;
	display: inline-block;
	width: 74%;
	font-size: 30px;
	color: white;
}

#FileInfo {
	color: white;
	font-size: 60px;	
}

#UploadAFile,
#ShortenAURL,
#SharringLinkDIV,
#MessageButton,
#EnterACode,
#GUID {
	display: none;
	margin: 0 auto;
}

#ShareABlob {
	display: none;
	margin: 0 auto;
}

.UploadAFileInput {
	width: 80%;
	margin: auto;
}

.ShortenAURLInput {
	width: 80%;
	text-align: center;
	font-size: -webkit-xxx-large;
}

#SharringLinkInput {
	width: 400px;
	text-align: center;
	font-size: -webkit-xxx-large;
}

.ActionBox {
	position: relative;
    margin: 0 55px;
    border: 1px solid #CDCDCD;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.4);
	padding: 30px;
}

.Display .ActionBox {
    margin-bottom: 50px;
}

.TTL {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(0, 136, 255, 1);
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	border:1px solid #dcdcdc;
	display:inline-block;
	color:#ffffff;
	font-family:Arial;
	font-size:15px;
	font-weight: bold;
	padding:6px 24px;
	text-decoration:none;
}

.Button {
	margin-left: 5%;
	margin-right: 5%;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	display:inline-block;
	cursor:pointer;
	color:#FFF;
	font-family:Arial;
    font-size: 24px;
	font-weight:bold;
	padding: 22px 50px;
	text-decoration:none;
	background: #000; /* fallback color for old browsers */
	background: rgba(0, 136, 255, 1);
	border: 0 solid #CDCDCD;
}

.Button.hover, 
.Button:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f6f6f6), color-stop(1, #ffffff));
	background:-moz-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
	background:-webkit-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
	background:-o-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
	background:-ms-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
	background:linear-gradient(to bottom, #f6f6f6 5%, #ffffff 100%);
	background: rgba(255, 255, 255, 1);
	color: #333;
	text-decoration: none;
	/*border: 1px solid #000;*/
}

.Button:active,
.Button:visited,
.Button:focus  {
	position: relative;
	top: 1px;
	/*border: 1px solid #999;*/ 
	background-color: #fff; 
	color: #333;
	text-decoration: none;
}

.Button.Selected {
	border-color: blue;
	color: #333;
}

.Background {
	background-size:cover;
	background-position: right;
	position: fixed;
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 100%;
	z-index: -1;
	background-image: url('/images/background.jpg');
}

.URLLink {
    font-size: 35px;
    font-family: Calibri;
	text-align: center;
	margin: 25px 0 10px 0;
	width: 450px;
}

.Upload .ShortenAURLInput {
	margin-bottom: 35px;
}


.Upload .Blob {
	margin-bottom: 35px;
}


.Blob{
	width: 92%; 
    height: 400px;
}

.URLLink-Original {
	width: 80%;
	text-align: center;
	font-size: -webkit-xxx-large;
}

#GUIDInput {
	width: 125px;
	border: 0px;
    padding: 10px 15px;
	text-align: center;
}

input, textarea, select {
	padding: 5px;
	color: #666;
	background: #F0F0F6;
	border: 1px solid #CDCDCD;
}

input:focus, textarea:focus, select:focus {
	border: 1px solid #999; 
	background-color: #fff; 
	color: #333; 
}



#Success, #Error {
	z-index: 2;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	animation: Bounce 1s 2 ease 0s, FadeOut 2s forwards ease 12s ;
    color: white;
	text-align: center;
	padding: 5px 15px;
	font-weight: bold;
}

#Error {
	background-color: red;
} 

#Success {
	background: rgba(0, 136, 255, 1);
}

@keyframes Bounce {
	0%			{ top:5px; }
	25%, 75%	{ top:15px; }
	50%			{ top:20px; }
	100%		{ top:0; }
}

@keyframes FadeOut {
    from {opacity: 1;}
    to {opacity: 0;}
}

#Button_EnterCode {
	display: none;
}



@media (max-width: 900px) {

	.Button {
		margin-left: 2%;
		margin-right: 2%
	}

}

@media (max-width: 1135px) {

	.Button {
		margin:		10px auto 0 auto;
		width:		175px;
		display:	block;
	}
	
	.TabStrip {
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		height: 100%;
	}

	.Display .ActionBox {
		margin-top: 60px;
	}

	.Content {
		top: 170px;
	}

	#UploadAFile, #ShortenAURL, #SharringLinkDIV, #MessageButton, #GUID {
		margin-top: 130px;
	}

	#ShareABlob {
		margin-top: 40px;
	}	
	
}

@media (max-width: 900px) {


	.Display .ActionBox {
		margin-top: 15px;
	}

	.logo img {
		width: 100px;
		height: auto;
	}

	.Content {
		position: absolute;
		top: 100px;
		margin: 0;
	}


}

@media (max-width: 822px) {

	.Background {
		background-position: center;
		position: fixed;
		bottom: 0;
		left: 0;
		background-image: url('/images/background-portrait.jpg');
	}	
}


@media (max-width: 400px) {

	.Content {
		width: 400px;
	}

	.EnterGUID {
		left: 300px;
	}
	
}


/* if the device has a DPI higher then 192 and is in portrait mode */
@media screen
	and (-webkit-min-device-pixel-ratio: 2)
	and (orientation:portrait) {

	.Content {
		top: 300px;
	}


	#Success {
		font-size: 35px;
	}
	
	#Error {
		font-size: 35px;
	}
	
	#GUIDInput {
	    font-size: 50px;
		width: inherit;
		width: 92%;
		margin-bottom: 100px;
	}
	
	.logo img {
		width: 390px;
		height: auto;
	} 
	
	.Button {
		margin: 	auto;
		width: 		500px;
		display: 	block;
		font-size: 	35px;
		padding: 	25px 50px;
	}
	
	.TabStrip {
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	
	.logo {
		position: inherit;
		text-align: center;
		padding-top: 20px;
		padding-bottom: 90px;
		height: 20vh;
	}

	#UploadAFile, #ShortenAURL, #SharringLinkDIV, #MessageButton, #EnterACode, #GUID {
		margin-top: 70px;
	}
	
	#ShareABlob {
		margin-top: 0;
	}
	
	#SharringLinkInput {
		width: 80%;
		text-align: center;
		font-size: 70px
	}
	
	.progress {
		height: 75px;
		width: 80%;
	}
	
	.FileUploadInfoBox {
		font-size: 50px;
	}
	
	#FileInfo {
		color: white;
		font-size: 50px;	
	}
	
	.Display .ActionBox {
		margin-top: 70px;
	    margin-bottom: 75px;
	}
	
	.TTL {
		font-size: 30px;
		padding: 10px 45px;
		margin-top: -10px;
		width: 140px; 
	}
	
	.URLLink-Original {
		font-size: 50px;
	}
	
	.Blob {
		margin-bottom: 35px;
		height: 700px;
	    font-size: 30px;
	}
	
	.ShortenAURLInput {
		font-size: 70px;
		margin-bottom: 100px;
		width: 92%;
	}
	
	.PhotoCredit a {
		font-size: 40px;
	}
	
	#Button_EnterCode {
		display: block;
	}
	
	.EnterGUID {
		display: none;
	}
	
}

/* If the device has a DPI higher then 192 and is in landscape mode */
@media screen 
	and (-webkit-min-device-pixel-ratio: 2)
	and (orientation:landscape) {

	.logo img {
		width: 260px;
		height: auto;
	}
	
	.Button {
		font-size: 23px;
	}
	
	#UploadAFile, #ShortenAURL, #ShareABlob, #SharringLinkDIV, #MessageButton, #GUID {
		margin-top: 300px;
	}
	
	#ShareABlob {
		margin-top: 130px;
	}
	
	.Blob {
		height: 200px;
	} 
	
}





