*{
	padding: 0px;
	margin: 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
	box-sizing: border-box;
}

body{
	background-color: rgb(249, 249, 249);
	color: #000;
	font-family: OpenSans,sans-serif, Arial, Helvetica;
	font-size: 14px;
	min-width: 350px;
	letter-spacing: 1px;
	animation: showWebsite 500ms ease-in-out;
    -webkit-animation: showWebsite 500ms ease-in-out;
    -moz-animation: showWebsite 500ms ease-in-out;
    -o-animation: showWebsite 500ms ease-in-out;
    overscroll-behavior-y: contain;
}

*::selection{
	background-color: #808080;
	color: #fff;
}

*::-moz-selection{
	background-color: #808080;
	color: #fff;
}

*::-webkit-selection{
	background-color: #808080;
	color: #fff;
}

::-webkit-scrollbar {
    width: 7px;
	height: 7px;
}

::-webkit-scrollbar-thumb {
    background-color: rgb(192,192,192);
}

::-webkit-scrollbar-thumb:window-inactive {
	background-color: rgb(192,192,192);
}

::-webkit-scrollbar-track-piece {
    background-color: #E4E4E4;
}

picture{
	animation: showWebsite 1s ease-in-out;
    -webkit-animation: showWebsite 1s ease-in-out;
    -moz-animation: showWebsite 1s ease-in-out;
    -o-animation: showWebsite 1s ease-in-out;
	width: 100%;
	height: auto;
	display: block;
	overflow: hidden;
	/* background-image: url(/content/image/upload/loading.gif); */
	/* background-position: center; */
	/* background-repeat: no-repeat; */
}

h1{
	font-size: 24px;
	padding: 10px 0px;
	color: #5d5d5d;
	text-transform: uppercase;
}

h2{
	font-size: 22px;
	padding: 10px 0px;
	color: #5d5d5d;
	text-align: center;
	text-transform: uppercase;
}

h3{
	font-size: 16px;
	color: #5d5d5d;
	text-transform: uppercase;
}

/*javascript drag and drop*/

[draggable] {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  /* Required to make elements draggable in old WebKit */
  -khtml-user-drag: element;
  -webkit-user-drag: element;
}

#columns {
  list-style-type: none;
}

.column {
  width: 162px;
  padding-bottom: 5px;
  padding-top: 5px;
  text-align: center;
  cursor: move;
}
.column header {
  height: 20px;
  width: 150px;
  color: black;
  background-color: #ccc;
  padding: 5px;
  border-bottom: 1px solid #ddd;
  border-radius: 10px;
  border: 2px solid #666666;
}

.column.dragElem {
  opacity: 0.4;
}
.column.over {
  //border: 2px dashed #000;
  border-top: 2px solid blue;
}

@media all and (min-width: 480px) and (orientation: portrait), (min-width: 480px) and (orientation: landscape){

}

@media all and (min-width: 760px) and (orientation: portrait), (min-width: 760px) and (orientation: landscape){

}

@media all and (min-width: 1366px) and (orientation: landscape), (min-width: 1366) and (orientation: portrait){

}