/****************FONT***************/
@font-face {
    font-family: Bardiya;
    src: url(../font/Bardiya.woff);
}
* {
	box-sizing: border-box;
}
/***********MAIN_STYLES***********/
html,
button,
input,
select,
textarea {
	color: #000000;
	direction: rtl;
	background-color: white;
}

body {
	font-size: 1em;
	line-height: 1;
	overflow-x:hidden; 
}
body::-webkit-scrollbar {
    width: 0.6em;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: rgba(255,255,255,1);
	box-shadow: rgba(255,255,255,1);
}

body::-webkit-scrollbar-thumb {
    background-color: #222324 ;
	cursor: pointer;

}
::-moz-selection {
  background: #B3D4FC;
  text-shadow: none;
}

::selection {
  background: #B3D4FC;
  text-shadow: none;
}

a:focus {
  outline: none;
}
::-webkit-input-placeholder {
	color: rgba(255, 255, 255, 0.9);
	font-family: "Bardiya",tahoma;
}

:placeholder {
  color: rgba(255, 255, 255, 0.9);
}
/******STICKY_NOTE***************/
#board {
  padding: 100px 30px 30px;
}

.note {
	float: right;
	display: block;
	position: relative;
	padding: .5em 1em 1em 1em;
	width: 250px;
	min-height: 300px;
	height: auto !important;
	margin: 0 30px 30px 0;
	background: linear-gradient(top, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.25));
	background-color: #6992a8;
	box-shadow: 5px 5px 10px -2px rgba(33, 33, 33, 0.2);
	transition: -webkit-transform .15s;
	transition: transform .15s;
	transition: transform .15s, -webkit-transform .15s;
	z-index: 1;
	border:1px solid #517081;
}
@media screen and (max-width:575px){
	.note {
		right: 50%;
		transform: translateX(50%);
		margin: 30px 0 0 0;
	}	
}
.note:hover {
  cursor: move;
}
.note.ui-draggable-dragging:nth-child(n) {
  -webkit-transform: scale(1.055) !important;
          transform: scale(1.055) !important;
  z-index: 100;
  cursor: move;
  transition: -webkit-transform .150s;
  transition: transform .150s;
  transition: transform .150s, -webkit-transform .150s;
}
.note textarea {
	background-color: transparent;
	border: none;
	resize: none;
	text-align: right;
	font-family: "Bardiya", tahoma;
	width: 100%;
	font-size: 1.1em;
	border-top: 1px solid white;
}
.note textarea:focus {
	outline: none !important;
	border-top: 1px solid white;
}
textarea::-webkit-scrollbar {
    width: 0.4em;
}

textarea::-webkit-scrollbar-track {
    -webkit-box-shadow: rgba(255,255,255,1);
	box-shadow: rgba(255,255,255,1);
}

textarea::-webkit-scrollbar-thumb {
    background-color: white;
	cursor: pointer;

}
.note textarea:focus {
  outline: none;
  border: none;
}
.note textarea.cnt {
	min-height: 200px;
	max-height: 300px;
	padding-top: 10px;
	border-top: 1px solid white;
	color: white;
}
/***********BUTTON**********/
.button {
  color: #FFFFFF;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 16px;
  padding: 10px;
  font-weight: bolder;
  background-color: transparent;
	text-decoration: none;
	display:inline-block;
}
.outerPlus{
	width: 50px;
    height: 50px;
    border: none;
    border-radius: 6px;
    background: #383838;
    padding: 0px;
    outline: none;
    position: absolute;
    top: 19px;
    color: white;
    left: 20px;
    font-size: 15px;
    z-index: 2;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.button.remove{
	float: left;
}
#add_new {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 100;
}
/*************SEARCH_FIELD*************/
.search-wrapper {
	position: absolute;
	top:20px;
	left: 50%;
	transform: translateX(-50%);
}
.search-wrapper.active {}

.search-wrapper .input-holder {
    overflow: hidden;
    height: 50px;
    background: rgba(255,255,255,0);
    border-radius:6px;
    position: relative;
    width:50px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.search-wrapper.active .input-holder {
    width:270px;
    background: rgba(0, 0, 0, 0.7);
    -webkit-transition: all .5s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    -moz-transition: all .5s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    transition: all .5s cubic-bezier(0.000, 0.105, 0.035, 1.570);
}

.search-wrapper .input-holder .search-input {
    width:100%;
    height: 30px;
    padding:0px 20px 0 70px;
    opacity: 0;
    position: absolute;
    top:0px;
    left:0px;
    background: transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border:none;
    outline:none;
    font-family:"Open Sans", Arial, Verdana;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color:#FFF;
    -webkit-transform: translate(0, 60px);
    -moz-transform: translate(0, 60px);
    transform: translate(0, 60px);
    -webkit-transition: all .3s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    -moz-transition: all .3s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    transition: all .3s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.search-wrapper.active .input-holder .search-input {
    opacity: 1;
    -webkit-transform: translate(0, 10px);
    -moz-transform: translate(0, 10px);
    transform: translate(0, 10px);
}

.search-wrapper .input-holder .search-icon {
    width:60px;
    height:60px;
    border:none;
    border-radius:6px;
    background: #383838;
    padding:0px;
    outline:none;
    position: relative;
    z-index: 2;
    float:left;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.search-wrapper.active .input-holder .search-icon {
	opacity: 0;
}
.search-wrapper .input-holder .search-icon span {
    width:22px;
    height:22px;
    display: inline-block;
    vertical-align: middle;
    position:relative;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .4s cubic-bezier(0.650, -0.600, 0.240, 1.650);
    -moz-transition: all .4s cubic-bezier(0.650, -0.600, 0.240, 1.650);
    transition: all .4s cubic-bezier(0.650, -0.600, 0.240, 1.650);

}
.search-wrapper.active .input-holder .search-icon span {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.search-wrapper .input-holder .search-icon span::before, .search-wrapper .input-holder .search-icon span::after {
    position: absolute;
    content:'';
}
.search-wrapper .input-holder .search-icon span::before {
    width: 3px;
    height: 10px;
    left: 3px;
    top: 16px;
    border-radius: 2px;
    background: white;
}
.search-wrapper .input-holder .search-icon span::after {
    width: 10px;
    height: 10px;
    left: -5px;
    top: 0px;
    border-radius: 16px;
    border: 4px solid white;
}

.search-wrapper .close {
    position: absolute;
    z-index: 1;
    top:12px;
    right:20px;
    width:25px;
    height:25px;
	opacity: 0;
    cursor: pointer;
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transition: all .3s cubic-bezier(0.285, -0.450, 0.935, 0.110);
    -moz-transition: all .3s cubic-bezier(0.285, -0.450, 0.935, 0.110);
    transition: all .3s cubic-bezier(0.285, -0.450, 0.935, 0.110);
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.search-wrapper.active .close {
    right: -40px;
	opacity: 1;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .6s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    -moz-transition: all .6s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    transition: all .6s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    -webkit-transition-delay: 0.5s;
    -moz-transition-delay: 0.5s;
    transition-delay: 0.5s;
}
.search-wrapper .close::before, .search-wrapper .close::after {
    position:absolute;
    content:'';
    background: #383838;
    border-radius: 2px;
}
.search-wrapper .close::before {
    width: 5px;
    height: 25px;
    left: 10px;
    top: 0px;
}
.search-wrapper .close::after {
    width: 25px;
    height: 5px;
    left: 0px;
    top: 10px;
}
.search-wrapper .result-container {
    width: 100%;
    position: absolute;
    top:80px;
    left:0px;
    text-align: center;
    font-family: "Open Sans", Arial, Verdana;
    font-size: 14px;
    display:none;
    color:#B7B7B7;
}
@media screen and (max-width: 560px) {
    .search-wrapper.active .input-holder {width:200px;}
}