/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/
.vertical-text {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
        }

/* Card Sort */

.card-sort-question ul.subquestions-list {
  display: none;
  clear: both;
}
 
.card-sort-question .items-start {
  float: left;
	width: 40%;
	max-width: 30%;
	height: 40%;
	margin-top: 8px;
	border: 1px solid #666;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	-khtml-border-radius: 6px;
	border-radius: 6px;
}
 
.card-sort-question .items-start.target-hover {
  background:#C9C9C9;
}
 
.card-sort-question .items-end-wrapper {
  min-width: 60%;
}

.card-sort-question .items-end-inner {
  float: left;
  width: 40%;
  margin: 0px 1% 0 1%;
}
 
.card-sort-question .items-end {
  min-height: 210px;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border: 1px solid #666;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  border-radius: 6px;
  background: #EBEBEB;
}
 
.card-sort-question .items-end.target-hover {
  background: #C9C9C9;
}
 
.card-sort-question .items-end.ui-state-disabled {
    opacity: 1;
  filter:alpha(opacity=100);
}
 
.card-sort-question .items-end-text {
  padding-bottom: 5px;
  background: #FFFFFF;
  font-size: 110%;
  font-weight: bold;
}
 
.card-sort-question .card  {
  display: inline-block;
	width: 200px;
	height: auto;
	margin: 5px 8px;
	padding: 3px;
    border: 2px solid black;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	-khtml-border-radius: 8px;
	border-radius: 8px;
	background-color: #8BDA79;
	color: black;
	font-weight: bold;
	text-align: center;
	line-height: normal;
	cursor: move;
}
 
.card-sort-question .items-end .card  {
  margin: 5px 7px;
}
 
.card-sort-question  div.answer {
  clear: both;
  padding-top: 1px;
  margin-top: 0;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background-color: #B4EEB4;
    border-radius: 6px;
    outline: none;
    transition: 0.3s;
}
.button:hover {
    background-color: #c2c7c7;
}

