/*------game-button------*/
.bt-style-1 {
    width: 135px;
    aspect-ratio: 135/55;
    color: #fff;
    background: #bed1dd;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    margin: 0 2px;
    font-size: 1.312em;
    cursor: pointer;
}

input:checked+.bt-style-1 {
    background: #6ea1c1;
}

.game-card-1,
.game-card-2 {
    min-height: 120px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.game-card-1:hover,
.game-card-2:hover {
    border: 3px solid var(--custom-color-12);
}

.game-card-1 {
    background-color: #cbe6f3;
    border: 3px solid #cbe6f3;
    color: #212529
}

.game-card-2 {
    background-color: #ffffff;
    border: 3px solid #ffffff;
    color: #1a608b;
}

.selected {
    background-color: var(--custom-color-12);
    border: 3px solid var(--custom-color-12);
    color: #ffffff;
}

.right-triangle {
    background-color: var(--custom-color-1);
}

.right-triangle:after {
    content: "";
    position: absolute;
    top: calc(50% - 6px);
    right: -9px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 9px;
    border-color: transparent transparent transparent var(--custom-color-1);
}


.check-icon {
    top: 10px;
    right: 10px;
}

.absolute-10-10 {
    top: 23px;
    left: 20px
}

.vg-answer {
    border: 4px dotted #dcdcdc;
}

.ml-45 {
    margin-left: 1.75rem
}

#answer-container-2 div[class*="col-6"] {
    max-width: 240px;
    flex-basis: 50%;
}

.answer-yes {
    background: var(--custom-color-13);
    border: 3px solid var(--custom-color-13);
    color: white;
    pointer-events: none;
}

.answer-yes div {
    color: var(--custom-color-13);
    top: -2px;
    right: -2px;
}

.answer-no {
    background: #d75151;
    border: 3px solid #d75151;
    color: white;
}

.answer-no div {
    color: #d75151;
    top: -2px;
    right: -2px;
}

.answer-no:hover {
    border: 3px solid #d75151;
}

@keyframes shining {
    0% {
        filter: drop-shadow(0 0 0px var(--custom-color-12))
    }
    50% {
        filter: drop-shadow(0 0 10px var(--custom-color-12))
    }
}

.shining {
    animation: shining 2s infinite;
}

.position-md-absolute {
    position: static;
}

.w-md-auto {
    width: 100%;
}

@media (min-width: 768px) {
.position-md-absolute {
    position: absolute;
}
.w-md-auto {
    width: auto;
}
}