*{
	-webkit-transition:all 250ms linear;
	-moz-transition:all 250ms linear;
	-o-transition:all 250ms linear;
	transition:all 250ms linear;
	outline: none;
}

*::-webkit-scrollbar {
    width: 4px;
}

*::-webkit-scrollbar:hover {
    width: 8px;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #eee;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #888;
}
::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(100,100,100,0.4);
}

input[type="checkbox"]{
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
input[type="checkbox"]:focus + label:before, input[type="checkbox"]:hover + label:before{
  border-color: black;
}
input[type="checkbox"]:active + label:before{
  -webkit-transition-duration: 0;
          transition-duration: 0;
  -webkit-filter: brightness(0.2);
          filter: brightness(0.2);
}
input[type="checkbox"] + label{
  position: relative;
  padding-left: 2em;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
input[type="checkbox"] + label:before{
  box-sizing: content-box;
  content: '';
  color: #4ea3c9;
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  margin-top: -9px;
  border: 2px solid grey;
  text-align: center;
}
input[type="checkbox"] + label:after{
  box-sizing: content-box;
  content: '';
  background-color: #4ea3c9;
  position: absolute;
  top: 50%;
  left: 4px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-transition: -webkit-transform 200ms ease-out;
  transition: -webkit-transform 200ms ease-out;
  transition: transform 200ms ease-out;
  transition: transform 200ms ease-out, -webkit-transform 200ms ease-out;
}

input[type="checkbox"] + label:after {
  background-color: transparent;
  top: 50%;
  left: 4px;
  width: 8px;
  height: 3px;
  margin-top: -4px;
  border-style: solid;
  border-color: #4ea3c9;
  border-width: 0 0 3px 3px;
  -o-border-image: none;
     border-image: none;
  -webkit-transform: rotate(-45deg) scale(0);
          transform: rotate(-45deg) scale(0);
  -webkit-transition: none;
  transition: none;
}

input[type="checkbox"]:checked + label:after {
  content: '';
  -webkit-transform: rotate(-45deg) scale(1);
          transform: rotate(-45deg) scale(1);
  -webkit-transition: -webkit-transform 200ms ease-out;
  transition: -webkit-transform 200ms ease-out;
  transition: transform 200ms ease-out;
  transition: transform 200ms ease-out, -webkit-transform 200ms ease-out;
}

input[type="checkbox"]:checked + label:before {
  -webkit-animation: borderscale 200ms ease-in;
          animation: borderscale 200ms ease-in;
}
input[type="checkbox"]:checked + label:after {
  -webkit-transform: rotate(-45deg) scale(1);
          transform: rotate(-45deg) scale(1);
}

@-webkit-keyframes borderscale {
  50% {
    box-shadow: 0 0 0 2px #4ea3c9;
  }
}

@keyframes borderscale {
  50% {
    box-shadow: 0 0 0 2px #4ea3c9;
  }
}

.error-msg {
  display: block;
  color: red;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 500ms ease-out;
  transition: max-height 500ms ease-out;
  will-change: max-height;
}

:required:not(:focus) ~ .error-msg,
:invalid:required ~ .error-msg {
  max-height: 9em;
}

input:focus {
}

input:not(:focus):invalid {
  /*border: 1px solid red;
  outline: none;*/
}

input:not(:focus):valid {
  /*border: 1px solid green;*/
}

textarea, input{
	padding: 0.5em;
}

.posts{
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  flex-wrap: wrap;
  padding: 0;
}

.posts > .post{
  width: 100%;
  margin: 0;
  background: #fff;
  margin-bottom: 20px;
}

.posts > .post.not-sent{
  border: 1px solid #f43;
}

.post > .post-share{
	height: 100px;
	width:100%;
}

.posts > .post > .post-header{
  height: 2.5cm;
  width: 100%;
  /*border-bottom: 1px #f3f6fb solid;*/
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
}

.posts > .post > .post-header > .post-avatar{
  height: 1.5cm;
  width: 1.5cm;
  margin-left: 20px;
  margin-right: 20px;
  border-radius: 100px;
}

.posts > .post > .post-header > .post-author{
  height: 100%;
  flex:3;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  -o-justify-content: center;
  -moz-justify-content: center;
}

.posts > .post > .post-header > .post-author h1{
  margin: 0;
  font-size: 20pt;
}

.posts > .post > .post-header > .post-author p{
  margin: 0;
  font-size: 9pt;
  color:#999;
}

.posts > .post > .post-header > .post-label{
  background: #f43;
  height: 28px;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
}

.posts > .post > .post-header > .post-label > *{
  display: block;
}

.posts > .post > .post-body{
}

.posts > .post > .post-body > .post-caption{
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 10px;
  margin-top: -10px;
}

.posts > .post > .post-body > .post-media{
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-justify-content: center;
  -o-justify-content: center;
  -moz-justify-content: center;
	max-height: 500px;
}

.posts > .post > .post-body > .post-media > .post-media-more{
  width: 50%;
  height: auto;
  object-fit: cover;
  -o-object-fit: cover;
  text-align: center;
  font-size: 100pt;
	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
	flex-direction: column;
}

.posts > .post > .post-body > .post-media > .post-media-more > .view{
  width: 100%;
	flex: 1;
  object-fit: cover;
  -o-object-fit: cover;
  text-align: center;
  font-size: 100pt;
	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
}

.posts > .post > .post-body > .post-media > .post-media-more > .view > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  text-align: center;
  font-size: 100pt;
}

.posts > .post > .post-body > .post-media > .post-media-more > .view > .sub-view{
  flex: 1;
  height: auto;
  object-fit: cover;
  -o-object-fit: cover;
  text-align: center;
  font-size: 100pt;
}

.posts > .post > .post-body > .post-media > .post-media-more > .view > .sub-view.overlay{
	position: absolute;
	right: 0;
	width: 25%;
	align-self: center;
	-webkit-align-self: center;
}

.posts > .post > .post-body > .post-media > .post-media-more > .view > .sub-view.overlay > span{
	font-size: 85pt;
	color: #4ea3c9;
}

.posts > .post > .post-body > .post-media > .post-media-more > .view > .sub-view > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  text-align: center;
  font-size: 100pt;
	background: #eee;
}

.posts > .post > .post-body > .post-media > .post-media-more > .view > .sub-view > img.has-overlay{
  opacity: 0.5;
	filter: opacity(50%);
}

.posts > .post > .post-body > .post-media > .oveflow-extra{
  width: 50%;
  height: auto;
  object-fit: cover;
  -o-object-fit: cover;
  text-align: center;
  font-size: 100pt;
  position: absolute;
  right: 0;
}

.posts > .post > .post-body > .post-media > .oveflow-extra > span{
  width: 100%;
  height: 100%;
  color: #4ea3c9;
}

.posts > .post > .post-body > .post-media.overflow > img{
  width: 50%;
  object-fit: cover;
  -o-object-fit: cover;
}

.posts > .post > .post-body > .post-media.overflow > img:nth-child(2){
  width: 50%;
  opacity: 0.5;
  cursor: pointer;
}

.posts > .post > .post-body > .post-media.even > img{
  width: 50%;
  object-fit: cover;
  -o-object-fit: cover;
}

.posts > .post > .post-body > .post-media.odd > img{
  width: 50%;
  object-fit: cover;
  -o-object-fit: cover;
}

.posts > .post > .post-body > .post-media.one > img{
  width:100%;
  height: auto;
  display: block;
  object-fit: cover;
  -o-object-fit: cover;
}

.posts > .post > .post-actions{
  display: flex;
  display: -webkit-flex;
  width: 100%;
	margin-left: 10px;
	justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -o-justify-content: flex-start;
  -moz-justify-content: flex-start;
	align-content: center;
	margin-top: 10px;
}

.posts > .post > .post-actions > .post-action{
  height: 100%;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
  cursor: pointer;
  color: #4ea3c9;
  outline: none;
  margin-left: 10px;
}

.posts > .post > .post-actions > .post-action:hover{
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -o-transform: scale(0.8);
}

.posts > .post > .post-actions > .post-action > i{
  font-size: 14px;
}

.posts > .post > .post-actions > .post-action > .action-label{
	height: 100%;
	color: lightslategray;
	margin-left: 4px;
	font-size: 12px;
}

.posts > .post > .post-comments{
	background: #f8f8f8;
	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
	flex-direction: column;
	margin-left: 20px;
	margin-right: 20px;
}

.posts > .post > .post-comments > .post-comment-more{
	color: #888;
	line-height: 30px;
	font-size: 12px;
	cursor: pointer;
	text-align: left;
	display: block;
	border-bottom: 1px solid #eee;
	margin-left: 10px;
	margin-right: 10px;
}

.posts > .post > .post-comments > .post-comment{
    background: #f8f8f8;
    display: flex;
	  display: -webkit-flex;
	  display: -moz-flex;
	  display: -o-flex;
		margin-left: 10px;
		margin-right: 10px;
    display: -webkit-flex;
    border-bottom: 1px solid #eee;
}

.posts > .post > .post-comments > .post-comment > .comment-avatar{
    height: 36px;
    width: 36px;
    margin: 10px 10px 10px 0px;
    border-radius: 100px;
}

.posts > .post > .post-comments > .post-comment > .comment-content{
    flex:2;
}

.posts > .post > .post-comments > .post-comment > .comment-content-header{
	margin-top: 10px;
	height: 36px;
	margin-right: 18px;
	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
	align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
	position: absolute;
	right: 0;
}

.posts > .post > .post-comments > .post-comment > .comment-content-header > .comment-content-header-label{
  flex: 2;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  flex-direction: column;
}

.posts > .post > .post-comments > .post-comment > .comment-content-header > .comment-content-header-label > h1{
  margin: 0;
  font-size: 14px;
}

.posts > .post > .post-comments > .post-comment > .comment-content-header > .comment-content-header-label > p{
  margin: 0;
  font-size: 10px;
}

.posts > .post > .post-comments > .post-comment > .comment-content-header > .comment-content-header-action{
  margin-right: 10px;
  color: gray;
  outline: none;
	font-size: 14px;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-body{

}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-body > .comment-content{
  margin-top: 18px;
  padding-bottom: 4px;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-body > .comment-content > a{
	color: #4ea3c9;
	cursor: pointer;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-body > .comment-edit-field{
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
  width: 100%;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-body > .comment-edit-field > i{
  outline: none;
  margin-left: 5px;
  margin-right: 5px;
  cursor: pointer;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-body > .comment-edit-field > textarea{
	resize: none;
	overflow-y: hidden;
	flex: 3;
	display: block;
	outline: none;
	height: 35px;
	margin-top: 12px;
	margin-bottom: 5px;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-body > .comment-media{
	width: 150px;
	margin-bottom:5px;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-actions{
	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
	width: 100%;
	justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -o-justify-content: flex-start;
  -moz-justify-content: flex-start;
	align-content: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
	line-height: 15px;
	margin-bottom: 5px;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-actions > .comment-content-action{
	height: 100%;
	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
	align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
	cursor: pointer;
	color: #4ea3c9;
	outline: none;
	font-size: 14px;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-actions > .comment-content-action:hover{
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -o-transform: scale(0.8);
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-actions > .comment-content-time{
	height: 100%;
	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
	align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
	cursor: pointer;
	color: #4ea3c9;
	outline: none;
	font-size: 14px;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-actions > .comment-content-action > i{
	font-size: 14px;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-actions > .comment-content-action > .action-label,
.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-actions > .comment-content-time > .action-label{
  height: 100%;
  color: lightslategray;
	margin-left: 4px;
	font-size: 10px;
	margin-right: 7px;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-replies{

}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply{
  background: #f8f8f8;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
	border-left: 1px solid #eee;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-avatar{
    height: 36px;
    width: 36px;
    margin: 10px;
    border-radius: 100px;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content{
    flex:2;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content-header{
	margin-top: 10px;
	height: 36px;
	margin-right: 18px;
	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
	align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
	position: absolute;
	right: 0;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content-header > .reply-content-header-label{
  flex: 2;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  flex-direction: column;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content-header > .reply-content-header-label > h1{
  margin: 0;
  font-size: 14px;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content-header > .reply-content-header-label > p{
  margin: 0;
  font-size: 10px;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content-header > .reply-content-header-action{
  margin-right: 0.5cm;
  color: gray;
  outline: none;
	font-size: 14px;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-body{

}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-body > .reply-content{
  margin-top: 18px;
  padding-bottom: 4px;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-body > .reply-content > a{
	color: #4ea3c9;
	cursor: pointer;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-body > .reply-edit-field{
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
  width: 100%;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-body > .reply-edit-field > i{
  outline: none;
  margin-left: 5px;
  margin-right: 5px;
  cursor: pointer;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-body > .reply-edit-field > textarea{
	resize: none;
	overflow-y: hidden;
	flex: 3;
	display: block;
	outline: none;
	height: 35px;
	margin-top: 12px;
	margin-bottom: 5px;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-body > .reply-media{
	width:150px;
	margin-bottom: 5px;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-actions{
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
	width: 100%;
	justify-content: center;
  -webkit-justify-content: center;
  -o-justify-content: center;
  -moz-justify-content: center;
	align-content: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
	line-height: 15px;
	margin-bottom: 5px;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-actions > .reply-content-action{
	height: 100%;
	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
	align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
	cursor: pointer;
	color: #4ea3c9;
	outline: none;
	font-size: 14px;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-actions > .reply-content-action:hover{
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -o-transform: scale(0.8);
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-actions > .reply-content-action > i{
	font-size: 14px;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-actions > .reply-content-action > .action-label{
	height: 100%;
	color: lightslategray;
	margin-left: 4px;
	font-size: 10px;
	margin-right: 7px;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply:last-child{
  border-bottom: none;
}

.posts > .post > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply:first-child{
}

.posts > .post > .post-comments > .post-comment:last-child{
  border-bottom: none;
}

.posts > .post > .post-comments > .post-comment:first-child{
  border-top: 1px solid #eee;
}

.posts > .post > .post-footer{
  border-top: 1px #eee solid;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  background: #f8f8f8;
  align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
	margin-left: 20px;
	margin-right:20px;
	margin-bottom: 20px;
}

.posts > .post > .post-footer > .post-avatar{
  height: 36px;
  width: 36px;
  border-radius: 100px;
  margin: 10px;
  outline: none;
}

.posts > .post > .post-footer > .comment-placeholder{
	margin: 0;
	font-size: 12px;
	outline: none;
	line-height: 36px;
	margin-left: 20px;
	border: 0.3px solid #ccc;
	width: 82.5%;
	color: #ddd;
	padding-left: 10px;
	background: #fff;
}

.posts > .post > .post-footer > .comment-field{
  width: 100%;
}

.posts > .post > .post-footer > .comment-field > .comment-image{
  width: 100px;
	height:100px;
	margin-left: 75px;
	margin-top: 10px;
}

.posts > .post > .post-footer > .comment-field > .comment-image > img{
  width: 100%;
	height:100%;
}

.posts > .post > .post-footer > .comment-field > .comment-image > i{
	width: 100px;
	height: 26px;
	position: absolute;
/* top: 0; */
	margin-top: -25px;
	background: #222;
	color: #fff;
	font-size: 16px;
	line-height: 26px;
	text-align: center;
	opacity: 0.8;
	display: none;
	cursor: pointer;
}

.posts > .post > .post-footer > .comment-field > .comment-image:hover > i{
  display: block;
}

.posts > .post > .post-footer > .comment-field > .comment-image > .spinner{
	height: 28px;
	width: 28px;
	animation: rotate 0.8s infinite linear;
	-webkit-animation: rotate 0.8s infinite linear;
	border: 2px solid #fff;
	border-right-color: transparent;
	border-radius: 50%;
	position: absolute;
	left: 0;
	margin-top: -65px;
	margin-left: 130px;
}

.posts > .post > .post-footer > .comment-field > .comment-field-input{
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
  width: 100%;
}

.posts > .post > .post-footer > .comment-field > .comment-field-input > .post-avatar{
  width: 36px;
	height: 36px;
	border-radius: 100px;
	margin: 10px;
}

.posts > .post > .post-footer > .comment-field > .comment-field-input > .comment-field-text{
  margin-left: 20px;
  resize: none;
  overflow-y: hidden;
  flex: 3;
  display: block;
  outline: none;
  height: 36px;
}

.posts > .post > .post-footer > .comment-field > .comment-field-input > i{
  outline: none;
  margin-left: 5px;
  margin-right: 5px;
  cursor: pointer;
	color: #ccc;
}

.comment-footer{
  width: 100%;
	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  align-items: flex-start;;
  -webkit-align-items: flex-start;
  -o-align-items: flex-start;
  -moz-align-items: flex-start;
	flex-direction: column;
	margin-top: 5px;
	margin-bottom: 5px;
}

.comment-footer > .comment-image{
  width: 100px;
	height:100px;
	margin-left: 55px;
	margin-top: 10px;
}

.comment-footer > .comment-image > img{
  width: 100%;
	height:100%;
}

.comment-footer > .comment-image > i{
	width: 100px;
	height: 26px;
	position: absolute;
/* top: 0; */
	margin-top: -25px;
	background: #222;
	color: #fff;
	font-size: 16px;
	line-height: 26px;
	text-align: center;
	opacity: 0.8;
	display: none;
	cursor: pointer;
}

.comment-footer > .comment-image:hover > i{
  display: block;
}

.comment-footer > .comment-image > .spinner{
	height: 28px;
	width: 28px;
	animation: rotate 0.8s infinite linear;
	-webkit-animation: rotate 0.8s infinite linear;
	border: 2px solid #fff;
	border-right-color: transparent;
	border-radius: 50%;
	left: 0;
	margin-top: -65px;
	margin-left: 35px;
}

.comment-footer > .comment-field-input{
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
  width: 100%;
}

.comment-footer > .comment-field-input > .reply-avatar{
  width: 30px;
	height: 30px;
	margin: 10px;
	border-radius: 100px;
}

.comment-footer > .comment-field-input > .comment-field-text{
  resize: none;
  overflow-y: hidden;
  flex: 3;
  display: block;
  outline: none;
  height: 30px;
	padding: 5px;
}

.comment-footer > .comment-field-input > i{
  outline: none;
  margin-left: 5px;
  margin-right: 5px;
  cursor: pointer;
	color: #ccc;
}


.post-event{
  background:#374353;
}

.post-event > .post-event-header{
	width: 100%;
	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
	justify-content: center;
  -webkit-justify-content: center;
  -o-justify-content: center;
  -moz-justify-content: center;
	align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
}

.post-event > .post-event-header > .status{
	height: 28px;
  background: gold;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
  color: white;
	padding-top: 1px;
}

.post-event > .post-event-header > .status > span{
  margin-left: 15px;
  border-right: 1px solid #fff;
  padding-right: 18px;
}

.post-event > .post-event-header > .status > img{
	height: 18px;
  margin-left: 18px;
  margin-right: 10px;
}

.post-event > .post-event-header > .gap{
	flex: 3;
}

.post-event > .post-event-header > .details{
	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
	flex-direction: column;
	align-items: flex-end;
	-webkit-align-items: flex-end;
  -o-align-items: flex-end;
  -moz-align-items: flex-end;
	padding: 0.5em;
	color: #fff;
	margin-right: 20px;
}

.post-event > .post-event-header > .details > span:first-child{
	font-size: 16px;
}

.post-event > .post-event-header > .details > span:last-child{
	font-size: 12px;
}

.post-event > .post-event-body{
  width: 100%;
	height: 4cm;
	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
	align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
	text-align: center;
}

.post-event > .post-event-body > .team{
	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
	align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
	padding-left: 1.5cm;
	padding-right: 1.5cm;
}

.post-event > .post-event-body > .team.one{
	flex-direction: column;
}

.post-event > .post-event-body > .team.two{
	flex-direction: column-reverse;
}

.post-event > .post-event-body > .team > img{
	height: 60px;
  width: auto;
}

.post-event > .post-event-body > .team > span{
	color: white;
  font-size: larger;
  padding: 0.5em;
	font-size: 20px;
	line-height: 30px;
	height: 30px;
}

.post-event > .post-event-body > .score{
	display: block;
  flex: 3;
  text-align: center;
  color: white;
  font-size: 50px;
	line-height: 90px;
	height: 90px;
}

.post-event > .post-event-body{

}

.post-event > .post-event-actions{
	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
	align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
	margin: 20px;
	margin-top: 5px;
	margin-bottom: 5px;
	border-top: 0.5px solid #69727d!important;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}

.post-event > .post-event-actions > .view-label{
	color: white;
	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
	align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
  flex: 3;
	font-size: 14px;
	line-height: 14px;
}

.post-event > .post-event-actions > .comment-tabs{
	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
}

.post-event > .post-event-actions > .comment-tabs > .comment-tab{
	margin-left: 4px;
	margin-right: 8px;
	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
	align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
	justify-content: center;
  -webkit-justify-content: center;
  -o-justify-content: center;
  -moz-justify-content: center;
  cursor: pointer;
	outline: none;
}

.post-event > .post-event-actions > .comment-tabs > .comment-tab > .tab-label{
	color: #FFFFFF;
  font-size: 14px;
  height: 14px;
  line-height: 14px;
}

.post-event > .post-event-actions > .comment-tabs > .comment-tab > .tab-label:hover,
.post-event > .post-event-actions > .comment-tabs > .comment-tab.active > .tab-label{
	color: #4ea3c9!important;
}

.post-event > .post-event-actions > .comment-tabs > .comment-tab > .tab-badge{
	display: block;
	background: #D21E41;
	margin-left: 5px;
	color: white;
	border-radius: 2px;
	height: 15px;
	width: 15px;
	font-size: 8px;
	text-align: center;
}

.post-event > .post-event-comments{
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  flex-direction: column;
	margin-left: 20px;
	margin-right: 20px;
}

.post-event > .post-event-comments > .post-comment-more{
  color: #888;
  line-height: 20pt;
  text-align: left;
  display: block;
  padding-left: 20px;
  border-top: 1px solid #555;
}

.post-event > .post-event-comments > .post-comment{
    width: 100%;
    display: flex;
	  display: -webkit-flex;
	  display: -moz-flex;
	  display: -o-flex;
}

.post-event > .post-event-comments > .post-comment:nth-child(odd){
    background: #8F959E!important;
		margin-right: 20px;
}

.post-event > .post-event-comments > .post-comment:nth-child(even){
    background: #737B86!important;
		margin-right: 20px;
}

.post-event > .post-event-comments > .post-comment > .comment-avatar{
    height: 36px;
    width: 36px;
    margin: 10px 10px 10px 10px;
    border-radius: 100px;
}

.post-event > .post-event-comments > .post-comment > .comment-content{
    flex:2;
		margin-right: 10px;
}

.post-event > .post-event-comments > .post-comment > .comment-content-header{
  margin-top: 10px;
  height: 36px;
  margin-bottom: 18px;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
}

.post-event > .post-event-comments > .post-comment > .comment-content-header > .comment-content-header-label{
  flex: 2;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  flex-direction: column;
}

.post-event > .post-event-comments > .post-comment > .comment-content-header > .comment-content-header-label > h1{
  margin: 0;
  font-size: 14px;
}

.post-event > .post-event-comments > .post-comment > .comment-content-header > .comment-content-header-label > p{
  margin: 0;
  font-size: 10px;
}

.post-event > .post-event-comments > .post-comment > .comment-content-header > .comment-content-header-action{
  margin-right: 0.5cm;
  color: gray;
  outline: none;
	font-size: 14px;
	color: aliceblue;
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-body{

}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-body > .comment-content{
  margin-top: 18px;
  padding-bottom: 4px;
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-body > .comment-edit-field{
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
  width: 100%;
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-body > .comment-edit-field > i{
  outline: none;
  margin-left: 5px;
  margin-right: 5px;
  cursor: pointer;
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-body > .comment-edit-field > textarea{
	margin-right: 20px;
	resize: none;
	overflow-y: hidden;
	flex: 3;
	display: block;
	outline: none;
	height: 36px;
	margin-bottom: 5px;
	background: #eee;
	border: none;
	margin-top: 10px;
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-body > .comment-media{
	width: 150px;
	margin-bottom: 5px;
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-actions{
	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
	width: 100%;
	justify-content: center;
  -webkit-justify-content: center;
  -o-justify-content: center;
  -moz-justify-content: center;
	align-content: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
	line-height: 15px;
	margin-bottom: 5px;
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-actions > .comment-content-action{
	height: 100%;
	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
	align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
	cursor: pointer;
	color: #4ea3c9;
	outline: none;
	font-size: 14px;
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-actions > .comment-content-action:hover{
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -o-transform: scale(0.8);
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-actions > .comment-content-action > i{
	font-size: 14px;
	color: #fff;
	opacity: 0.5;
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-actions > .comment-content-action > .action-label{
	height: 100%;
	color: #fff;
	opacity: 0.5;
	margin-left: 4px;
	font-size: 10px;
	margin-right: 7px;
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-replies{

}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply{
  background: transparent;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-avatar{
    height: 36px;
    width: 36px;
    margin: 10px;
    border-radius: 100px;
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content{
    flex:2;
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-header{
  margin-top: 10px;
  height: 36px;
  margin-bottom: 18px;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-header > .reply-content-header-label{
  flex: 2;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  flex-direction: column;
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-header > .reply-content-header-label > h1{
  margin: 0;
  font-size: 14px;
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-header > .reply-content-header-label > p{
  margin: 0;
  font-size: 10px;
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-header > .reply-content-header-action{
  margin-right: 0.5cm;
  color: gray;
  outline: none;
	font-size: 14px;
	color: aliceblue;
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-body{

}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-body > .reply-content{
  margin-top: -16px;
  padding-bottom: 4px;
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-body > .reply-edit-field{
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
  width: 100%;
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-body > .reply-edit-field > i{
  outline: none;
  margin-left: 5px;
  margin-right: 5px;
  cursor: pointer;
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-body > .reply-edit-field > textarea{
  resize: none;
  overflow-y: hidden;
  flex: 3;
  display: block;
  outline: none;
  line-height: 20pt;
	background: #eee;
	border: none;
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-body > .reply-media{
	width: 150px;
	margin-bottom: 5px;
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-actions{
	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
	width: 100%;
	justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -o-justify-content: flex-start;
  -moz-justify-content: flex-start;
	align-content: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
	line-height: 15px;
	margin-bottom: 5px;
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-actions > .reply-content-action{
	height: 100%;
	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
	align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
	cursor: pointer;
	color: #4ea3c9;
	outline: none;
	font-size: 14px;
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-actions > .reply-content-action:hover{
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -o-transform: scale(0.8);
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-actions > .reply-content-action > i{
	font-size: 10px;
	color: #fff;
	opacity: 0.5;
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-actions > .reply-content-action > .action-label{
	height: 100%;
	color: #fff;
	margin-left: 4px;
	font-size: 10px;
	margin-right: 7px;
	opacity: 0.5;
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply:last-child{
  border-bottom: none;
}

.post-event > .post-event-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply:first-child{

}

.post-event > .post-event-comments > .post-comment:last-child{
  border-bottom: none;
}

.post-event > .post-event-comments > .post-comment:first-child{

	margin-right: 10px;
}

.post-event > .post-event-footer{
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
	margin-left: 10px;
	margin-right: 10px;
}

.post-event > .post-event-footer > .post-avatar{
  height: 36px;
  width: 36px;
  border-radius: 100px;
  margin: 10px;
  outline: none;
}

.post-event > .post-event-footer > .comment-placeholder{
  margin: 0;
  font-size: 14px;
  margin-left: 10px;
  outline: none;
	color: #737a86;
	flex:1;
}

.post-event > .post-event-footer > .comment-field{
  width: 100%;
  margin-top: 0.5cm;
  margin-bottom: 0.5cm;
}

.post-event > .post-event-footer > .comment-field > .comment-field-input{
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
  width: 100%;
}

.post-event > .post-event-footer > .comment-field > .comment-field-input > .comment-field-text{
  margin-left: 20px;
  resize: none;
  overflow-y: hidden;
  flex: 3;
  display: block;
  outline: none;
  line-height: 20pt;
  border-radius: 5px;
  border: none;
}

.post-event > .post-event-footer > .comment-field > .comment-field-input > i{
  outline: none;
  margin-left: 5px;
  margin-right: 5px;
  cursor: pointer;
	color: aliceblue;
	opacity: 0.7;
}

/**
 *	@description
 *	The code below handles all ngAnimation
 **/

.ng-enter, .ng-leave {
  -webkit-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-moz-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-o-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940);
	transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940);
}

.ng-enter,
.ng-leave.ng-leave-active {
  display: none;
}

.ng-leave,
.ng-enter.ng-enter-active {
  display: block;
}

/**
 *	@description
 *	The code below handles all modal related styling
 **/
body.modal-open,body.modal-open.ng-scope,body.ng-scope, [modal].in,[modal].ng-scope.in{
		padding-left: 0px!important;
		padding-right: 0px!important;
}

 [modal],.modal{
	 width: 100%;
   position: fixed;
   height: 100%;
   z-index: 4000;
   top: 0;
   display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
   align-items: flex-start;
   -webkit-align-items: flex-start;
   -o-align-items: flex-start;
   -moz-align-items: flex-start;
   justify-content: center;
   -webkit-justify-content: center;
   -o-justify-content: center;
   -moz-justify-content: center;
	 overflow-y: auto;
 }

 [modal]::before,.modal::before{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 content: "";
	 width: 100%;
	 height: 100%;
	 background: #222;
	 position: fixed;
	 margin: 0;
	 padding: 0;
	 opacity: 0.9;
	 filter: alpha(opacity=90);
 }

 [modal] > .modal-body{
   background: #fff!important;
	 position: relative;
	 top:15%;
 }

 [modal] > .modal-body::after,.modal > .modal-body::after{
	 display: none;
	 content: "";
	 width: 36px;
	 height: 36px;
	 background: url(.././lib/fancybox/fancybox_sprite.svg);
	 background-size: 44px 152px!important;
	 border-radius: 100px;
	 position: absolute;
	 top: 0;
	 right: 0;
	 margin: -18px;
 }

 [modal] > .modal-body > [close],.modal > .modal-body > .modal-close{
	 display: block;
	 width: 36px;
	 height: 36px;
	 background: none;
	 border: none;
	 position: absolute;
	 top: 0;
	 z-index: 4000;
	 right: 0;
 }

 .pac-container{
	 z-index: 4000;
 }

 [modal] > .modal-body > [close]::after,.modal > .modal-body > .modal-close::after{
	 display: block;
	 content: "";
	 width: 36px;
	 height: 36px;
	 background: url(.././lib/fancybox/fancybox_sprite.svg);
	 background-size: 44px 152px!important;
	 border-radius: 100px;
	 position: absolute;
	 top: 0;
	 right: 0;
	 margin: -18px;
 }

 .modal > .modal-body > .modal-close:hover{
	 background: none;
 }

 [modal] > .modal-body > .post_to_holder{
	 padding-right: 20px;
	 padding-bottom: 4.8em;
 }

 .modal-backdrop.in{
	 display: none;
 }

 .files-upload-holder{
	 width:800px;
 	 padding:20px;
   display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
 }

 .files-upload-holder > .files-to-upload{
	 flex: 3;
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 flex-wrap: wrap;
	 background: url(.././images/add_image.svg);
    background-size: 150px 150px;
    background-position: center center;
    background-repeat: no-repeat;
		border: 0.3px solid #ddd;
    margin-right: 15px;
		height: 12.24cm;
    overflow-y: auto;
 }

 .files-upload-holder > .files-to-upload > .image{
	 width: 46%;
	 height: 210px;
	 object-fit: contain;
	 -webkit-object-fit: contain;
	 margin: 2%;
   display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 flex-direction: column;
	 width: 46%;
 }

 .files-upload-holder > .files-to-upload > .image > .progress-for{
   width: 100%;
   height: 10px;
 }

 .files-upload-holder > .files-to-upload > .image > .delete-me{
	 width: 100%;
   text-align: center;
   line-height: 20pt;
   margin-top: 2px;
   border: 1px solid #fff;
   background: #000;
   color: #fff;
   outline: none;
   opacity: 0.5
 }

 .files-upload-holder > .files-to-upload > .image > .progress-for > div{
	 display: block;
   width: 50%;
   height: 100%;
	 background: #4a5;
 }

 .files-upload-holder > .files-to-upload > .image > img{
	 display: block;
   width: 100%;
   flex:1;
 }

 .files-upload-holder > .files-to-upload > .image > video{
	 display: block;
   width: 100%;
   flex:1;
 }

 .files-upload-holder > .upload-details{
	 width: 30%;
 }

 [check-in]{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 flex-direction: column;
	 width: 500px;
 }

 [check-in] > [input]{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 flex-direction: column;
	 padding: 20px;
 }

 [check-in] > [input] > .label{
	 color: #222;
	 text-align: left;
	 font-size: 14px;
	 margin-left: 0px !important;
	 padding: 0px;
 }

 [check-in] > [input] > .location{
	 margin-top: 10px;
	 margin-bottom: 15px;
 }

 [check-in] > [input] > .postBody{
	 resize: none;
	 color:#aaa;
 }

 [check-in] > [input] > .postBody:focus{
	 color:#222;
 }

 [sharing-window]{
	 width: 12cm;
	 background: #fff;
 }

 [sharing-window] > [sharing-tabs]{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 align-items: center;
   -webkit-align-items: center;
   -o-align-items: center;
   -moz-align-items: center;
	 width: 100%;
 }

 [sharing-window] > [sharing-tabs] > [sharing-tab]{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 flex-direction: column;
	 justify-content: center;
   -webkit-justify-content: center;
   -o-justify-content: center;
   -moz-justify-content: center;
	 align-items: center;
   -webkit-align-items: center;
   -o-align-items: center;
   -moz-align-items: center;
	 flex: 1;
	 cursor: pointer;
	 outline: none;
	 padding: 10px;
	 color: #fff;
	 background: #374353;
 }

 [sharing-window] > [sharing-tabs] > [sharing-tab]:hover{
	 color: #fff;
	 background: #4ea3c9;
 }

 [sharing-window] > [sharing-tabs] > [sharing-tab].active{
	 color: #374353;
	 background: #fff;
 }

 [sharing-window] > [sharing-tabs] > [sharing-tab] > img{
	 width: 30px;
	 height: 30px;
 }

 [sharing-window] > [sharing-tabs] > [sharing-tab] > span{
	 display: block;
   color: inherit;
   font-size: 14px;
 }

 [sharing-window] > [sharing-tab-views]{
	 padding: 20px;
	 overflow-y: auto;
 }

 [sharing-window] > [sharing-tab-confirm]{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 align-items: center;
   -webkit-align-items: center;
   -o-align-items: center;
   -moz-align-items: center;
 }

 [sharing-window] > [sharing-tab-confirm] > span{
	 display: block;
	 flex: 2;
	 line-height: 25pt;
	 margin: 8px;
 }

 [sharing-window] > [sharing-tab-confirm] > button{
	 display: block;
	 margin: 8px;
	 border: none;
	 background: #4EA3C9!important;
	 color: #fff;
	 font-size: 9pt;
	 outline: none;
	 line-height: 25pt;
 }

 .share-with-people{
	 line-height: 40px;
	 height: 40px;
	 font-size: 16px;
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 width: 100%;
	 align-items: center;
   -webkit-align-items: center;
   -o-align-items: center;
   -moz-align-items: center;
	 justify-content: center;
   -webkit-justify-content: center;
   -o-justify-content: center;
   -moz-justify-content: center;
	 border-top: 0.5px dotted #ccc;
	 border-bottom: 0.5px dotted #ccc;
 }

 .share-with-people > .friends, .share-with-people > .groups{
	 flex: 1;
	 text-align: center;
	 line-height: inherit;
	 color: #444;
	 outline: none;
 }

 .share-with-people > .friends.active, .share-with-people > .groups.active{
	 flex: 1;
	 text-align: center;
	 line-height: inherit;
	 background: #F2F2F2;
 }

 .share-with-people > .friends:hover, .share-with-people > .groups:hover{
	 background: #4EA3C9;
	 color: #fff;
 }

 .to-friends{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 flex-direction: column-reverse;
 }

 .to-friends > div{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 align-items: center;
   -webkit-align-items: center;
   -o-align-items: center;
   -moz-align-items: center;
	 cursor: pointer;
	 outline: none;
	 border-bottom: 0.5px dotted #ccc;
 }

 .to-friends > div:hover{
	 /*background: #eee;*/
 }

 .to-friends > div.tagged{
	 color: #4EA3C9;
 }

 .to-friends > div[input]{
	 border: none;
 }

 .to-friends > div[input]:hover{
	 background: none;
 }

 div.tagged{
	 /*background: #e0eaf4;*/
 }

 div.tagged > img{
	 border:2px solid #4EA3C9;
 }

 .to-friends > div > img{
	 height: 43px;
	 width: 43px;
	 margin: 10px;
	 border-radius: 100px;
 }

 .to-friends > [input], .to-groups > [input]{
	 font-family: inherit;
	 font-size: inherit;
	 width: 100%;
	 outline: none;
	 padding: 0.2em 0em 0.2em 0em;
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
 }

 .to-friends > [input] > input, .to-groups > [input] > input{
	 flex: 1;
	 height: 30px;
 }

 .to-friends > [input] > span, .to-groups > [input] > span{
	 width: 36px;
	 height: 36px;
	 padding: 0.3em;
	 margin-left: 20px;
	 margin-right: 10px;
	 content: url(../images/search_sport_hover.svg);
	 cursor: pointer;
 }

 .to-friends > [input] > span:hover, .to-groups > [input] > span:hover{
 	content: url(../images/search_friend_drk.svg);
 }

 .to-friends > [input] > button, .to-groups > [input] > button{
	 background: #4ea3c9;
	 height: 30px;
	 color: #fff;
	 border: none;
 }

 .to-groups{
   display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
   flex-direction: column-reverse;
 }

 .to-groups > .group{
	 border-bottom: 0.5px dotted #ccc;
 }

 .to-groups > div .list .toggled,
 .to-groups > div .list .not-toggled{
	 height: 20px;
	 width: 20px;
	 content: url(.././images/down_arrow.svg);
	 margin-right: 10px;
	 border-radius: 100px;
 }

 .to-groups > div .list .toggled{
	 transform: rotate(0deg);
 }

 .to-groups > div .list .not-toggled{
	 transform: rotate(180deg);
 }

 .to-groups > div .list{
   display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
   align-items: center;
   -webkit-align-items: center;
   -o-align-items: center;
   -moz-align-items: center;
   cursor: pointer;
   outline: none;
 }

 .to-groups > div .list:hover{
   /*background: #eee;*/
 }

 .to-groups > div .list.tagged{
   color: #4EA3C9;
 }

 .to-groups > div .list > img{
   height: 43px;
	 width: 43px;
   margin: 10px;
   border-radius: 100px;
 }

 .to-groups .to-members{
   display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
   flex-direction: column;
 }

 .to-groups .to-members > div{
   display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
   align-items: center;
   -webkit-align-items: center;
   -o-align-items: center;
   -moz-align-items: center;
   cursor: pointer;
   outline: none;
 }

 .to-groups .to-members > div:hover{
 }

 .to-groups .to-members > div.tagged{
   color: #4EA3C9;
 }

 .to-groups .to-members > div > img{
   height: 43px;
	 width: 43px;
   margin: 10px;
   border-radius: 100px;
 }

 .select-box{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 flex-direction: column;
 }

 .select-box > .select-label{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 height: 30px;
	 width: 100%;
 }

 .select-box > .select-label > span:first-child{
	 display: block;
	 border: 1px solid #ccc;
	 flex: 2;
	 padding: 0.4em;
 }

 .select-box > .select-label > span.toggled,
 .select-box > .select-label > span.not-toggled{
	 height: 30px;
	 width: 30px;
	 display: block;
	 content: url(.././images/down_arrow_wht.svg);
	 background: #4EA3C9;
	 padding: 0.8em;
	 outline: none;
 }

 .select-box > .select-options{
	 position: absolute;
	 margin-top: 30.5px;
	 width: 91%;
	 background: #fff;
	 box-shadow: 0 5px 10px rgba(0,0,0,0.41);
   padding: 0.3em;
	 z-index: 4000;
	 max-height: 200px;
	 overflow-y: auto;
 }

 .select-box > .select-options > input{
	 font-family: inherit;
	 font-size: inherit;
	 width: 100%;
	 line-height: 18pt;
	 outline: none;
	 padding: 0.2em;
 }

 .select-box > .select-options > ul{
	 width: 100%;
	 list-style: none;
	 padding: 0;
	 padding-top: 0.2em;
	 margin: 0;
 }

 .select-box > .select-options > ul > li{
	 outline: none;
	 line-height: 16pt;padding: 0.5em;
 }

 .select-box > .select-options > ul > li:hover{
	 background: #eee;
 }

 .select-box > .select-options > ul > li.selected{
	 background: aliceblue;
 }

 .select-box > .select-options > ul > li > img{
	 width: 18px;
	 height: 18px;

 }

 .select-box > .select-options > ul > li > span{
	 margin-left: 3px;
 }

 .team-list{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 flex-direction: column-reverse;;
	 margin-top: 4px;
 }

 .team-list > [input]{
	 font-family: inherit;
	 font-size: inherit;
	 width: 100%;
	 outline: none;
	 padding: 0.2em 0em 0.2em 0em;
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
 }

 .team-list > [input] > input{
	 flex: 1;
	 height: 30px;
 }

 .team-list > [input] > span{
	 width: 36px;
	 height: 36px;
	 padding: 0.3em;
	 content: url(../images/search_sport_hover.svg);
	 margin-left: 20px;
	 margin-right: 10px;
	 cursor: pointer;
 }

 .team-list > [input] > span:hover{
	 content: url(../images/search_friend_drk.svg);
 }

 .team-list > [input] > button{
	 background: #4ea3c9;
	 border: none;
	 color: #fff;
	 height:30px;
	 font-size:
 }

 .team-list > span{
	 display: block;
	 line-height: 20pt;
	 padding: 0.4em;
	 border-bottom: 1px solid #eee;
 }

 .team-list > span.tagged{
   color: #4EA3C9;
 }

 [advanced-search]{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 flex-direction: column;
 }

 [advanced-search] > button{
	 height: 30px;
	 width: 150px;
	 border: none;
	 color: #fff;
	 background: #4ea3c9;
 }

 [advanced-search] > [viewFor]{
 }

 [advanced-search] > [viewFor] > .input{
	 margin-bottom: 10px;
	 margin-top: 10px;
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 align-items: baseline;
	 -webkit-align-items: baseline;
   -o-align-items: baseline;
   -moz-align-items: baseline;
 }

 [advanced-search] > [viewFor] > .input > [text-field]{
	 margin-bottom: 10px;
	 margin-top: 10px;
 }

 [advanced-search] > [viewFor] > .input > [text-field] > input{
	 height: 30px;
 }

 [advanced-search] > [viewFor] > .input > [text-field] > [list]{
	 height: 200px;
	 width: 41.6%;
	 background: #eee;
	 position: absolute;
	 z-index: 7000;
 }

 [advanced-search] > [viewFor] > .input > span{
	 height: 30px;
	 margin-left: 5px;
	 margin-right: 5px;
 }

 [advanced-search] > [optionsFor]{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 justify-content: center;
   -webkit-justify-content: center;
   -o-justify-content: center;
   -moz-justify-content: center;
 }

 [advanced-search] > [optionsFor] > span{
	 margin-left: 20px;
 }

 [type="radio"]:checked,
	[type="radio"]:not(:checked) {
	    position: absolute;
	    left: -9999px;
	}
	[type="radio"]:checked + label,
	[type="radio"]:not(:checked) + label
	{
	    position: relative;
	    padding-left: 28px;
	    cursor: pointer;
	    line-height: 20px;
	    display: inline-block;
	    color: #666;
	}
	[type="radio"]:checked + label:before,
	[type="radio"]:not(:checked) + label:before {
	    content: '';
	    position: absolute;
	    left: 0;
	    top: 0;
	    width: 18px;
	    height: 18px;
	    border: 1px solid #ddd;
	    border-radius: 100%;
	    background: #fff;
	}
	[type="radio"]:checked + label:after,
	[type="radio"]:not(:checked) + label:after {
	    content: '';
	    width: 12px;
	    height: 12px;
	    background: #4ea3c9;
	    position: absolute;
	    top: 3px;
	    left: 3px;
	    border-radius: 100%;
	    -webkit-transition: all 0.2s ease;
	    transition: all 0.2s ease;
	}
	[type="radio"]:not(:checked) + label:after {
	    opacity: 0;
	    -webkit-transform: scale(0);
	    transform: scale(0);
	}
	[type="radio"]:checked + label:after {
	    opacity: 1;
	    -webkit-transform: scale(1);
	    transform: scale(1);
	}

 .tagWith{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 align-items: center;
   -webkit-align-items: center;
   -o-align-items: center;
   -moz-align-items: center;
	 background: #fff;
	 padding-bottom: 10px;
 }

 .tagWith > .withLabel{
	 line-height: 36px;
	 padding: 0.2em;
	 background: #4ea3c9;
	 color: #fff;
	 margin: 4px;
	 font-size: 12px;
	 width: 8%;
	 text-align: center;
	 margin-left: 20px;
 }

 [tagView]{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 flex-direction: column;
	 flex: 2;
 }

 [tagView] > [tagViewInput]{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 flex-wrap: wrap;
 }

 [tagView] > [tagViewInput] > [tagChip]{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 align-items: center;
   -webkit-align-items: center;
   -o-align-items: center;
   -moz-align-items: center;
    border-radius: 25px;
    background: aliceblue;
    padding: 0.1em;
		margin: 2px;
 }

 [tagView] > [tagViewInput] > [tagChip] > img{
	 height: 20px;
    margin: 3px;
    border-radius: 100px;
 }

 [tagView] > [tagViewInput] > [tagChip] > span:first-child{

 }

 [tagView] > [tagViewInput] > [tagChip] > span:last-child{
	 height: 20px;
    width: 20px;
    font-size: 10pt;
    line-height: 15pt;
    background: #eee;
    text-align: center;
    border-radius: 100px;
    margin: 4px;
 }

 [tagView] > [tagViewInput] > input{
	 border: none;
	 line-height: 14pt;
	 padding: 0.5em;
	 color: #ccc;
 }

 [tagView] > [tagViewData]{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 flex-direction: column;
	 background: #eee;
	 box-shadow: 0 5px 5px rgba(0,0,0,0.2);
	 position: absolute;
	 z-index: 1000;
	 margin-top: 1.6cm;
 }

 [tagView] > [tagViewData] > [dataList]{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 align-items: center;
   -webkit-align-items: center;
   -o-align-items: center;
   -moz-align-items: center;
	 padding: 0.3em;
 }

 [tagView] > [tagViewData] > [dataList] > img{
	 height: 30px;
	 border-radius: 100px;
	 margin: 4px;
 }

 [tagView] > [tagViewData] > [dataList] > span{
	 font-size: 11pt;
 }

 [photo-slider]{
	 width: 800px;
	 height: 13cm;
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 flex-direction: column;
 }

 [photo-slider] > [photos]{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 width: 100%;
	 flex: 1;
 }

 [photo-slider] > [photos] > [photo]{
	 flex:1;
	 display: none;
 }

 [photo-slider] > [photos] > [photo].active{
	 display: block;
 }

 [photo-slider] > [photos] > [photo] > img{
	 height: 100%;
	 width: 100%;
 }

 [photo-slider] > [photos] > [photo-info]{
	 width: 300px;
	 height: 100%;
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 flex-direction: column;
 }

 [photo-slider] > [photos] > [photo-info] > .content{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 flex-direction: column;
	 background: #384353;
	 color: #fff;
 }

 [photo-slider] > [photos] > [photo-info] > .content > .header{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 padding: 10px 10px 5px 10px;
 }

 [photo-slider] > [photos] > [photo-info] > .content > .header > .avatar{
	 margin: 10px;
	 width: 60px;
	 height: 60px;
	 border-radius: 100px;
	 background: #eee;
 }

 [photo-slider] > [photos] > [photo-info] > .content > .header > .author{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 flex-direction: column;
	 justify-content: center;
   -webkit-justify-content: center;
   -o-justify-content: center;
   -moz-justify-content: center;
	 margin-left: 10px;
 }

 [photo-slider] > [photos] > [photo-info] > .content > .header > .author > h1{
	 margin: 0;
	 color: #fff;
	 font-size: 14px;
 }

 [photo-slider] > [photos] > [photo-info] > .content > .header > .author > span{
	 font-size: 9px;
	 color: #ccc;
 }

 [photo-slider] > [photos] > [photo-info] > .content > .body{
	 margin-left: 20px;
	 margin-right: 20px;
	 margin-bottom: 20px;
	 font-size: 12px;
 }
 [photo-slider] > [photos] > [photo-info] > .content > .actions{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 width: 100%;
	 padding: 10px 10px;
	 justify-content: flex-start;
   -webkit-justify-content: flex-start;
   -o-justify-content: flex-start;
   -moz-justify-content: flex-start;
	 align-content: center;
   -webkit-align-items: center;
   -o-align-items: center;
   -moz-align-items: center;
	 margin-top: 10px;
	 background: #4da3c9;
 }

 [photo-slider] > [photos] > [photo-info] > .content > .actions > .action{
	 height: 100%;
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 align-items: center;
   -webkit-align-items: center;
   -o-align-items: center;
   -moz-align-items: center;
	 cursor: pointer;
	 color: #fff;
	 outline: none;
	 margin-left: 10px;
 }

 [photo-slider] > [photos] > [photo-info] > .content > .actions > .action:hover{
	 transform: scale(0.8);
	 -webkit-transform: scale(0.8);
	 -moz-transform: scale(0.8);
	 -o-transform: scale(0.8);
 }

 [photo-slider] > [photos] > [photo-info] > .content > .actions > .action > i{
	 font-size: 14px;
 }

 [photo-slider] > [photos] > [photo-info] > .content > .actions > .action > span{
	 height: 100%;
	 color: #777;
	 margin-left: 4px;
	 font-size: 12px;
 }

 [photo-slider] > [photos] > [photo-info] > .content > .actions > .action:hover > span{
	 color: #eee;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments{
 	background: #f8f8f8;
 	display: block;
 	flex-direction: column;
	overflow-y: auto;
	flex: 1;
	width: 300px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment-more{
 	color: #888;
 	line-height: 30px;
 	font-size: 12px;
 	cursor: pointer;
 	text-align: left;
 	display: block;
 	border-bottom: 1px solid #eee;
 	margin-left: 10px;
 	margin-right: 10px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment{
	 background: #f8f8f8;
    display: flex;
	  display: -webkit-flex;
	  display: -moz-flex;
	  display: -o-flex;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    display: -webkit-flex;
    border-bottom: 1px solid #eee;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-avatar{
     height: 30px;
     width: 30px;
     margin: 10px 10px 10px 0px;
     border-radius: 100px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content{
     flex:2;
		 width: 244px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content-header{
 	height: 36px;
 	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
 	align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
 	right: 0;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content-header > .comment-content-header-label{
   flex: 2;
   display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
   flex-direction: column;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content-header > .comment-content-header-label > h1{
   margin: 0;
   font-size: 14px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content-header > .comment-content-header-label > p{
   margin: 0;
   font-size: 10px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content-header > .comment-content-header-action{
   margin-right: 10px;
   color: gray;
   outline: none;
 	font-size: 10px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-body{

 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-body > .comment-content{
   margin-top: 18px;
   padding-bottom: 4px;
	 font-size: 12px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-body > .comment-content > a{
 	color: #4ea3c9;
 	cursor: pointer;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-body > .comment-edit-field{
   display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
   align-items: center;
   -webkit-align-items: center;
   -o-align-items: center;
   -moz-align-items: center;
   width: 100%;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-body > .comment-edit-field > i{
   outline: none;
   margin-left: 5px;
   margin-right: 5px;
   cursor: pointer;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-body > .comment-edit-field > textarea{
 	resize: none;
 	overflow-y: hidden;
 	flex: 3;
 	display: block;
 	outline: none;
 	height: 35px;
 	margin-top: 12px;
 	margin-bottom: 5px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-body > .comment-media{
 	width: 150px;
 	margin-bottom:5px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-actions{
 	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
 	width: 100%;
 	justify-content: flex-start;
	-webkit-justify-content: flex-start;
	-o-justify-content: flex-start;
	-moz-justify-content: flex-start;
 	align-content: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
 	line-height: 15px;
 	margin-bottom: 5px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-actions > .comment-content-action{
 	height: 100%;
 	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
 	align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
 	cursor: pointer;
 	color: #4ea3c9;
 	outline: none;
 	font-size: 14px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-actions > .comment-content-action:hover{
   transform: scale(0.8);
   -webkit-transform: scale(0.8);
   -moz-transform: scale(0.8);
   -o-transform: scale(0.8);
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-actions > .comment-content-time{
 	height: 100%;
 	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
 	align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
 	cursor: pointer;
 	color: #4ea3c9;
 	outline: none;
 	font-size: 14px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-actions > .comment-content-action > i{
 	font-size: 14px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-actions > .comment-content-action > .action-label,
 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-actions > .comment-content-time > .action-label{
   height: 100%;
   color: lightslategray;
 	margin-left: 4px;
 	font-size: 10px;
 	margin-right: 7px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-replies{

 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply{
	 background: #f8f8f8;
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 border-left: 1px solid #eee;
	 width: 244px;
	 height: auto;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-avatar{
     height: 30px;
     width: 30px;
     margin: 10px;
     border-radius: 100px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content{
     flex:2;
		 width: 245px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content-header{
	 margin-top: 18px;
	 margin-right: 10px;
 	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content-header > .reply-content-header-label{
   flex: 2;
   display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
   flex-direction: column;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content-header > .reply-content-header-label > h1{
   margin: 0;
   font-size: 14px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content-header > .reply-content-header-label > p{
   margin: 0;
   font-size: 10px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content-header > .reply-content-header-action{
	 margin-right: 3px;
    color: gray;
    outline: none;
    font-size: 11px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-body{

 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-body > .reply-content{
   margin-top: 18px;
   padding-bottom: 4px;
	 font-size: 11px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-body > .reply-content > a{
 	color: #4ea3c9;
 	cursor: pointer;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-body > .reply-edit-field{
   display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
   align-items: center;
   -webkit-align-items: center;
   -o-align-items: center;
   -moz-align-items: center;
   width: 100%;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-body > .reply-edit-field > i{
   outline: none;
   margin-left: 5px;
   margin-right: 5px;
   cursor: pointer;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-body > .reply-edit-field > textarea{
 	resize: none;
 	overflow-y: hidden;
 	flex: 3;
 	display: block;
 	outline: none;
 	height: 35px;
 	margin-top: 12px;
 	margin-bottom: 5px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-body > .reply-media{
 	width:100px;
 	margin-bottom: 5px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-actions{
   display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
 	width: 100%;
 	justify-content: flex-start;
	-webkit-justify-content: flex-start;
	-o-justify-content: flex-start;
	-moz-justify-content: flex-start;
 	align-content: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
 	line-height: 15px;
 	margin-bottom: 5px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-actions > .reply-content-action{
 	height: 100%;
 	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
 	align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
 	cursor: pointer;
 	color: #4ea3c9;
 	outline: none;
 	font-size: 14px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-actions > .reply-content-action:hover{
   transform: scale(0.8);
   -webkit-transform: scale(0.8);
   -moz-transform: scale(0.8);
   -o-transform: scale(0.8);
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-actions > .reply-content-action > i{
 	font-size: 14px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply > .reply-content > .reply-content-actions > .reply-content-action > .action-label{
 	height: 100%;
 	color: lightslategray;
 	margin-left: 4px;
 	font-size: 10px;
 	margin-right: 7px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply:last-child{
   border-bottom: none;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment > .comment-content > .comment-content-replies > .comment-content-reply:first-child{
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment:last-child{
   border-bottom: none;
 }

 [photo-slider] > [photos] > [photo-info] > .post-comments > .post-comment:first-child{
   border-top: 1px solid #eee;
 }

 [photo-slider] > [photos] > [photo-info] > .post-footer{
   border-top: 1px #eee solid;
   display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
   background: #f8f8f8;
   align-items: center;
   -webkit-align-items: center;
   -o-align-items: center;
   -moz-align-items: center;
	 width:100%;
 }

 [photo-slider] > [photos] > [photo-info] > .post-footer > .post-avatar{
   height: 30px;
   width: 30px;
   border-radius: 100px;
   margin: 10px;
   outline: none;
 }

 [photo-slider] > [photos] > [photo-info] > .post-footer > .comment-placeholder{
 	margin: 0;
 	font-size: 12px;
 	outline: none;
 	line-height: 36px;
 	border: 0.3px solid #ccc;
 	width: 75.5%;
 	color: #ddd;
 	padding-left: 10px;
 	background: #fff;
 }

 [photo-slider] > [photos] > [photo-info] > .post-footer > .comment-field{
   width: 100%;
 }

 [photo-slider] > [photos] > [photo-info] > .post-footer > .comment-field > .comment-image{
   width: 100px;
 	height:100px;
 	margin-left: 56px;
 	margin-top: 10px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-footer > .comment-field > .comment-image > img{
   width: 100%;
 		height:100%;
 }

 [photo-slider] > [photos] > [photo-info] > .post-footer > .comment-field > .comment-image > i{
 	width: 100px;
 	height: 26px;
 	position: absolute;
 /* top: 0; */
 	margin-top: -25px;
 	background: #222;
 	color: #fff;
 	font-size: 16px;
 	line-height: 26px;
 	text-align: center;
 	opacity: 0.8;
 	display: none;
 	cursor: pointer;
 }

 [photo-slider] > [photos] > [photo-info] > .post-footer > .comment-field > .comment-image:hover > i{
   display: block;
 }

 [photo-slider] > [photos] > [photo-info] > .post-footer > .comment-field > .comment-image > .spinner{
 	height: 28px;
 	width: 28px;
 	animation: rotate 0.8s infinite linear;
 	-webkit-animation: rotate 0.8s infinite linear;
 	border: 2px solid #fff;
 	border-right-color: transparent;
 	border-radius: 50%;
 	left: 0;
 	margin-top: -65px;
 	margin-left: 35px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-footer > .comment-field > .comment-field-input{
   display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
   align-items: center;
   -webkit-align-items: center;
   -o-align-items: center;
   -moz-align-items: center;
   width: 100%;
 }

 [photo-slider] > [photos] > [photo-info] > .post-footer > .comment-field > .comment-field-input > .post-avatar{
   width: 30px;
 	height: 30px;
 	border-radius: 100px;
 	margin: 10px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-footer > .comment-field > .comment-field-input > .comment-field-text{
   resize: none;
   overflow-y: hidden;
   flex: 3;
   display: block;
   outline: none;
   height: 36px;
 }

 [photo-slider] > [photos] > [photo-info] > .post-footer > .comment-field > .comment-field-input > i{
   outline: none;
   margin-left: 5px;
   margin-right: 5px;
   cursor: pointer;
 	color: #ccc;
 }

 [photo-slider] > [dots]{
	 height: 1.5cm;
	 background: #222;
	 position: absolute;
	 z-index: 100;
	 bottom: 0;
	 left: 0;
	 width: 100%;
	 opacity: 0.8;
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 overflow-x: auto;
 }

 [photo-slider] > [dots] > [dot]{
	 flex: 1;
	 margin: 4px;
 }

 [photo-slider] > [dots] > [dot].active{
	 border: 5px solid #4EA3C9;
   background: #fff;
   margin: 0;
 }

 [photo-slider] > [dots] > [dot] > img{
	 height: 100%;
	 width: 100%;
 }

 .about{
	 width: 100%;
	 padding: 0;
 }

 [tabs]{
	 display: flex;
	 display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 flex-direction: column;
 }

 [tabs] > [labels]{
	 display: flex;
	 display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 width: 100%;
 }

 [tabs] > [labels] > [label]{
	 flex: 1;
	 background: #374353;
	 color: #fff;
	 line-height: 50px;
	 text-align: center;
	 font-size: larger;
	 height: 50px;
	 border-right: 0.5px solid #bec4d1;
 }

 [tabs] > [labels] > [label]:last-child{
	 border-right: none;
 }

 [tabs] > [labels] > [label]:hover{
	 background: #4ea3c9;
	 color: #fff;
 }

 [tabs] > [labels] > [label].active{
	 background: #fff;
	 color: #374353;
 }

 [tabs] [views]{
	 background: #fff;
	 padding: 0.5em;
	 display: flex;
	 display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
 }

 [tabs] > [views] > [view]{
	 width: 100%;
 }

 [horiTabs]{
	 display: flex;
	 display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 margin: -0.5em;
 }

 [horiTabs] > [labels]{
	 display: flex;
	 display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 flex-direction: column;
	 width: 25%;
 }

 [horiTabs] > [labels] > [label]{
	 background: #fff;
	 color: #374353;
	 border-left: 5px solid #fff;
	 line-height: 40px;
	 font-size: 13px;;
	 padding-left: 0.8em;
	 padding-right: 0.5em;
 }

 [horiTabs] > [labels] > [label]:hover{
	 border-left: 5px solid #4ea3c9;
 }

 [horiTabs] > [labels] > [label].active{
   border-left: 5px solid #374353;
	 font-weight: bold;
 }

 [horiTabs] [views]{
   background: #fff;
   padding: 0.5em;
   display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 flex:2;
	 padding-bottom: 1cm;
 }

 [horiTabs] > [views] > [view]{
   width: 100%;
 }

 .about-overview{
	 display: flex;
	display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
 }

 .about-overview > .main-content{
	 display: flex;
	 display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 flex-direction: column;
	 flex: 2;
	 padding: 0px 30px 20px 30px;
 }

 .about-overview > .main-content > .details{
	 display: flex;
    display: -webkit-flex;
	  display: -moz-flex;
	  display: -o-flex;
    flex-direction: column;
    /* margin-left: 10%; */
    /* margin-right: 3%; */
    padding-bottom: 10px;
    margin-top: 10px;
    border-bottom: 0.3px solid #eee;
 }

 .about-overview > .main-content > .details > .title{
	 color: #374353;
	 line-height: 20pt;
	 font-size: 18px;
	 margin-bottom: 5px;
 }

 .about-overview > .main-content > .details > .content{
	 font-size: 10px;
 }

 .about-overview > .side-content{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 flex-direction: column;
 }

 .about-overview > .side-content > [contacts]{
	 display: flex;
	 display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 flex-direction: column;
	 padding: 0 40px 0 0;
 }

 .about-overview > .side-content > [contacts] > [contact]{
	 display: flex;
	 display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 margin: 5px 0px 5px 0px;
 }

 .about-overview > .side-content > [contacts] > [contact] > img{
	 height: 18px;
	 margin: 1px 10px 0 0;
 }

 .about-overview > .side-content > [contacts] > [contact] > span{
	 font-size: 11px;
 }

 .about-overview > .side-content > [socials]{
	 display: flex;
	 display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 width: 200px;
	 flex-wrap: wrap;
 }

 .about-overview > .side-content > [socials] > [social]{
	 height: 20px;
	 width: 20px;
	 margin: 5px 5px 0 0;
 }

 .about-overview > .side-content > [socials] > [social] > img{
	 width: 100%;
	 height: 100%;
 }

 .about-contact{
	 padding-left: 0px 30px 20px 30px;
 }

 .about-contact > h1{
	 margin: 0;
    font-size: 18px;
    color: #999;
    margin-bottom: 20px;
    margin-top: 20px;
 }

 [field]{
	 display: flex;
	 display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 align-items: center;
   -webkit-align-items: center;
   -o-align-items: center;
   -moz-align-items: center;
	 font-size: 9pt;
	 border-bottom: 0.3px solid #eee;
	 padding-bottom: 0.8em;
	 padding-top: 0.5em;
 }

 [field].social{
	 display: flex;
	 display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 align-items: flex-start;
	 -webkit-align-items: flex-start;
   -o-align-items: flex-start;
   -moz-align-items: flex-start;
	 font-size: 9pt;
	 border-bottom: 0.3px solid #eee;
	 padding-bottom: 0.8em;
	 padding-top: 0.5em;
 }

 [field] > [title]{
	 font-weight: bold;
	 font-size: 11px;
 }

 [field] > [content]{
	 flex: 2;
	 padding-left: 0.8em;
	 padding-right: 0.8em;
	 display: flex;
	 display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 flex-direction: column;
 }

 [field] > [content] > [value]{
	 font-size: 11px;
 }

 [field] > [content] > [value-edit]{
	 display: flex;
	 display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 margin-bottom: 4px;
 }

 [field] > [content] > [value-edit] > input{
	 line-height: 11px;
 }

 [field] > [content] > [value-edit] > [input]{
	 line-height: 15px;
	 display: flex;
	 display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 align-items: center;
   -webkit-align-items: center;
   -o-align-items: center;
   -moz-align-items: center;
 }

 [field] > [content] > [value-edit] > [input] > span{
	 background: #ddd;
	 display: block;
	 height: 100%;
	 padding: 0.2em;
 }

 [field] > [content] > [value-edit] > [input] > select{
	 /* background: #ddd; */
	 display: block;
	 height: 100%;
	 padding: 0.2em;
	 margin: 0;
	 margin-left: 20px;
	 border: none;
	 border: 1px solid #ccc;
 }

 [field] > [content] > [value-edit] > [input] > input{
	 border: none;
	 padding-left: 0.5em;
	 height: 100%;
	 border: 0.3px solid #ccc;
 }

 [field] > [content] > [value-edit] > button{
	 border: none;
	 margin-left: 10px;
	 color: #fff;
	 background: #4ea3c9;
 }

 [field] > [action]{
	 font-size: small;
	 margin-right: 20px;
 }

 .about-work{
	 padding-left: 0 30px 20px 30px;
 }

 .about-work > h1{
	 margin: 0;
	 font-size: 18px;
	 color: #999;
	 margin-bottom: 20px;
	 margin-top: 20px;
 }

 .about-work > [detail]{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 flex-direction: column;
	 border-bottom: 0.3px solid #ddd;
	 margin-top: 10px;
 }

 .about-work > [detail] > [header]{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 align-items: center;
   -webkit-align-items: center;
   -o-align-items: center;
   -moz-align-items: center;
 }

 .about-work > [detail] > [header] > [title]{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 flex-direction: column;
	 flex: 1;
 }

 .about-work > [detail] > [header] > [title] > h1{
	 margin: 0;
	 font-size: 18px;
 }

 .about-work > [detail] > [header] > [title] > span{
	 font-size: 10px;
 }

 .about-work > [detail] > [header] > [action]{
	 font-size: small;
 }

 .about-work > [detail] [body]{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
 }

 .about-work > [detail] [body] > [form]{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 flex-direction: column;
	 width: 90%;
 }

 .about-work > [detail] [body] > [form] > [input]{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
    align-items: center;
	  -webkit-align-items: center;
	  -o-align-items: center;
	  -moz-align-items: center;
    /* border: 0.3px solid #eee; */
    margin: 4px;
 }

 .about-work > [detail] [body] > [form] > [input] > span{
	 display: block;
    height: 100%;
    padding: 0px 10px 0px 0px;
    /* border-right: 0.3px solid #eee; */
    color: #666;
    font-size: 10px;
    /* flex: 1; */
    width: 25%;
 }

 .about-work > [detail] [body] > [form] > [input] > input{
	 border: none;
	 padding: 0.2em;
	 flex: 1;
	 font-size: 10px;
	 padding-left: 0.4em;
	 border: 1px solid #ccc;
 }

 .about-work > [detail] [body] > [form] > [input] > select{
	 font-size: 10px;
	 margin: 0;
	 flex: 1;
 }

 .about-work > [detail] [body] > [form] > [input] > button{
	 border: none;
	 display: block;
	 height: 100%;
	 background: #4ea3c9;
	 color: #fff;
	 padding: 0.22em;
	 font-size: 12px;
	 margin-left: 10px;
 }

 .about-work > [detail] [body] > [action]{
	 flex: 1;
	 text-align: right;
	 color: #888;
	 font-size: 13px;
	 margin-right: 5px;
 }

 [create]{
	 margin-bottom: 20px;
 }

 .about-work > [create] > [detail]{
   display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
   flex-direction: column;
   border-bottom: 0.3px solid #ddd;
   margin-top: 10px;
 }

 .about-work > [create] > [detail] > [header]{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 align-items: center;
   -webkit-align-items: center;
   -o-align-items: center;
   -moz-align-items: center;
	 /* padding: 0.4em; */
 }

 .about-work > [create] > [detail] > [header] > [title]{
   display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
   flex-direction: column;
   flex: 1;
 }

 .about-work > [create] > [detail] > [header] > [title] > h1{
   margin: 0px 0px 5px 0px;
   font-size: 18px;
 }

 .about-work > [create] > [detail] > [header] > [title] > span{
   font-size: 10px;
 }

 .about-work > [create] > [detail] > [header] > [action]{
	 font-size: 14px;
	 margin-right: 5px;
 }

 .about-work > [create] > [detail] [body]{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 /* padding: 0.4em; */
	 align-items: center;
   -webkit-align-items: center;
   -o-align-items: center;
   -moz-align-items: center;
	 margin-left: 10px;
 }

 .about-work > [create] > [detail] [body] > [form]{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 flex-direction: column;
	 flex: 1;
 }

 .about-work > [create] > [detail] [body] > [form] > [input]{
	 display: flex;
   display: -webkit-flex;
   display: -moz-flex;
   display: -o-flex;
	 align-items: center;
   -webkit-align-items: center;
   -o-align-items: center;
   -moz-align-items: center;
	 /* border: 0.3px solid #eee; */
	 margin: 0px 0px 5px 0px;
	 margin-right: 5px;
 }

 .about-work > [create] > [detail] [body] > [form] > [input] > span{
	 display: block;
    height: 100%;
    /* padding: 0.4em; */
    /* border-right: 0.3px solid #eee; */
    color: #666;
    font-size: 11px;
    width: 25%;
 }

 .about-work > [create] > [detail] [body] > [form] > [input] > input{
	 border: none;
	 flex: 1;
	 font-size: 8pt;
	 border: 1px solid #ccc;
 }

 .about-work > [create] > [detail] [body] > [form] > [input] > select{
	 /*border: none; */
    flex: 1;
    font-size: 10px;
    /* background: #fff; */
    margin: 0;
    padding: 0;
 }

 .about-work > [create] > [detail] [body] > [form] > [input] > button{
   border: none;
   display: block;
   height: 100%;
   background: #4ea3c9;
   color: #fff;
   padding: 0.4em;
 }

 .about-work > [create] > [detail] [body] > [action]{
   flex: 1;
   text-align: center;
   color: #888;
   font-size: 35pt;
	 display: none;
 }

 [create] > button{
	 margin-top: 10px;
	 border: none;
	 line-height: 20pt;
	 background: #4ea3c9;
	 color: #fff;
 }

 [create].active > button {
    margin-top: 10px;
    border: none;
    line-height: 20pt;
    background: #4ea3c9;
    color: #fff;
 }

 [todo]{
	 width: 100%;
	 height: 100%;
	 background: white;
 }

 [todo] > h1{
	 margin: 0;
	 padding: 20px;
 }

 [todo] > button{
	 margin: 20px;
	 line-height: 50px;
	 background: #4ea3c9;
	 color: #fff;
	 border: none;
	 padding-right: 20px;
	 padding-left: 20px;
 }

 [todo] > ul{

 }

 [todo] > ul > li{

 }

 [todo] > ul > li.done{
	 text-decoration: line-through;
 }

 [todo] > ul > li > a{
	 font-size: 10px;
	 cursor: pointer;
 }

 .reply-content-time > .action-label {
    height: 100%;
    color: lightslategray;
    margin-left: 4px;
    font-size: 10px;
    margin-right: 7px;
	}

	.photo-video{
		display: flex;
	  display: -webkit-flex;
	  display: -moz-flex;
	  display: -o-flex;
		flex-direction: column;
	}

	.photo-video > [controls]{
		display: flex;
	  display: -webkit-flex;
	  display: -moz-flex;
	  display: -o-flex;
    align-items: center;
	  -webkit-align-items: center;
	  -o-align-items: center;
	  -moz-align-items: center;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
		-o-justify-content: flex-end;
		-moz-justify-content: flex-end;
	}

	.photo-video > [controls] > h1{
		flex:3;
		font-size: 30px;
		margin: 0px 20px;
		font-family: inherit;
		font-weight: normal;
		line-height: 1.1;
		color: #384353;
	}

	.photo-video > [controls] > div{
		display: flex;
	  display: -webkit-flex;
	  display: -moz-flex;
	  display: -o-flex;
    align-items: center;
	  -webkit-align-items: center;
	  -o-align-items: center;
	  -moz-align-items: center;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
		-o-justify-content: flex-end;
		-moz-justify-content: flex-end;
		margin-left: 6px;
		margin-right: 15px;
		cursor: pointer;
	}

	.photo-video > [controls] > div > i{
		font-size: 13px;
		font-weight: bold;
		line-height: 36px;
		margin: 2px;
	}

	.photo-video > [controls] > div:hover{
		color: #4ea3c9;
	}

	.photo-video > [controls] > div > span{
		font-size: 13px;
		line-height: 16px;
	}

	.photo-video > [items]{
		display: flex;
	  display: -webkit-flex;
	  display: -moz-flex;
	  display: -o-flex;
		flex-wrap: wrap;
		width: 100%;
	}

	.photo-video > [items] > [item]{
		display: flex;
	  display: -webkit-flex;
	  display: -moz-flex;
	  display: -o-flex;
		width: 25%;
		flex-direction: column;
		border: 0.1px solid #fff;
	}

	.photo-video > [items] > [item]:hover{
		transform: scale(1.105);
		-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	}

	.photo-video > [items] > [item] > img{
		width: 100%;
		object-fit: cover;
		-o-object-fit: cover;
	}

	.photo-video > [items] > [item] > .actions{
		position: absolute;
    bottom: -5px;
		background: #222;
		display: flex;
	  display: -webkit-flex;
	  display: -moz-flex;
	  display: -o-flex;
    width: 100%;
    height: 25px;
		z-index: 1001;
		right: 0px;
    background-color: rgba(0,0,0,0.70);
    opacity: 0!important;
	}

	.photo-video > [items] > [item]:hover > .actions{
		padding: 0;
    opacity: 1!important;
		bottom: 0!important;
	}

	.photo-video > [items] > [item] > .actions > .action{
    display: flex;
	  display: -webkit-flex;
	  display: -moz-flex;
	  display: -o-flex;
    align-items: baseline;
    -webkit-align-items: baseline;
	  -o-align-items: baseline;
	  -moz-align-items: baseline;
    cursor: pointer;
    color: #fff;
    outline: none;
		margin: 0;
		margin-left: 5px;
		line-height: 25px;
	}

	.photo-video > [items] > [item] > .actions > .action > i{
		font-size: 0.63em;
		color: #4ea3c9;
		margin-right: 2px;
	}

	.photo-video > [items] > [item] > .actions > .action > span{
		height: 100%;
		color: #fff;
		font-size: 0.63em;
	}

	.sport{
		width: 100%;
    display: flex;
	  display: -webkit-flex;
	  display: -moz-flex;
	  display: -o-flex;
		align-items: center;
	  -webkit-align-items: center;
	  -o-align-items: center;
	  -moz-align-items: center;
		margin-bottom: 30px;
	}

	.sport > img{
		width: 50px;
		height: 50px;
		border-radius: 100px;
		padding: 5px;
		margin-left: 20px;
		margin-right: 20px;
	}

	.sport > img:hover{
		background: #374353;
	}

	.sport > p{
		margin: 0px;
		flex: 2;
		color: #ccc !important;
		text-align: center;
	}

	.sport > i{
		flex: 1;
    font-size: 15px;
		cursor: pointer;
	}

	.teams{
		display: block;
    width: 100%;
	}

	.team{
		display: flex;
	  display: -webkit-flex;
	  display: -moz-flex;
	  display: -o-flex;
		align-items: center;
	  -webkit-align-items: center;
	  -o-align-items: center;
	  -moz-align-items: center;
    width: 100%;
		padding: 10px 20px;
	}

	.team > .name{
		width: 25%;
	}

	.team > .logo{
		display: flex;
	  display: -webkit-flex;
	  display: -moz-flex;
	  display: -o-flex;
		align-items: center;
	  -webkit-align-items: center;
	  -o-align-items: center;
	  -moz-align-items: center;
    flex-direction: column;
    height: 100%;
	}

	.team > .logo > img{
		width: 40px;
		height: 40px;
	}

	.team > .logo > p{
		margin: 0;
	}

	.team > .logo > i{
		font-size: 12px;
	}

	[sport-logo]{
		width: 60px;
    height: 60px;
    margin: 10px 20px 10px 20px;
	}

	[sport-logo] > img{
		margin: 10%;
		width: 80%;
		height: 80%;
	}

	[sport-logo]:hover{
		background: #374353;
		border-radius: 100px;
	}

	.tagView{
		display: flex;
	  display: -webkit-flex;
	  display: -moz-flex;
	  display: -o-flex;
		align-items: center;
	  -webkit-align-items: center;
	  -o-align-items: center;
	  -moz-align-items: center;
    margin: -16px 5px 10px 4px;
		flex-wrap: wrap;
		width: 100%;
	}

	.tagView > .tagWithLabel{
		line-height: 36px;
    padding: 0.2em;
    background: #4ea3c9;
    color: #fff;
    font-size: 12px;
    width: 8%;
    text-align: center;
    margin-left: 20px;
	}

	.tagView > .tagInput{
		display: block;
	}

	.tagView > .tagInput > .tagTextBox{
		display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    flex-wrap: wrap;
	}

	.tagView > .tagInput > .tagTextBox > .tagChips{
		display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
		flex-wrap: wrap;
	}

	.tagView > .tagInput > .tagTextBox > .tagChips > .tagChip{
		display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    -moz-align-items: center;
    border-radius: 25px;
    background: aliceblue;
    padding: 0.1em;
    margin: 2px;
	}

	.tagView > .tagInput > .tagTextBox > .tagChips > .tagChip > img{
		height: 20px;
		margin: 3px;
		border-radius: 100px;
	}

	.tagView > .tagInput > .tagTextBox > .tagChips > .tagChip > span:first-child{

	}

	.tagView > .tagInput > .tagTextBox > .tagChips > .tagChip > span:last-child{
		height: 20px;
    width: 20px;
    font-size: 10pt;
    line-height: 15pt;
    background: #eee;
    text-align: center;
    border-radius: 100px;
    margin: 4px;
		cursor: pointer;
	}

	.tagView > .tagInput > .tagTextBox > input{
		margin-left: 10px;
    border: none;
	}

	.tagView > .tagInput > .tagData{
		display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    flex-direction: column;
    background: #eee;
    box-shadow: 0 5px 5px rgba(0,0,0,0.2);
    position: absolute;
    z-index: 1000;
	}

	.tagView > .tagInput > .tagData > .dataItem{
		display: flex;
		display: -webkit-flex;
		display: -moz-flex;
		display: -o-flex;
		align-items: center;
		-webkit-align-items: center;
		-o-align-items: center;
		-moz-align-items: center;
		padding: 0.3em;
		cursor: pointer;
	}

	.tagView > .tagInput > .tagData > .dataItem > img{
		height: 30px;
		border-radius: 100px;
		margin: 4px;
	}

	.tagView > .tagInput > .tagData > .dataItem > span{
		font-size: 11pt;
		margin: 0px 4px 0px 0px;
	}

.play-offs{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	align-items: center;
	-webkit-align-items: center;
	-o-align-items: center;
	-moz-align-items: center;
	min-height: 800px;
	margin: 20px 0px;
	background: #f3f6fb;
	padding: 20px;
}

.play-off{
	flex: 1;
  height: 800px;
  margin: 0px 10px 0px 0px;
	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -o-justify-content: center;
  -moz-justify-content: center;
	flex-direction: column;
}

.play-off:last-child{
	flex: 1;
  height: 800px;
  margin: 0px 0px 0px 0px;
}

.play-head{

}

.play-off > .match-for{
	height: 65px;
  width: 100%;
  background: #333;
  margin: 20px 0px;
	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
	flex-direction: column;
	border-left: 2px solid;
	z-index: 1;
}

.play-off > .match-for::after{
	content: "";
	display: block;
	width: 150px;
	height: 50px;
	background: #fff;
	position: absolute;
	border-radius: 0px 0px 100px 0px;
	opacity: 0.2;
}

.play-off > .match-for.round:nth-child(even)::before{
	content: "";
  display: block;
  width: 50px;
  margin-top: 28px;
  margin-left: 200px;
  height: 20px;
  position: absolute;
  border-right: 1px solid;
  border-top: 1px solid;
  z-index: 0;
}

.play-off > .match-for.round:nth-child(odd)::before{
	content: "";
  display: block;
  width: 50px;
  margin-top: 10px;
  margin-left: 200px;
  height: 20px;
  position: absolute;
  border-right: 1px solid;
  border-bottom: 1px solid;
  z-index: 0;
}

.play-off > .match-for.q{
	margin: 65px 0px;
}

.play-off > .match-for.q:nth-child(even)::before{
	content: "";
  display: block;
  width: 50px;
  margin-top: 32px;
  margin-left: 200px;
  height: 75px;
  position: absolute;
  border-right: 1px solid;
  border-top: 1px solid;
  z-index: 0;
}

.play-off > .match-for.q:nth-child(odd)::before{
	content: "";
  display: block;
  width: 50px;
  margin-top: -42px;
  margin-left: 200px;
  height: 75px;
  position: absolute;
  border-right: 1px solid;
  border-bottom: 1px solid;
  z-index: 0;
}

.play-off > .match-for.s{
	margin: 160px 0px;
}

.play-off > .match-for.s:nth-child(even)::before{
	content: "";
  display: block;
  width: 50px;
  margin-top: 32px;
  margin-left: 200px;
  height: 165px;
  position: absolute;
  border-right: 1px solid;
  border-top: 1px solid;
  z-index: 0;
}

.play-off > .match-for.s:nth-child(odd)::before{
	content: "";
  display: block;
  width: 50px;
  margin-top: -132px;
  margin-left: 200px;
  height: 165px;
  position: absolute;
  border-right: 1px solid;
  border-bottom: 1px solid;
  z-index: 0;
}

.play-off > .match-for.f{

}

.play-off > .match-for.no-round::before{
	margin-left: 265px!important;
}

.third-place{
	position: absolute;
	width: 200px;
	margin: 340px 0px 0px 630px!important;
	height: auto!important;
}

.team-match{
	flex: auto;
	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
	border-bottom: 0.3px solid;
}

.team-match:last-child{
	border-bottom: none;
}

.team-match > span:first-child{
	flex:1;
	padding: 0px 0px 0px 10px;
}

.team-match > span:last-child{
	padding: 0px 10px;
	border-left: 0.3px solid;
}

.filter-view{
	display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -moz-align-items: center;
	height: 40px;
	margin-bottom: 10px;
}

.filter-view > .radio-filters{
	display: flex;
	flex:1;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	align-items: center;
	-webkit-align-items: center;
	-o-align-items: center;
	-moz-align-items: center;
	height: 30px;
	line-height: 30px;
	margin: 5px;
}

.radio-filters > span{
	flex: 1;
  text-align: center;
  background: #eee;
	cursor: pointer;
}

.radio-filters > span:last-child{
	border-radius: 0px 5px 5px 0px;
}

.radio-filters > span:first-child{
	border-radius: 5px 0px 0px 5px;
}

.radio-filters > span.active,.radio-filters > span:hover{
	background: #374353;
	color: #fff;
}

.moment-picker{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	flex-direction: column;
	width: 450px;
}

.moment-picker > .headers{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
}

.moment-picker > .headers > div{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	align-items: center;
	-webkit-align-items: center;
	-o-align-items: center;
	-moz-align-items: center;
	justify-content: center;
	-moz-justify-content: center;
	-o-justify-content: center;
	-webkit-justify-content: center;
	flex-direction: column;
	flex: 1;
	padding: 15px 0px;
	color: #fff;
	background: #374353;
	cursor: pointer;
}

.moment-picker > .headers > div:hover{
	background-color: #4ea3c9;
  color: #FFFFFF;
}

.moment-picker > .headers > div.active{
	color: #374353;
	background: #fff;
}

.moment-picker > .headers > div > img{
	width: 30px;
	height: 30px;
	margin: 0 auto;
}

.moment-picker > .headers > div > span{
	font-size: 14px!important;
	line-height: 16px!important;
}

.moment-picker > .bodies{
  min-height: 150px;
  max-height: 750px;
	overflow-y: auto;
	padding: 20px;
}

.moment-picker > .bodies > .body{

}

.moment-picker > .bodies > .body.list{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	flex-direction: column;
	flex-wrap: wrap;
	height: 150px;
}

.bodies button{
	margin: 20px 0px;
	line-height: 35px;
	width: 100%;
	border: none;
	color: #fff;
	background: #4EA3C9;
}

.bodies button:hover{
	background: #394453;
}

.body-item{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	align-items: center;
	-webkit-align-items: center;
	-o-align-items: center;
	-moz-align-items: center;
	height: 50px;
	cursor: pointer;
}

.body-item img{
	width: 36px;
	height: 36px;
	margin: 0 15px 0 0;
}

.body-item:hover img{
	width: 42px;
	height: 42px;
}

.body-item:hover span{
	color: #29f;
}

.body-item span{
}

.body-item.active img{
	width: 42px;
	height: 42px;
}

.body-item.active span{
	color: #29f;
}

.labels-for{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	align-items: center;
	-webkit-align-items: center;
	-o-align-items: center;
	-moz-align-items: center;
	border-top: 0.2px dotted #eee;
	border-bottom: 0.2px dotted #eee;
}

.labels-for span{
	display: block;
	flex: 1;
	background-color: #FFF!important;
  color: #384353!important;
  font-size: 16px!important;
  height: 40px!important;
  line-height: 40px!important;
	text-align: center;
	cursor: pointer;
}

.labels-for span.active{
	background-color: #eee!important;
}

.player-lists{
	max-height: 400px;
	overflow-y: auto;
}

.players-for{
	display: none
}

.players-for.active{
	display: block;
}

.this-player{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	align-items: center;
	-webkit-align-items: center;
	-o-align-items: center;
	-moz-align-items: center;
	border-bottom: 0.2px dotted #eee;
	cursor: pointer;
}

.this-player img{
	height: 36px;
	width: 36px;
	border-radius: 100px;
	margin: 10px;
}

.this-player span{

}

.this-player.active img{
	border: 0.2px solid #4EA3C9;
}

.this-player.active span{
	color: #4EA3C9;
}

.search-box{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	align-items: center;
	-webkit-align-items: center;
	-o-align-items: center;
	-moz-align-items: center;
}

.search-box img{
	width: 30px;
	height: 30px;
	margin: 10px 20px;
	opacity: 0.5
}

.search-box img:hover{
	opacity: 1
}

.search-box input{
	flex: 1;
}

@keyframes rotate {
  0%    { transform: rotate(0deg); }
  100%  { transform: rotate(360deg); }
}

@-webkit-keyframes rotate {
  0%    { transform: rotate(0deg); }
  100%  { transform: rotate(360deg); }
}

.warning{
   border:1px solid red;
 }

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

 @font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(.././lib/md-if/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(.././lib/md-if//MaterialIcons-Regular.woff2) format('woff2'),
    url(.././lib/md-if//MaterialIcons-Regular.woff) format('woff'),
    url(.././lib/md-if//MaterialIcons-Regular.ttf) format('truetype');
}
