/* #define FONT "Ubuntu, sans-serif" */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

/* scrollbar */
::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 14px 14px transparent;
  border: solid 4px transparent;
}

::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 14px 14px #666;
  border: solid 3px transparent;
  border-radius: 14px;
}

::-webkit-scrollbar-thumb:hover {
  box-shadow: inset 0 0 14px 14px #909090;
}

::-webkit-scrollbar-button {
  display: none;
}




body, html{
	padding: 0;
	margin: 0;
	font-family: 'Ubuntu', sans-serif;
}

a{
	text-decoration: none;
}

/* paddings and margins */
.ml-20px{
	margin-left: 20px;
}

/***********************/
/*
.navbar *{
	z-index: 10;
}

.navbar{
	height: 70px; /* was 44px */
	/*display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 15%;
}

.navbar-logo{
	max-height: 90%;
	width: auto;
	height: auto;
}

.navbar-links-container{
	display: flex;
	justify-content: space-between;
}

.navbar-links-container ul{
  margin: 0;
  padding: 0;
}

.navbar-links{
  padding: 0 25px;
  height: 100%;
  display: inline;
}

.navbar-links-button{
	background: linear-gradient(45deg, #4568dc, #b06ab3);
	border-radius: 69px;
  padding: 10px 2em;
	box-shadow: 1px 1px 10px rgba(255, 255, 255, 0.5);
	color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* content */

.content-center{
  display: flex;
	justify-content: center;
	align-items: center;
}
.content-right{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
/*
.content-between{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
*/

/* footer */
/* https://codepen.io/abdelrhmansaid/pen/OJRNOpQ

.footer:focus,
.footer:active {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

.footer-contact{
  display: grid;
  place-items: center;
}*/

.path{
	padding: 19px 0;
	font-size: 13px;
	display: flex;
	align-items: center;
}

.path img{
	height: 19px;
}

.path a, .path i{
	margin-right: 11px;
}

.contact-container {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-container .contact-icon {
  position: relative;
  background: #ffffff;
  border-radius: 50%;
  padding: 15px;
  margin: 10px;
  width: 20px;
  height: 20px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.contact-container .contact-icon:hover a {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.contact-container .twitter:hover{
  background: #1DA1F2;
  color: #ffffff;
}

.contact-container .instagram:hover{
  background: #E4405F;
  color: #ffffff;
}

.contact-container .github:hover{
  background: #333333;
  color: #ffffff;
}

.contact-container .email:hover {
  background: #2dce18;
  color: #ffffff;
}

.copy-corner{
	color: #ffffff;
}

.copy-symbol{
	position: fixed;
	right: 10px;
	bottom: 10px;
	font-size: 15px;
}

.copy-text{
	display: none;
	position: fixed;
	right: 10px;
	bottom: 30px;
	border: 1px solid #fff;
	border-radius: 10px;
	padding: 5px 10px;
	font-size: 14px;
}

.copy-symbol:hover + .copy-text{
	display: initial;
}

.copy-name{
	font-family: 'Courier New', Courier, monospace;
}


/* various */

/* link underline */
.linkUnderline {
  position: relative;
}

.linkUnderline:after {
  content: "";
  height: 2px;
  bottom: -4px;
  position: absolute;
  left: 5%;
  right: 95%;
  transition: right 0.25s ease-in-out;
}
.linkUnderline:hover:after {
  right: 5%;
}

/* material disabled */
.disabled{
	background-color: #ccc !important;
	color: #888 !important;
	cursor: not-allowed !important;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* material button */
/* MATERIAL BUTTON */
.materialbtn {
	align-items: center;
	appearance: none;
	border-radius: 5px;
	border-style: none;
	box-shadow: rgba(0, 0, 0, .2) 0 3px 1px -2px, rgba(0, 0, 0, .14) 0 2px 2px 0, rgba(0, 0, 0, .12) 0 1px 5px 0;
	box-sizing: border-box;
	cursor: pointer;
	display: inline-flex;
	font-size: .875rem;
	justify-content: center;
	letter-spacing: .0892857em;
	line-height: normal;
	outline: none;
	overflow: visible;
	padding: 0 16px;
	position: relative;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: box-shadow 280ms cubic-bezier(.4, 0, .2, 1);
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	vertical-align: middle;
	will-change: transform, opacity;
}

.materialbtn:hover {
	box-shadow: rgba(0, 0, 0, .2) 0 2px 4px -1px, rgba(0, 0, 0, .14) 0 4px 5px 0, rgba(0, 0, 0, .12) 0 1px 10px 0;
}

.materialbtn:disabled {
	background-color: rgba(0, 0, 0, .12);
	box-shadow: rgba(0, 0, 0, .2) 0 0 0 0, rgba(0, 0, 0, .14) 0 0 0 0, rgba(0, 0, 0, .12) 0 0 0 0;
	color: rgba(0, 0, 0, .37);
	cursor: default;
	pointer-events: none;
}

.materialbtn:focus {
	box-shadow: rgba(0, 0, 0, .2) 0 2px 4px -1px, rgba(0, 0, 0, .14) 0 4px 5px 0, rgba(0, 0, 0, .12) 0 1px 10px 0;
}

.materialbtn:active {
	box-shadow: rgba(0, 0, 0, .2) 0 5px 5px -3px, rgba(0, 0, 0, .14) 0 8px 10px 1px, rgba(0, 0, 0, .12) 0 3px 14px 2px;
}



/* NOT IN kliu.win stylesheet */
.btn {
	height: 37px;
	font-weight: 600;
	padding: 10px 15px;
	border-radius: 15px;
}

.btn{
	color: #fff !important;
}
.btn:visited{
	color: #fff !important;
}

.space-between{
	display: flex;
	justify-content: space-between;
}

.pt-20px{
	padding-top: 20px;
}
/******************************/



@media screen and (max-width: 600px), (orientation: portrait) {
	.mobile-hide {
		display: none;
	}
	::-webkit-scrollbar {
		display: none;
	}
}