#bottomQuiz {
    background-color: transparent;
    height: calc(100vh - 55px);
}

.backgroundQ-img {
    margin-left: -15px;
    margin-right: -15px;
    height: 100%;
}

.vertHorCenter {
    display: flex;
    justify-content: center;
    align-items: center;
}

.targetQ {
    position:absolute;
    border-radius: 50%;
    width: 75px;
    height: 75px;
    /*background-color: rgba(127,0,0,0.5);*/
}

#txtEntryQ {
    display: none;
    padding: 5px;
}
#txtEntryQ span {
    font-size: 0.85rem;
}

.bottomHeader {
    font-size: 1.4rem;
    color: rgba(255,255,255,1);
/*    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);*/
    text-shadow: 0px 0px 5px rgba(0, 50, 50, 1), 0px 0px 15px rgb(0, 101, 101);
    padding: 10px;
}

#quizBottomString {
    width: 100%;
    background-color: rgba(127,127,127,0.5);
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 1);
    font-size: 1.1rem;
    z-index: 11;
}

@media (min-width: 576px) {
    #txtEntryQ {
        padding: 10px;
    }
    #txtEntryQ span {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    #txtEntryQ span {
        font-size: 1.5rem;
    }
    .bottomHeader {
        font-size: 1.6rem;
    }
    #quizBbottomString {
        font-size: 1.3rem;
    }
}

#entryQ {
    border-radius: 10%;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    padding: 5px;
}
#entryQ:hover {
    box-shadow: 0 0 25px rgba(0,0,0,0.7);
}

#filterQ {
    width: 100%;
    height: 100%;
    background-color: rgba(68,94,50,0.5);
    border-radius: 10%;
    border-style: solid;
    border-width: 5px;
    overflow: hidden;
    position: relative;
}
#filterQ:after {
    content: "";
    display: block;
    width: 20%;
    height: 200%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(68,255,50,0.2) 25%,
        rgba(255, 255, 255, 0.7) 40%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 0.7) 60%,
        rgba(68,255,50,0.2) 75%,
        transparent
    );
    opacity: 0.5;
    left: 0;
    margin-left: -75%;
    top: -50%;
    /*z-index: 3;*/
    transform: rotate(-45deg);
    position: absolute;
    animation: movingFlare 2s ease-in-out 6s 2 alternate both;
}
@keyframes movingFlare {
    0% {
      left: 0;
      margin-left: -100%;
    }
    45% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    55% {
        opacity: 0.5;
    }
    100% {
      left: 150%;
      margin-left: 55%;
    }
}

#arrowsQ {
    display: block;
    filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, 1));
}

#callQuiz {
    position: absolute;
    width: 180%;
    height: 90%;
    max-width: 280px;
    z-index: 10;
}
#callQuiz a {
    color: white;
    text-decoration: none;
}

.rowB-layout {
    height: calc((100vh - 55px) * 0.2);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 1);
}

.btnTxt {
    display: none;
}

@media (min-width: 576px) {
    #entryQ {
        background-image: url('/images/hat/Question130x180low.png');
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }
    #arrowsQ {
        display: none;
    }
    #txtEntryQ {
        display: block;
    }
    .rowB-layout{
        height: calc((100vh - 55px) * 0.25);
    }
    .btnTxt {
        display: inline;
    }
}

.skewblock {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 35%;
    background-color: transparent;
    box-shadow: none;

    animation: showPIC 3s 1;        /* Название, длительность и кол-во повторов */
    opacity:0;                      /* Элемент невидимый */
    transition: 1s;                 /* Скорость изменения состояния */
    animation-fill-mode: forwards;  /* Чтобы элемент оставался в конечном состоянии */
    animation-delay: 0.5s;          /* Задержка перед началом */
}
@keyframes showPIC{
    0%{
        opacity:0;
    }
    100% {
        opacity:1;
    }
}
@media (min-width: 576px) {
    .skewblock {
        background-color: rgba(127,127,127,0.1);
    }
}
@media (min-width: 768px) {
    .skewblock {
        border-radius: 40%;
        box-shadow: 0 0 2px 2px rgba(0,0,0,0.3), 0 0 3px 3px rgba(200,200,200,0.3);
    }
}
@media (min-width: 960px) {
    .skewblock {
        border-radius: 50%;
        box-shadow: 0 0 2px 2px rgba(0,0,0,0.3), 0 0 3px 3px rgba(200,200,200,0.3);
    }
}
