@charset "utf-8";

.error{
    color: red;
    -webkit-animation: enterTop .5s, opacityOn .7s;
    -moz-animation: enterTop .5s, opacityOn .7s;
    animation: enterTop .5s, opacityOn .7s;
}
@keyframes enterTop{
    from {
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    to {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #ccc;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #ccc;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #ccc;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #ccc;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color: #ccc;
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}
input:-webkit-autofill {
    -webkit-text-fill-color: #000;
}

input, textarea, select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #eee;
    margin: 5px 0 15px;
}
input:focus, textarea:focus, select:focus, .button:hover {
    -webkit-box-shadow: 0 0 10px 0 #f6f6f6 ;
    -mozt-box-shadow: 0 0 10px 0 #f6f6f6 ;
    box-shadow: 0 0 10px 0 #f6f6f6 ;
}
input.checkbox:focus{box-shadow: none}
.button{
    max-width: 250px;
    border-radius: 4px;
    color: #fff;
    background: #931646;
}
.button:hover {
    background: #da4d75;
    cursor: pointer
}
.formlogin{
    padding: 30px
}
.warning{
    padding: 6px;
    margin: 5px 0;
    border: 1px solid;
    display: inline-block
}

.register h3{
    color: #ddd;
    margin-bottom: 10px
}
p.label, p.label .error{
    font-family: 'Montserrat', sans-serif;
}
.register input, .register select{
    width: calc(100% - 30px);
    display: inline-block;
}
 a.tt{
    display: inline-block;
    width: 30px;
    height: 41px;
    margin: 5px 0 0 -5px;
    float: right;
}
a.tt:after{
    background-image: url(miimg/q.svg);
    background-size: 30px;
    width: 30px;
    height: 30px;
    top: 5px;
    position: absolute;
    content: "";
    opacity: .6
}
.register fieldset .col-75 a.tt{
    margin: 20px 0 0 -5px;
}
.register fieldset a.tt:hover:after{
    opacity: 1
}

.tooltip{
    background: #eee;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: .75em;
    position: absolute;
    right: 0;
    bottom: -5px;
    display: none;
}
fieldset.row .tooltip{
    right: 15px;
}
a.tt:hover + .tooltip{
    display: block;
    -webkit-animation:opacityOn .5s;
        -moz-animation: opacityOn .5s;
        animation: opacityOn .5s;
}
.tooltip:before{
    content: "";
    position: absolute;
    top: -4px;
    right: 7px;
    border-bottom: 8px solid #eee;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}

.register img{
    margin: 20px 0;
    max-height: 41px
}
.checkbox {
  position: relative;
  top: -0.275rem;
  cursor: pointer;
  width: 20px !important;
}
.checkbox:before {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
  position: absolute;
  left: 0;
  z-index: 1;
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 4px
}
.checkbox:checked:before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  height: .6rem;
  border: 4px solid #92ca00;
  border-top-style: none;
  border-right-style: none;
  border-radius: 0;
}

.checkbox:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.1rem;
  height: 1.1rem;
  background: #fff;
  cursor: pointer;
  border: 1px solid #fff;
}

.formticket{
    padding: 20px 30px;
}
.formticket h3{
    color: #ddd;
    margin-bottom: 10px;
}
.formticket p{
    font-family: 'Montserrat', sans-serif;
}
.inline{
    display:inline-block;
}