/*** Styles for interactives ***/
#app .cards{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

#app .card{
    background: none;
    border: none;
}
#app .cards_words .card{
    display: flex;
    width: 45%;
    margin: 10px 0;
    color: #332d2a;
}

#app .cards_words .card p{
    width: 47%;
}
#app .cards_words .div1{
    width: 47%;
}
#app .card:hover{
    border: none;
}
#app .card div.div1{
    height: fit-content;
    min-height: 40px;
    color: #332d2a;
}
.card__message .answer-false, 
.card__message .answer-true {
    position: absolute;
    right: 5%;

}
h4{
    font-size: 25px;
    font-weight: 700;
}
.wrapper{
    display: block;
    justify-content: space-around;
    width: 100%;
}
.task-item,
.question{
    margin: 10px 0;
    line-height: 30px;
    font-size: 20px;
    color: #332d2a;
}
.task-item label, 
.question label{
    margin-right: 20px;
}
.content {
    padding: 10px;
}
.answer-false, 
.answer-true ,
.card__message .answer-false, 
.card__message .answer-true {
    /*display: none;*/
    width: 25px;
    height: 25px;
    border-radius: 100%;
}
.question {
    display: -webkit-box;
}
.underline{
    text-decoration: underline;
}
.question input{
    margin-left: 15px;
    text-align: center;
    font-size: 1em;
}
.message-error {
    color: red;
    font-size: 14px;
}
.check-answer {
    border: 1px solid;
    width: fit-content;
    padding: 8px 20px;
    border-radius: 12px;
    cursor: pointer;
}

.img-checkbox .question{
    margin-bottom: 50px;
}
.card {
    width: 24.6%;
    display: inline-block;
    margin-bottom: 40px;
}
.card img {
    width: 75%;
    height: auto;
}
.words {
    width: fit-content;
    border: 1px solid;
    padding: 20px;
    margin-bottom: 40px;
}
.word {
    display: inline-block;
    padding: 0 15px;
}
.card__message {
    position: absolute;
    width: 36px;
    top: 3px;
    padding: 0;
    margin: 0;
    right: -5px;
}
/*-----Styles for gameblock------*/
.div1 {
    position: relative;
    border-radius: 11px;
    height: 30px;
    padding: 10px;
    border: 1px solid #aaaaaa;
}
.hidden{
    display: none;
}
.div1 .cross{
    position: absolute;
    width: 20px;
    margin-left: 5px;
}
.hidden{
    display: none;
}
/*------------------*/
/******/
.next-page,
.prew-page{
    font-size: 25px;
    text-decoration: unset;
    background-color: #005195;
    color: white;
    padding: 13px 22px;
    border-radius: 10px;
    float: right;
    margin-left: 20px;
    cursor: pointer;
}

.arr-right {
    padding: 0 0px 0 10px;
    margin: 0 0 -6px 0;
}
.arr-left {
    height: 25px;
    padding: 0 0px 0 10px;
    margin: 0 0 -6px 0;
    transform: rotate(180deg);
}
.find-pare {
    font-size: 24px;
}
.arrows {
    margin-top: 50px;
    width: fit-content;
}
.restart-img,
.check-answer {
    background-color: #005195;
    color: #fff;
    padding: 11px;
    border-radius: 15px;
    font-size: 25px;
}
.home-img {
    background-color: #005195;
    padding: 8px;
    border-radius: 15px;
}
.restart-img:hover{
    cursor: pointer;
}
.restart {
    margin-left: 15px;
}
.img-question {
    width: 350px;
    /*height: 250px;*/
    height: auto;
}
.flex-block{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.check__block{
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #3e3935;
}
.check__block>p:first-child{
    margin-right: 20px;
}

@keyframes showError {
    from{
        top: 0%;
        opacity: 0.5;
    }
    to{
        top: 20%;
        opacity: 1;
    }
}

.message-error{
    border: 1px solid red;
    padding: 1.5em;
    font-size: 1.2em;
    height: fit-content;
    text-align: center;
    width: fit-content;
    border-radius: 10px;
    position: absolute;
    right: 10%;
    top: 20%;
    animation: 0.8s ease-in-out showError;
    background: rgba(255, 255, 255, 0.5);
}
/* .message-error:before{
    content: 'x';
    position: absolute;
    font-size: 1.2em;
    top: -5%;
    right: 5%;
    cursor: pointer;
}  */