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

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

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

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

.pg-quest-container {
    position: relative;
    width: 100%;
    border-radius: 49px;
    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: row nowrap;
    margin: 8px 10px;
    align-items: center;
    gap: 15px;
    z-index: 2;
    position: relative;
    font-family: var(--main-fonts);

    @media screen and (min-width: 1024px) {
        gap: 40px;
    }
}

.pg-quest-text .pg-quest-text_title-btn {
    font-size: 14px;
    font-family: var(--main-fonts);
    line-height: 20px;
    font-weight: 700;
    color: #14014A;
    padding: 2px 24px;
    background: linear-gradient(180deg, #FFDA65 0%, #FFAE21 100%);
    border: none;
    border-radius: 47px;
    text-transform: uppercase;
}

.pg-quest-text .pg-quest-text_description {
    font-size: 10px;
    line-height: 12px;
    font-weight: 400;
    margin: 0;
    color: #FFFFFF;
    max-width: 33%;

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