.memory-content{
	/*margin-left: 0 15px 0 32px;*/
	margin: 0 15px;
	-webkit-transition: opacity 700ms ease;
	transition: opacity 700ms ease;
	/*max-width: 570px;*/
}

.memory-content div, .memory-content span{
	font-weight: 100;
	color: #444;
	font-size: 15px;
}

.memory-content .nopadding {
   padding: 0 !important;
}

.memory-content .nomargin{
	margin: 0 !important;
}

.memory-content .text-right {
  text-align: right;
}

.memory-content .hidden-panel{
	opacity: 0;
	-webkit-transition: opacity 700ms ease;
	transition: opacity 700ms ease;
	display:none; /* Added by Ciaran */
	margin-top: -300px; /* Added by Ciaran */
}

.memory-content .show-element{
	opacity: 1;
	display:block; /* Added by Ciaran */
}

.memory-content .hide-element{
	opacity: 0;
}

.memory-content .container{
	background-color: #ecf0f1;
	width: 100%;
}

.memory-content .pointer{
	cursor: pointer;
}

.memory-content .card{
	border: 1px #95A5A6 solid;  
	border-radius: 2px;
	background-color: #fff; 
}

.memory-content .image{
	/*margin: 15px;*/
	/*width: 270px;*/
	/*height: 225px;*/
	padding: 15px;
	-webkit-transition: opacity 0.5s ease-in 0s;
	transition: opacity 0.5s ease-in 0s;
}


.memory-content .option{
	width: 100%;
	display: table;
	text-align: center;
	border-bottom: 1px solid #C9C9C9;
	cursor: pointer;
	-webkit-transition: background-color 0.3s ease-in 0s;
	transition: background-color 0.2s ease-in 0s;
}

.memory-content .option:last-child{
	border-bottom: none;
}

.memory-content .word{
	width: 100%;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	border-bottom: 1px solid #95A5A6;
	cursor: pointer;
	-webkit-transition: background-color 0.4s ease-in 0s;
	transition: background-color 0.4s ease-in 0s;
}

.memory-content .word:last-child{
	border-bottom: none;
}

.memory-content .word-landscape{
	/* border-left: 1px solid #95A5A6; */
	position: absolute !important;
}

.memory-content .word-vertical{
	position: relative;
}

.memory-content .word-vertical:first-child{
	border-top: 1px solid #95A5A6;
}

.memory-content .option{
	display: table;
}

.memory-content .result-icon{
	position: absolute; 
	right: 5px; 
	bottom: 15px; 
	margin: 5px;	
}

.memory-content svg{
  /*width: 40px;*/
  display: block;
}

.memory-content .check{
	width: 40px;
	height: 40px;
	background-repeat: no-repeat;
	-webkit-transition: opacity 700ms ease;
	transition: opacity 700ms ease;
}

.memory-content .wrong{
	background-image: url("images/Memory/wrong.png");
}

.memory-content .correct{
	background-image: url("images/Memory/correct.png");
}

.memory-content .path{
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
}

.memory-content .path.circle{
  -webkit-animation: dash 0.9s ease-in-out;
  animation: dash 0.9s ease-in-out;
}

.memory-content .path.line{
  stroke-dashoffset: 1000;
  -webkit-animation: dash 0.9s 0.35s ease-in-out forwards;
  animation: dash 0.9s 0.35s ease-in-out forwards;
}

.memory-content .path.check{
  stroke-dashoffset: -100;
  -webkit-animation: dash-check 0.9s 0.35s ease-in-out forwards;
  animation: dash-check 0.9s 0.35s ease-in-out forwards;
}

@-webkit-keyframes dash{
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes dash-check {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}
@keyframes dash-check {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}

.memory-content .indicators{
	padding: 0 20px;	
}

.memory-content .indicator{
	background-color: #CCC;
	display: inline-block;
	height: 10px;
	border-right: 1px solid #fff;
	padding: 0;
}

.memory-content .indicator-filled{
	background-color: #40abe3;
	margin-right: 0;
}

.memory-content .indicator:last-child{
	border-right: none;
}

.memory-content .finalize-container{
	/* min-height: 255px !important; */
	min-height: 450px !important;  /* Added by Ciaran */
	text-align: center;
}

.memory-content .specialcard-title{
	font-size: 32px;
	margin-top: 50px;
	top: -20px;
	color: #676767 !important;
	position: relative;
  	display: inline-block;
  	opacity: 0;
  	-webkit-transition: all 0.6s ease-in 0s;
	transition: all 0.6s ease-in 0s;
}

.memory-content .title-effect{
	top: 0px;
	opacity: 1;
}

.memory-content .button-startagain{
	background-color: #2e97d7;
}

.memory-content .button-startagain:hover{
	background-color: #50BDFF;
}

.memory-content .memory-button{
	width: 190px;
	height: 95px;
	color: #FFF !important;
	font-size: 20px;
	line-height: 23px;
	font-family: 'Open Sans', sans-serif;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in 0s;
	transition: all 0.3s ease-in 0s;
	border: none;
	margin-bottom: 15px;
}
.memory-content .img-center{
	align-self: center;
}