/* Empty. Add your own CSS if you like */

/*Animation for iOS/Android?*/
@-webkit-keyframes slideIn {
    0% {
        left: -100%;
    }
    100% {
        left: 0;
    }
}

@-webkit-keyframes slideInSmooth {
    0% {
        -webkit-transform: translate3d(-100%,0,0);
    }
    100% {
        -webkit-transform: translate3d(0,0,0);
    }
}


.slide-in{
    -webkit-animation: slideInSmooth ease-in 1;
    animation: slideInSmooth ease-in 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 750ms;
    animation-duration: 750ms;
}
/*Animation ends here*/

/*images*/
img {
    max-width: 100%;
    height: auto;
}

.summary a {
    color: #FFF;
}
.topics a {
    color: #FFF;
}
.answer-box {white-space: inherit; border:0px !important; padding: 10px 8px 10px 50px; }
.answer-box div {white-space: inherit;}
.answer-box div span {font-size: 14px;}

.correctAnswerList div {white-space: inherit; border:0px !important;}
.correctAnswerList div ion-item {white-space: inherit; border:0px !important;}

.question-result ion-item {

}

.level-button {
    border-radius: 4px;
    border-style: solid;
    border-width: 1px;
    float: right;
    height: 20px;
    width: 20px;
    /*margin-right: 3px;*/
  }

 .typoItalic {font-style: italic;}
ion-content div {font-size:14px;}
ion-content .item-divider {font-size:14px !important;}
ion-content .item-checkbox {}
.feedback a {text-decoration: none; color:#000;margin-bottom: 20px;}

/*a.item {border-color:#ffffff; background: #cccccc;}*/
a.item.calm-bg {background:#11c1f3; border-color: #ffffff; color:#ffffff;}
.level-balanced-icon {
    font-size: 24px;
    /*color : green;*/
}

.topics-level-view {
    padding-left: 40px;
}

/*ng-animate*/
.animate-enter,
.animate-leave
{
    -webkit-transition: 350ms cubic-bezier(0.250, 0.100, 0.250, 1.000) all;
    -moz-transition: 350ms cubic-bezier(0.250, 0.100, 0.250, 1.000) all;
    -ms-transition: 350ms cubic-bezier(0.250, 0.100, 0.250, 1.000) all;
    -o-transition: 350ms cubic-bezier(0.250, 0.100, 0.250, 1.000) all;
    transition: 350ms cubic-bezier(0.250, 0.100, 0.250, 1.000) all;
}

.animate-enter {
    top: -100%;
}
.animate-enter.animate-enter-active {
    top: 0;
}

.animate-leave {
    top: 0;
}
.animate-leave.animate-leave-active{
    top: 100%;
}
/*end ng-animate*/
.numbers {
    text-align: right;
}
.questionDivider {
    background-color: #ffffff !important;
    border-top: 1px solid #cccccc;
    height: 1px !important;
}

.question-text {
    font-size: 14px;
    padding-left: 12px;
}

/*Custom Checkbox*/
.item-checkbox .checkbox{
    top:0 !important;
    margin-top:0 !important;
}
.tBorder {border-bottom:1px;  }

.table {
    display:table;
}
.table div {
    display:table-row;
}
.table div div {
    display:table-cell;
    width:50%;
}

.feeback-message {
    white-space: inherit !important;
}
.button-blue-bg {background:#11c1f3; color:#ffffff;}

.sponsor-text {white-space:pre-line !important; text-overflow: clip !important;
    overflow: visible !important;
}
.sponsor-teaser-text {padding: 8px 40px;}
.sponsor {
    margin-top: 15px;
}
.sponsor .card{
    width: 80%;
    margin: 0 auto;
}
.swiper-pagination {
    text-align: center;
    border-top: 0px !important;
}
.swiper-pagination i {
    margin: 0px 7px;
    font-size: 10px;
}
.swiper-container {
    width: 500px;
    height: 300px;
    margin: 20px auto;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

/*calculation answer */
.calc-correctness-icon {
    margin-right: 10px;
}
.calc-result-label {
    padding-left:10px !important;
}

.footer-position {
    margin-bottom:49px;
}

/*QUIZ*/
.quiz-errormessage {
    white-space:normal !important;
    margin-bottom: 5px;
}