.adoc-survey-list {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0px 0px 5px 0px #707070;
}

.adoc-survey-item { display: none; }
.adoc-survey-item.active { display: block; }

.adoc-survey-container {
    background: white;
}


.adoc-survey-item > div {
    text-align: center;
}

.adoc-survey-poster {
    line-height: 0;
}

.adoc-survey-poster img {
    width: 100%;
}

.adoc-survey-text {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: var(--nv-primary-accent);
    padding: 5px 20px;
    border-radius: 10px;
}

.adoc-survey-name {
    font-size: 24px;
}

.adoc-survey-link a {
    color: black;
    padding: 15px 30px;
    border-radius: 30px;
}

.adocarrows {
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 20px;
    position: absolute;
    display: block;
    z-index: 1000;
}

.adocarrows.rs-touchhover {
    background: #000;
}

.adocarrows:before {
    font-family: "revicons";
    font-size: 15px;
    color: #fff;
    display: block;
    line-height: 40px;
    text-align: center;
}

.adocarrows.adoc-leftarrow:before {
    content: '\e824';
}

.adocarrows.adoc-rightarrow:before {
    content: '\e825';
}

@media (max-width: 850px) {
    .adoc-survey-text {
        position: absolute;
        right: 14px;
        bottom: 14px;
        background: var(--nv-primary-accent);
        padding: 5px 10px;
        border-radius: 10px;
    }
    
    .adoc-survey-name {
        font-size: 18px;
    }
    
    .adoc-survey-link a {
        color: black;
        padding: 10px 20px;
        border-radius: 30px;
        font-size: 14px;
    }
    
    .adocarrows {
        cursor: pointer;
        background: rgba(0, 0, 0, 0.5);
        width: 30px;
        height: 30px;
        border-radius: 15px;
        position: absolute;
        display: block;
        z-index: 1000;
    }

    .adocarrows:before {
        font-family: "revicons";
        font-size: 15px;
        color: #fff;
        display: block;
        line-height: 30px;
        text-align: center;
    }
}

@media (max-width: 650px) {
    .adoc-survey-name {
        font-size: 14px;
    }
    
    .adoc-survey-link a {
        color: black;
        padding: 10px 20px;
        border-radius: 30px;
        font-size: 10px;
    }  
}