* {
    margin: 0;
}
html, body {
    height: 100%;
}
#container {
    min-height: 100%;
    /* equal to footer height */
    margin-bottom: -35px;
}
#container:after {
    content: "";
    display: block;
}
#footer, #container:after {
    height: 35px;
}
#footer {
    background: #CCC;
}
#duration-time{
    font-size: 65%;
}
.elements{
    background-color: white;
}
.element-inner{
    padding: 10px;
}
.element{
    float: left;
    padding: 0;
    margin: 10px;
}
.element_hover,.element:hover {
    background-color: #eeeeee!important;
}
.element .check_group{
    width: 100%;
    padding: 0;
    text-align: center;
    height: 32px;
}
.element .element-image{
    text-align: center;

}
.element-selected{
    background-color: #f6e5ee;
}

.put{
    border-radius: 10px;
    background-color:white;
    width:300px;
    height:300px;
    padding:10px;
    -webkit-box-shadow: 0px 0px 39px 12px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 39px 12px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 39px 12px rgba(0,0,0,0.75);
}

.sematic_question{
    padding: 20px 40px;
}

.semantic{
    margin: 0 5px;
}

.modalDialog {
    position: fixed;
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    opacity:1;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: auto;
    display: none;
}

.modalDialog:target {
    display: none;
    pointer-events: auto;
}

.modalDialog{
    text-align: left;
}

.modalButtonContainer{
    float: right;
}

.modalButton{
    width: auto;
    padding: 10px 30px;
    background-color: #a80055;
    border: none;
    color: white;
}

.modalButton:hover{
    background: #606061;
}

.modalDialog > div {
    width: 400px;
    position: relative;
    margin: 10% auto;
    padding: 5px 20px 13px 20px;
    border-radius: 10px;
    background: #CCC;
    background: -moz-linear-gradient(#ccc, #ddd);
    background: -webkit-linear-gradient(#ccc, #ddd);
    background: -o-linear-gradient(#ccc, #ddd);
}

.close {
    background: #a80055;
    color: #FFFFFF;
    line-height: 25px;
    position: absolute;
    right: -12px;
    text-align: center;
    top: -10px;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
}

.close:hover {
    background: #606061;
    text-decoration: none;
}
.alert-box {
    color:#555;
    border-radius:10px;
    font-family:Tahoma,Geneva,Arial,sans-serif;font-size:11px;
    padding:10px 36px;
    margin: 10px auto;
    width: 57%;
}
.alert-box span {
    font-weight:bold;
    text-transform:uppercase;
}
.warning {
    background:#fff8c4 url('../images/icons/warning.png') no-repeat 10px 50%;
    border:1px solid #f2c779;
}
p.error {
    background:#ffecec url('../images/icons/error.png') no-repeat 10px 50%;
    border:1px solid #f5aca6;
}