.pg-quest-wrapper {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.pg-quest-icon {
    width: 68px;
    height: 75px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;

    @media screen and (min-width: 768px) {
        width: 70px;
        height: 77px;
        right: 122px;
    }

    @media screen and (min-width: 1024px) {
        right: 305px;
    }
}

.pg-quest-container {
    position: relative;
    width: 100%;
    border-radius: 8px;
    background-image: linear-gradient(270deg, #7346F3 0%, #190061 51.35%, #110040 100%);
    overflow: hidden;
}

.pg-quest-background {
    width: 373px;
    height: 60px;
    position: absolute;
    left: calc(100% - 160px);
    top: 0;

    @media screen and (min-width: 768px) {
        left: calc(100% - 160px - 122px);
    }

    @media screen and (min-width: 1024px) {
        left: calc(100% - 160px - 305px);
    }
    @media screen and (max-width: 375px) {
        height: 100%
    }
}

.pg-quest-background svg {
    width: 100%;
    height: 100%;
    display: block;
}

.pg-quest-text {
    display: flex;
    flex-flow: column;
    margin: 8px 20px;
    align-items: flex-start;
    z-index: 2;
    position: relative;

    @media screen and (min-width: 768px) {
        flex-flow: row nowrap;
        align-items: center;
        gap: 25px;
        margin: 14px 35px;
    }
}

.pg-quest-text .pg-quest-text_title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    margin: 0;
    background-color: #FFC91A;
    background-image: linear-gradient(94.01deg, #FFC91A 0.96%, #FF1EF6 103.75%);
    background-size: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    font-family: Rubik-Medium, Circe-Bold, sans-serif;

    @media screen and (min-width: 768px) {
        font-size: 24px;
        line-height: 32px;
    }
}

.pg-quest-text .pg-quest-text_description {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin: 0;
    color: #FFFFFF;

    @media screen and (min-width: 768px) {
        font-size: 20px;
        line-height: 28px;
        font-weight: 700;
    }
    @media screen and (max-width: 375px) {
        max-width: 60%;
    }
}
