.jp-survey-card {
    width: 100%;
    border: 2px solid #094d93;
    border-radius: 20px;
    background: transparent;
    position: relative;
    margin-left: 20px;
    margin-bottom: 16px;
    display: inline-block;
    min-width: 150px;
    min-height: 230px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    outline: none;
}

.jp-survey-card .jp-survey-card-check {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 29px;
    height: 26px;
    background-image: url('../img/rightmark.jpg');
    z-index: 1;
}

.jp-survey-card .jp-center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    display: table;
    text-align: center;
}

.jp-survey-card .jp-center-content .jp-center-vertical {
    display: table-cell;
    vertical-align: bottom;
}

.jp-survey-card .jp-center-content img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 49%;
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
}

.jp-survey-card .jp-survey-card-text {
    font-family: "Montserrat-Bold", Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.3px;
    color: #094d93;
    padding: 19px 0 16px 0;
    text-align: center;
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
    margin: 0 16px;
}

/* Deselected State */
.jp-survey-card-deselected {
    border: 1px solid #dddddd;
}

.jp-survey-card-deselected:hover {
    border: 1px solid #1371ba;
}

.jp-survey-card-deselected .jp-survey-card-check {
    background-image: none;
}

.jp-survey-card-deselected .jp-survey-card-text {
    color: #5d5b62;
}

.jp-txt-center {
    position: absolute;
    bottom: 0;
    width: 100%;
}


@media(max-width:1023px) { 
    .jp-survey-card {
        min-height: 150px;
    }

    .jp-survey-card .jp-survey-card-text {
        padding: 16px 0 0px 0;
    }

    .jp-survey-card .jp-center-content img {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }

    .jp-survey-card .jp-center-content .jp-center-vertical {
        vertical-align: middle;
    }
}