﻿/* Vodus Styles*/
@font-face {
    font-family: 'vodus-webfont';
    src: url('../webfont/vodus-webfont.eot');
    src: url('../webfont/vodus-webfont.eot?#iefix') format('embedded-opentype'), url('../webfont/vodus-webfont.woff2') format('woff2'), url('../webfont/vodus-webfont.woff') format('woff'), url('../webfont/vodus-webfont.ttf') format('truetype'), url('../webfont/vodus-webfont.svg#vodusregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gill Sans Con';
    src: url("../webfont/ufonts.com_gillsans-condensed-bold.ttf") format("truetype"), url('../webfont/ufonts.com_gillsans-condensed-bold.eot?#iefix') format('embedded-opentype'), url('../webfont/ufonts.com_gillsans-condensed-bold.woff');
}

.vodus-icon {
    font-family: 'vodus-webfont';
    font-size: 31px;
    color: #8C37F6;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}



    .vodus-icon.white {
        color: white;
    }

        .vodus-icon.white:after {
            color: white;
        }


/* end Vodus Styles*/

/* Styles for global
-----------------------------------------------------------*/

body {
    font-family: 'Open Sans';
    font-size: 13px;
    /*line-height: 1.6;*/
    color: #43484c;
    background-color: #fff;
    margin: 0;
}

.clear {
    clear: both;
}

.btn-shadow {
    transition: ease 0.2s;
}

    .btn-shadow:hover {
        box-shadow: inset 0 2px 10px rgba(0,0,0,0.2), 0 5px 20px rgba(0,0,0,0.2);
    }

.box-shadow {
    -moz-box-shadow: 0px 0px 2px #FFF;
    -webkit-box-shadow: 0px 0px 2px #FFF;
    box-shadow: 0px 0px 2px #FFF;
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=2, Direction=0, Color='#FFF')";
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=2, Direction=0, Color='#FFF');
}

.std-font-1 {
    font-size: 12px;
}

.std-font-2 {
    font-size: 13px;
}

.std-font-3 {
    font-size: 14px;
}

.std-font-4 {
    font-size: 16px;
}

.std-font-5 {
    font-size: 24px;
}

.std-font-6 {
    font-size: 28px;
}

.std-font-7 {
    font-size: 40px;
}

.std-font-8 {
    font-size: 56px;
}

.std-semi-bold {
    font-weight: 600;
}

.std-bold {
    font-weight: bold;
}

ul {
    list-style-type: none;
    color: white;
    margin: 0px;
    padding: 0px;
}

.animate {
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}

/* Let's get this party started */
::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
}

/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background: rgb(200,200,200);
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: grey;
    }

/* end Styles for global*/


/* Styles for basic forms
-----------------------------------------------------------*/
fieldset {
    border: 1px solid #ddd;
    padding: 0 1.4em 1.4em 1.4em;
    margin: 0 0 1.5em 0;
}

legend {
    font-size: 1.2em;
    font-weight: bold;
}

textarea {
    min-height: 75px;
}

.editor-label {
    margin: 1em 0 0 0;
}

.editor-field {
    margin: 0.5em 0 0 0;
}

.listAnswerInnerContainer {
    height: 280px;
    overflow: scroll;
}

#listAnswerContainer textarea {
    white-space: nowrap;
}

#listAnswerDefault {
    text-align: right;
}

/* Styles for validation helpers
-----------------------------------------------------------*/
.field-validation-error {
    color: #f00;
}

.field-validation-valid {
    display: none !important;
}

.input-validation-error {
    border: 1px solid #f00;
    background-color: #F9E8FF;
}

.validation-summary-errors {
    font-weight: bold;
    color: #f00;
}

    .validation-summary-errors > ul {
        font-weight: bold;
        color: #f00 !important;
    }

.validation-summary-valid {
    display: none;
}

/* Styles for standard UI
-----------------------------------------------------------*/
/* button and link */
.vodus-btn {
    background: linear-gradient( 90deg, #8C37F6,#5147FE);
    width: 130px;
    display: inline-block;
    text-decoration: none;
    color: white;
    text-align: center;
    padding-top: 7px;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}

.vodus-btn-primary {
    background: linear-gradient( 90deg, #8C37F6,#5147FE);
    text-decoration: none;
    color: white;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}


a.vodus-btn {
    background: linear-gradient( 90deg, #8C37F6,#5147FE);
    display: inline-block;
    text-decoration: none;
    color: white;
    line-height: 1.3em;
    text-align: center;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}

    a.vodus-btn:not([href]):not([tabindex]) {
        color: white;
    }

.vodus-btn:hover,
.vodus-btn:focus,
.vodus-btn-primary:hover,
.vodus-btn-primary:focus {
    background: linear-gradient( 270deg, #8C37F6,#5147FE);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
    filter: alpha(opacity=75);
    -moz-opacity: 0.75;
    -khtml-opacity: 0.75;
    text-decoration-line: none;
}

.vodus-btn:hover,
.vodus-btn:focus,
.vodus-btn:active {
    background-color: #8C37F6;
    color: white !important;
}

.vodus-btn-primary:hover,
.vodus-btn-primary:focus,
.vodus-btn-primary:active {
    background-color: #8C37F6;
    color: white !important;
}

a.vodus-lnk {
    position: relative;
    color: #7f47ab;
    text-decoration: none !important;
    transition: 0.2s ease;
}

    a.vodus-lnk:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        bottom: 0;
        left: 0;
        background: linear-gradient( 90deg, #8C37F6,#5147FE);
        visibility: hidden;
        -webkit-transition: all 0.2s ease-in-out 0s;
        -moz-transition: all 0.2s ease-in-out 0s;
        -o-transition: all 0.2s ease-in-out 0s;
        transition: all 0.2s ease-in-out 0s;
        -webkit-transform: scaleX(0);
        -moz-transform: scaleX(0);
        -o-transform: scaleX(0);
        transform: scaleX(0);
    }

    a.vodus-lnk:hover:before {
        visibility: visible;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

    a.vodus-lnk.grey {
        color: #b5b7bd;
    }

        a.vodus-lnk.grey:hover {
            color: #8C37F6;
        }

a.vodus-lnk-2 {
    position: relative;
    color: white;
    text-decoration: none !important;
}

/* end button and link */

/* label */
label {
    display: inline;
    margin: 0;
    padding: 0;
}
/* end label */

/* input */
input[type=text].vodus-input, input[type=password].vodus-input {
    height: 42px;
    width: 98%;
    border: 1px #e1e8ee solid;
    margin-top: 15px;
}
/* end input */

input[type=text].vodus-input, input[type=password].vodus-input, textarea.vodus-input {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    outline: none;
    padding-left: 15px;
}

    input[type=text].vodus-input:focus, input[type=password].vodus-input:focus, textarea.vodus-input:focus {
        border: 1px solid #8C37F6;
    }

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
    background-color: #8C37F6 !important;
}

/* .checkBox */
/* Base for label styling */
[type="checkbox"].vodus-input:not(:checked),
[type="checkbox"].vodus-input:checked {
    position: absolute;
    /*left: -9999px;*/
    visibility: hidden;
}

    [type="checkbox"].vodus-input:checked ~ label:before {
        background-color: #8C37F6 !important;
    }

    [type="checkbox"].vodus-input:not(:checked) ~ label,
    [type="checkbox"].vodus-input:checked ~ label {
        position: relative;
        padding-left: 25px;
        cursor: pointer;
    }

        /* checkbox aspect */
        [type="checkbox"].vodus-input:not(:checked) ~ label:before,
        [type="checkbox"].vodus-input:checked ~ label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 3px;
            width: 17px;
            height: 17px;
            /*border: 1px solid #aaa;*/
            background: #e1e8ee;
            border-radius: 3px;
            -webkit-transition: all 0.2s ease-in-out;
            -moz-transition: all 0.2s ease-in-out;
            -ms-transition: all 0.2s ease-in-out;
            -o-transition: all 0.2s ease-in-out;
            /*box-shadow: inset 0 1px 3px rgba(0,0,0,.3);*/
        }
        /* checked mark aspect */
        [type="checkbox"].vodus-input:not(:checked) ~ label:after,
        [type="checkbox"].vodus-input:checked ~ label:after {
            content: '✔';
            position: absolute;
            top: 5px;
            left: 1px;
            font-size: 18px;
            line-height: 0.8;
            color: white;
            -webkit-transition: all 0.2s ease-in-out;
            -moz-transition: all 0.2s ease-in-out;
            -ms-transition: all 0.2s ease-in-out;
            -o-transition: all 0.2s ease-in-out;
        }
        /* checked mark aspect changes */
        [type="checkbox"].vodus-input:not(:checked) ~ label:after {
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
            filter: alpha(opacity=0);
            -moz-opacity: 0;
            -khtml-opacity: 0;
            opacity: 0;
            transform: scale(0);
        }

        [type="checkbox"].vodus-input:checked ~ label:after {
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
            filter: alpha(opacity=100);
            -moz-opacity: 1;
            -khtml-opacity: 1;
            opacity: 1;
            transform: scale(1);
        }


/* disabled checkbox */
[type="checkbox"].vodus-input:disabled:not(:checked) ~ label:before,
[type="checkbox"].vodus-input:disabled:checked ~ label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}

[type="checkbox"].vodus-input:disabled:checked ~ label:after {
    color: #999;
}

[type="checkbox"].vodus-input:disabled ~ label {
    color: #aaa;
}
/* accessibility */
[type="checkbox"].vodus-input:checked:focus ~ label:before,
[type="checkbox"].vodus-input:not(:checked):focus ~ label:before {
    /*border: 1px solid #8C37F6;*/
}

/* hover style just for information */
[type="checkbox"].vodus-input ~ label:hover {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

[type="checkbox"].vodus-input:checked ~ label {
    color: #666;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}
/* end .checkBox */

/* qTip customize */
.qTip-custom-ui {
    background-color: rgb(114, 43, 167) !important;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #8C37F6 !important;
    color: white !important;
    font-size: 12px !important;
}

.qTip-custom-ui-2 {
    background-color: white !important;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    border: solid 1px #bfbfbf !important;
    color: black !important;
    font-size: 14px !important;
    -moz-box-shadow: 1px 2px 3px 0 rgba(0, 0, 0, 0.3) !important;
    -webkit-box-shadow: 1px 2px 3px 0 rgba(0, 0, 0, 0.3) !important;
    box-shadow: 1px 2px 3px 0 rgba(0, 0, 0, 0.3) !important;
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=2, Color='rgba(0, 0, 0, 0.3)')" !important;
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=2, Color=rgba(0, 0, 0, 0.3)) !important;
    padding: 10px !important;
}

.qTip-custom-ui-3 {
    width: 200px;
    background-color: white !important;
    border: 1px solid #d2d2d2 !important;
    border-bottom: solid 3px #8C37F6 !important;
    color: black !important;
    font-size: 14px !important;
    -moz-box-shadow: 1px 2px 3px 0 rgba(0, 0, 0, 0.1) !important;
    -webkit-box-shadow: 1px 2px 3px 0 rgba(0, 0, 0, 0.1) !important;
    box-shadow: -1px 3px 4px 0 rgba(0, 0, 0, 0.1) !important;
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=2, Color='rgba(0, 0, 0, 0.1)')" !important;
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=2, Color=rgba(0, 0, 0, 0.1)) !important;
    padding: 0 10px;
}

/* end qTip customize */


/* jQuery UI customize */

.ui-widget-header {
    border: 1px solid #444a59 !important;
    background: #444a59 url("../../Images/jQueryUI-1.11.4/images/ui-bg_diagonals-small_20_444a59_40x40.png") 50% 50% repeat !important;
    color: #ffffff !important;
    font-weight: bold !important;
}

/* end jQuery UI customize */

/* modal message box */
#vodus-modal-message-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: rgba(0,0,0,0.5); /*dim the background*/
}

#vodus-modal-message {
    min-width: 10em;
    min-height: 10em;
    position: fixed;
    top: 40%;
    left: 33%;
    margin: auto;
    z-index: 10001;
    overflow: hidden;
    padding: 12px;
}

#vodus-modal-message-container {
    padding: 10px;
    height: 100%;
    width: 400px;
    margin-top: 12px;
    border-radius: 5px;
    word-wrap: break-word;
    display: block;
}

a#vodus-modal-message-boxclose {
    cursor: pointer;
    color: #fff;
    border: 1px solid #AEAEAE;
    border-radius: 30px;
    background: #605F61;
    font-size: 31px;
    font-weight: bold;
    line-height: 0px;
    padding: 11px 3px;
    text-decoration: none;
    position: absolute;
    z-index: 10002;
    display: block;
    right: 0;
}

    a#vodus-modal-message-boxclose:before {
        content: "×";
    }
/* end modal message box */


.m-top-xs {
    margin-top: 5px;
}

.m-top-sm {
    margin-top: 10px;
}

.m-top-md {
    margin-top: 20px;
}

.m-top-lg {
    margin-top: 40px;
}

/*Alert*/
.alert {
    padding: 20px;
    background-color: #f44336;
    color: white;
    opacity: 1;
    transition: opacity 0.6s;
    margin-bottom: 15px;
    border: none;
}
.alert-success {
    background-color: #fff;
    color: #000;
    border-top: 5px solid #8C37F6;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.alert.info {
    background-color: #fff;
    color: #000;
    border-top: 5px solid #8C37F6;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.alert.warning {
    background-color: #fff;
    color: #000;
    border-top: 5px solid #8C37F6;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

    .closebtn:hover {
        color: black;
    }

.survey-ended-notice {
    line-height: 25px;
    font-weight: 500;
    background-color: green;
    text-transform: none;
    height: 90px;
}

.survey-ended-notice button{
    background-color: dimgray;
    float: right;
}

/*end of alert*/


/**, *:before, *:after {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
     box-sizing: content-box; 
}*/


/* Ajax loading overlay */
#loading {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: fixed;
    display: block;
    opacity: 0.7;
    background-color: #000;
    z-index: 999999;
    text-align: center;
}

#loading-image {
    position: absolute;
    top: 49%;
    left: 49%;
    z-index: 999999;
}

/* Original bootstrap styles */

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: #333333;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}

label {
    display: inline-block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="search"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

input[type="radio"],
input[type="checkbox"] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    /* IE8-9 */
    line-height: normal;
}

input[type="file"] {
    display: block;
}

select[multiple],
select[size] {
    height: auto;
}

select optgroup {
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
    outline: thin dotted #333;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    height: auto;
}

.form-control:-moz-placeholder {
    color: #999999;
}

.form-control::-moz-placeholder {
    color: #999999;
}

.form-control:-ms-input-placeholder {
    color: #999999;
}

.form-control::-webkit-input-placeholder {
    color: #999999;
}

.form-control {
    display: block;
    width: 100%;
    padding: 6px 6px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555555;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

    .form-control:focus {
        border-color: #66afe9;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    }

    .form-control[disabled],
    .form-control[readonly],
    fieldset[disabled] .form-control {
        cursor: not-allowed;
        background-color: #eeeeee;
    }

textarea.form-control {
    height: auto;
}

.form-group {
    margin-bottom: 15px;
}

/* panel */
.panel {
    margin-bottom: 20px;
    background-color: #ffffff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-body {
    padding: 15px;
}

    .panel-body:before,
    .panel-body:after {
        display: table;
        content: " ";
    }

    .panel-body:after {
        clear: both;
    }

    .panel-body:before,
    .panel-body:after {
        display: table;
        content: " ";
    }

    .panel-body:after {
        clear: both;
    }

.s-list-group {
    font-family: 'Open Sans';
    font-size: 13px;
}

.panel > .list-group {
    margin-bottom: 0;
}

    .panel > .list-group .list-group-item {
        border-width: 1px 0;
    }

        .panel > .list-group .list-group-item:first-child {
            border-top-right-radius: 0;
            border-top-left-radius: 0;
        }

        .panel > .list-group .list-group-item:last-child {
            border-bottom: 0;
        }

.panel-heading + .list-group .list-group-item:first-child {
    border-top-width: 0;
}

.panel > .table {
    margin-bottom: 0;
}

.panel > .panel-body + .table {
    border-top: 1px solid #dddddd;
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
}

    .panel-title > a {
        color: inherit;
    }

.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #dddddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.panel-group .panel {
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 4px;
}

    .panel-group .panel + .panel {
        margin-top: 5px;
    }

.panel-group .panel-heading {
    border-bottom: 0;
}

    .panel-group .panel-heading + .panel-collapse .panel-body {
        border-top: 1px solid #dddddd;
    }

.panel-group .panel-footer {
    border-top: 0;
}

    .panel-group .panel-footer + .panel-collapse .panel-body {
        border-bottom: 1px solid #dddddd;
    }

.panel-default {
    border-color: #dddddd;
}

    .panel-default > .panel-heading {
        color: #333333;
        background-color: #f5f5f5;
        border-color: #dddddd;
    }

        .panel-default > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #dddddd;
        }

    .panel-default > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #dddddd;
    }

.panel-primary {
    border-color: #428bca;
}

    .panel-primary > .panel-heading {
        color: #ffffff;
        background-color: #428bca;
        border-color: #428bca;
    }

        .panel-primary > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #428bca;
        }

    .panel-primary > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #428bca;
    }

.panel-success {
    border-color: #d6e9c6;
}

    .panel-success > .panel-heading {
        color: #468847;
        background-color: #dff0d8;
        border-color: #d6e9c6;
    }

        .panel-success > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #d6e9c6;
        }

    .panel-success > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #d6e9c6;
    }

.panel-warning {
    border-color: #fbeed5;
}

    .panel-warning > .panel-heading {
        color: #c09853;
        background-color: #fcf8e3;
        border-color: #fbeed5;
    }

        .panel-warning > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #fbeed5;
        }

    .panel-warning > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #fbeed5;
    }

.panel-danger {
    border-color: #eed3d7;
}

    .panel-danger > .panel-heading {
        color: #b94a48;
        background-color: #f2dede;
        border-color: #eed3d7;
    }

        .panel-danger > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #eed3d7;
        }

    .panel-danger > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #eed3d7;
    }

.panel-info {
    border-color: #bce8f1;
}

    .panel-info > .panel-heading {
        color: #3a87ad;
        background-color: #d9edf7;
        border-color: #bce8f1;
    }

        .panel-info > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #bce8f1;
        }

    .panel-info > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #bce8f1;
    }

/* buttons */

.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.428571429;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

    .btn:focus {
        outline: thin dotted #333;
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
    }

    .btn:hover,
    .btn:focus {
        color: #333333;
        text-decoration: none;
    }

    .btn:active,
    .btn.active {
        background-image: none;
        outline: 0;
        -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
        box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    }

    .btn.disabled,
    .btn[disabled],
    fieldset[disabled] .btn {
        pointer-events: none;
        cursor: not-allowed;
        opacity: 0.65;
        filter: alpha(opacity=65);
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active, .btn-secondary.active {
    background-color: #666;
    color: #fff;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.btn-default {
    color: #333333;
    background-color: #ffffff;
    border-color: #cccccc;
}

    .btn-default:hover,
    .btn-default:focus,
    .btn-default:active,
    .btn-default.active,
    .open .dropdown-toggle.btn-default {
        color: #333333;
        background-color: #ebebeb;
        border-color: #adadad;
    }

    .btn-default:active,
    .btn-default.active,
    .open .dropdown-toggle.btn-default {
        background-image: none;
        line-height: 1.3em;
    }

    .btn-default.disabled,
    .btn-default[disabled],
    fieldset[disabled] .btn-default,
    .btn-default.disabled:hover,
    .btn-default[disabled]:hover,
    fieldset[disabled] .btn-default:hover,
    .btn-default.disabled:focus,
    .btn-default[disabled]:focus,
    fieldset[disabled] .btn-default:focus,
    .btn-default.disabled:active,
    .btn-default[disabled]:active,
    fieldset[disabled] .btn-default:active,
    .btn-default.disabled.active,
    .btn-default[disabled].active,
    fieldset[disabled] .btn-default.active {
        background-color: #ffffff;
        border-color: #cccccc;
    }

.btn-primary {
    color: #ffffff;
    background-color: #172949;
    border-color: #ccc;
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:active,
    .btn-primary.active,
    .open .dropdown-toggle.btn-primary {
        color: #ffffff;
        background-color: #172949;
        border-color: #172949;
    }

    .btn-primary:active,
    .btn-primary.active,
    .open .dropdown-toggle.btn-primary {
        background-image: none;
    }

    .btn-primary.disabled,
    .btn-primary[disabled],
    fieldset[disabled] .btn-primary,
    .btn-primary.disabled:hover,
    .btn-primary[disabled]:hover,
    fieldset[disabled] .btn-primary:hover,
    .btn-primary.disabled:focus,
    .btn-primary[disabled]:focus,
    fieldset[disabled] .btn-primary:focus,
    .btn-primary.disabled:active,
    .btn-primary[disabled]:active,
    fieldset[disabled] .btn-primary:active,
    .btn-primary.disabled.active,
    .btn-primary[disabled].active,
    fieldset[disabled] .btn-primary.active {
        background-color: #428bca;
        border-color: #357ebd;
    }

.btn-warning {
    color: #ffffff;
    background-color: #f0ad4e;
    border-color: #eea236;
}

    .btn-warning:hover,
    .btn-warning:focus,
    .btn-warning:active,
    .btn-warning.active,
    .open .dropdown-toggle.btn-warning {
        color: #ffffff;
        background-color: #ed9c28;
        border-color: #d58512;
    }

    .btn-warning:active,
    .btn-warning.active,
    .open .dropdown-toggle.btn-warning {
        background-image: none;
    }

    .btn-warning.disabled,
    .btn-warning[disabled],
    fieldset[disabled] .btn-warning,
    .btn-warning.disabled:hover,
    .btn-warning[disabled]:hover,
    fieldset[disabled] .btn-warning:hover,
    .btn-warning.disabled:focus,
    .btn-warning[disabled]:focus,
    fieldset[disabled] .btn-warning:focus,
    .btn-warning.disabled:active,
    .btn-warning[disabled]:active,
    fieldset[disabled] .btn-warning:active,
    .btn-warning.disabled.active,
    .btn-warning[disabled].active,
    fieldset[disabled] .btn-warning.active {
        background-color: #f0ad4e;
        border-color: #eea236;
    }

.btn-danger {
    color: #ffffff;
    background-color: #d9534f;
    border-color: #d43f3a;
}

    .btn-danger:hover,
    .btn-danger:focus,
    .btn-danger:active,
    .btn-danger.active,
    .open .dropdown-toggle.btn-danger {
        color: #ffffff;
        background-color: #d2322d;
        border-color: #ac2925;
    }

    .btn-danger:active,
    .btn-danger.active,
    .open .dropdown-toggle.btn-danger {
        background-image: none;
    }

    .btn-danger.disabled,
    .btn-danger[disabled],
    fieldset[disabled] .btn-danger,
    .btn-danger.disabled:hover,
    .btn-danger[disabled]:hover,
    fieldset[disabled] .btn-danger:hover,
    .btn-danger.disabled:focus,
    .btn-danger[disabled]:focus,
    fieldset[disabled] .btn-danger:focus,
    .btn-danger.disabled:active,
    .btn-danger[disabled]:active,
    fieldset[disabled] .btn-danger:active,
    .btn-danger.disabled.active,
    .btn-danger[disabled].active,
    fieldset[disabled] .btn-danger.active {
        background-color: #d9534f;
        border-color: #d43f3a;
    }

.btn-pricing-panel,
.btn-purple {
    border-radius: 3px !important;
    border: solid 1px #cfcfcf !important;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.15), inset 0 0 2px 0 rgba(0,0,0,0.1);
    transition: ease 0.2s;
}

    .btn-pricing-panel:hover,
    .btn-pricing-panel:focus,
    .btn-pricing-panel:active,
    .btn-purple {
        box-shadow: 0 2px 2px 0 rgba(0,0,0,0.1), inset 0 0 8px 0 rgba(0,0,0,0.15);
    }

.btn-sample-save,
.btn-purple {
    background-color: #8C37F6;
    color: #ffffff !important;
}

.button-continue {
    margin-left: 5px;
    margin-bottom: 5px;
    background-color: white;
    color: #8C37F6;
}

.btn-sample-save:hover,
.btn-sample-save:focus,
.btn-sample-save:active {
    color: white !important;
}

.button-continue:hover,
.button-continue:focus,
.button-continue:active {
    color: #8C37F6 !important;
}

.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
    background-color: #5cb85c;
    border-color: #4cae4c;
}

.btn-info {
    color: #ffffff;
    background-color: #5bc0de;
    border-color: #46b8da;
}

    .btn-info:hover,
    .btn-info:focus,
    .btn-info:active,
    .btn-info.active,
    .open .dropdown-toggle.btn-info {
        color: #ffffff;
        background-color: #39b3d7;
        border-color: #269abc;
    }

    .btn-info:active,
    .btn-info.active,
    .open .dropdown-toggle.btn-info {
        background-image: none;
    }

    .btn-info.disabled,
    .btn-info[disabled],
    fieldset[disabled] .btn-info,
    .btn-info.disabled:hover,
    .btn-info[disabled]:hover,
    fieldset[disabled] .btn-info:hover,
    .btn-info.disabled:focus,
    .btn-info[disabled]:focus,
    fieldset[disabled] .btn-info:focus,
    .btn-info.disabled:active,
    .btn-info[disabled]:active,
    fieldset[disabled] .btn-info:active,
    .btn-info.disabled.active,
    .btn-info[disabled].active,
    fieldset[disabled] .btn-info.active {
        background-color: #5bc0de;
        border-color: #46b8da;
    }

.btn-link {
    font-weight: normal;
    color: #428bca;
    cursor: pointer;
    border-radius: 0;
}

    .btn-link,
    .btn-link:active,
    .btn-link[disabled],
    fieldset[disabled] .btn-link {
        background-color: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .btn-link,
        .btn-link:hover,
        .btn-link:focus,
        .btn-link:active {
            border-color: transparent;
        }

            .btn-link:hover,
            .btn-link:focus {
                color: #2a6496;
                text-decoration: underline;
                background-color: transparent;
            }

            .btn-link[disabled]:hover,
            fieldset[disabled] .btn-link:hover,
            .btn-link[disabled]:focus,
            fieldset[disabled] .btn-link:focus {
                color: #999999;
                text-decoration: none;
            }

.btn-lg {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px;
}

.btn-sm,
.btn-xs {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.btn-xs {
    padding: 1px 5px;
}

.btn-block {
    display: block;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
}

    .btn-block + .btn-block {
        margin-top: 5px;
    }

.dropdown {
    border: 1px solid #ccc;
    border-radius: 5px;
    width: fit-content;
}
.dropdown .btn.survey-chunking-dropdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: auto;
}
#divSurveySampleTargetContent {
    padding: 20px 60px;
}
.demographic-price-list-panel {
    position: relative;
    z-index: 999;
    height: 80vh;
}

@media (min-width: 992px) {
    .demographic-price-list-panel {
        position: fixed !important;
        top: 60px;
        right: 20px;
    }
}
@media (max-width: 768px) {
    #divSurveySampleTargetContent {
        padding: 0;
    }
}
.demographic-price-list-panel-content {
    max-height: 68%;
    overflow-y: auto;
    min-width: 350px;
    border: 1px solid black;
    background-color: white;
}
    .demographic-price-list-panel-content input[type=checkbox] {
        margin: 0;
        margin-right: 5px;
    }
.demographic-price-list-panel-content label {
    line-height: 32px;
}
.demographic-price-list-panel-content .form-control {
    text-align: center;
}
.demographic-price-list-panel-content #btnCalculateCost {
    height: 32px;
}
.price-list-panel-underline,
.price-list-panel-underline-black {
    height: 1px;
    width: 90%;
    border-top: 1px solid #818181;
    margin: 0 auto;
}

.price-list-panel-underline-black {
    border-color: #000000;
    width: 100%;
}

.demographic-price-list-panel .row {
    padding: 5px 10px;
    margin: 0;
    font-weight: bold;
}
.fieldwork-period-row.row {
    display: flex;
    align-items: center;
    padding-top: 0;
}
    .fieldwork-period-row label,
    .fieldwork-period-row input[type=checkbox],
    .fieldwork-period-row span {
        margin-top: 0;
        margin-bottom: 0;
    }
    .fieldwork-period-row span {
        margin-left: 5px;
    }
#CustomCompletionTimeContainer i {
    font-weight: 400;
}

.price-list-panel-center {
    text-align: center;
}

.price-list-panel-small-font {
    font-size: 12px;
    font-weight: 600;
}

.demographic-price-list-panel a {
    color: black;
    padding-right: 15px;
    padding-left: 15px;
    font-size: 12px;
    text-decoration: none !important;
}

.demographic-price-list-panel li {
    color: #818181;
    font-style: italic;
    padding-right: 15px;
    padding-left: 15px;
    font-weight: 600;
    font-size: 12px;
}

.demographic-price-list-panel-top-empty {
    padding-top: 0px !important;
}

.demographic-price-list-panel-bottom-empty {
    padding-bottom: 0px !important;
}

/*Start Survey Target*/

.s-surv-target-ddlbox, .s-surv-target-ddlbox-occ {
    width: 300px;
    position: relative;
}

.s-surv-target-ddlbody, .s-surv-target-ddlbody-occ {
    border-right: 0.5px solid #A1A1A1;
    border-left: 0.5px solid #A1A1A1;
    border-bottom: 0.5px solid #A1A1A1;
    width: 100%;
    height: 300px;
    overflow: scroll;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: white;
}

#8761, #8760 {
    height: 70px;
}


.s-surv-target-ddl {
    position: absolute;
    width: 100%;
    z-index: 10;
    display: none;
}

.s-surv-target-ddl-occ {
    position: absolute;
    width: 100%;
    z-index: 9;
    display: none;
}

.s-surv-target-ddlSearch, .s-surv-target-ddlSearch-occ {
    width: 100%;
    height: 30px;
    border-right: 0.5px solid #A1A1A1;
    border-left: 0.5px solid #A1A1A1;
    display: table;
    background-color: white;
}

    .s-surv-target-ddlSearch input[type=text] {
        height: 100%;
        width: 100%;
        background-color: white;
        border: 0;
        margin: 0;
        padding: 0 5px 0 10px;
        box-sizing: border-box;
        display: table-cell;
        color: #A1A1A1;
    }

        .s-surv-target-ddlSearch input[type=text]:focus {
            color: black;
        }

.s-surv-target-ddlCheck, .s-surv-target-ddlCheck-occ {
    background-color: white;
    border: 0.5px solid #A1A1A1;
    width: 100%;
    height: 30px;
}

    .s-surv-target-ddlCheck label, .s-surv-target-ddlCheck-occ label {
        line-height: 30px;
        padding-left: 5px;
    }

.s-surv-target-ddlHeader {
    width: 100%;
    height: 25px;
    line-height: 25px;
    border-right: 0.5px solid #A1A1A1;
    border-left: 0.5px solid #A1A1A1;
    border-bottom: 0.5px solid #A1A1A1;
    background-color: #e1e1db;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

    .s-surv-target-ddlHeader span, .s-surv-target-ddlHeader-occ span {
        font-weight: bolder;
        padding-left: 5px;
    }


.s-surv-target-ddlbox ul, .s-surv-target-ddlbox-occ ul {
    list-style-position: inside;
    color: black;
    padding-left: 5px;
}

    .s-surv-target-ddlbox ul ul, ol ul, .s-surv-target-ddlbox-occ ul ul, ol ul {
        list-style-position: inside;
        margin-left: 15px;
        color: black;
    }

    .s-surv-target-ddlbox ul ul, ol ul, .s-surv-target-ddlbox-occ ul li {
        white-space: nowrap;
    }

.s-surv-target-list-plusicon {
    background-image: url('plusicon.png');
}

.s-surv-target-ddlTextArea-div {
    width: 300px;
    height: 100px;
    border: 0.5px solid #A1A1A1;
    background-color: white;
    overflow: scroll;
    overflow-x: hidden;
    overflow-y: auto;
}

.s-surv-target-ddlTextArea-div-occ {
    width: 300px;
    height: 130px;
    border: 0.5px solid #A1A1A1;
    background-color: white;
    overflow: scroll;
    overflow-x: hidden;
    overflow-y: auto;
}

    .s-surv-target-ddlTextArea-div ul, .s-surv-target-ddlTextArea-div-occ ul {
        list-style-position: inside;
        color: black;
        padding-left: 5px;
    }

        .s-surv-target-ddlTextArea-div ul ul, ol ul, .s-surv-target-ddlTextArea-div-occ ul ul, ol ul {
            list-style-position: inside;
            margin-left: 15px;
            color: black;
        }

    .s-surv-target-ddlTextArea-div label, .s-surv-target-ddlTextArea-div-occ label {
        padding-left: 5px;
    }

.s-surv-target-ddlTextArea-lbl-div {
    width: 100%;
    white-space: nowrap;
}

    .s-surv-target-ddlTextArea-lbl-div:hover {
        background-color: #A1A1A1;
    }

    .s-surv-target-ddlTextArea-lbl-div span {
        float: right;
        margin-right: 10px;
        visibility: hidden;
    }

    .s-surv-target-ddlTextArea-lbl-div:hover span {
        visibility: visible;
        cursor: pointer;
    }

span.highlight {
    background: #f1c40f;
}

.s-content-target-table {
    margin: 20px 20px 20px 20px;
}

    .s-content-target-table td > span {
        font-weight: 900;
        font-size: 20px;
    }

    .s-content-target-table td {
        vertical-align: top;
    }

.s-content-Quota-table {
    margin: 20px 20px 20px 20px;
    width: 100%;
}

    .s-content-Quota-table td > span {
        font-weight: 900;
    }

s-content-quota-selection-div,
.s-content-target-sub,
.s-content-target-gender,
.s-content-target-education,
.s-content-target-religion,
.s-content-target-race {
    margin-top: 10px;
    margin-bottom: 10px;
}

/*Not working in iE*/
/*.s-content-target-sub div:last-child {
        border: 0.5px solid #A1A1A1;
    }*/

.s-content-quota-selection-psy,
.s-content-target-subfilter-psy {
    float: left;
    width: 75px;
    text-align: center;
    border-left: 0.5px solid #A1A1A1;
    border-top: 0.5px solid #A1A1A1;
    border-bottom: 0.5px solid #A1A1A1;
    height: 25px;
    background-color: white;
    cursor: pointer;
}

.s-content-quota-selection-psy {
    width: 100px;
}



.s-content-quota-selection,
.s-content-target-subfilter {
    float: left;
    width: 75px;
    text-align: center;
    border-left: 0.5px solid #A1A1A1;
    border-top: 0.5px solid #A1A1A1;
    border-bottom: 0.5px solid #A1A1A1;
    height: 25px;
    background-color: white;
    cursor: pointer;
}

.s-content-quota-selection {
    width: 100px;
}

.s-content-target-location-filter,
.s-content-target-education-filter,
.s-content-target-religion-filter,
.s-content-target-gender-filter,
.s-content-target-race-filter {
    float: left;
    text-align: center;
    border: 0.5px solid #A1A1A1;
    height: 25px;
    background-color: white;
    cursor: pointer;
    padding: 0 20px 0 20px;
}

.s-content-target-location-filter-selected,
.s-content-quota-selection-selected,
.s-content-quota-selection-psy-selected,
.s-content-target-subfilter-selected,
.s-content-target-gender-filter-selected,
.s-content-target-education-filter-selected,
.s-content-target-religion-filter-selected,
.s-content-target-race-filter-selected {
    background-color: #8C37F6;
    color: white;
}

.s-content-quota-selection-last,
.s-content-target-subfilterlast {
    border-right: 0.5px solid #A1A1A1;
}

.s-content-target-location-filter:hover,
.s-content-quota-selection:hover,
.s-content-quota-selection-psy:hover,
.s-content-target-subfilter:hover,
.s-content-target-gender-filter:hover,
.s-content-target-education-filter:hover,
.s-content-target-religion-filter:hover,
.s-content-target-race-filter:hover {
    background-color: #e1e1db;
    color: #000000;
}

.s-content-target-location-filter span,
.s-content-quota-selection span,
.s-content-target-subfilter span,
.s-content-target-gender-filter span,
.s-content-target-education-filter span,
.s-content-target-religion-filter span,
.s-content-target-race-filter span {
    line-height: 25px;
}

.s-content-target-ddl-filter {
    display: none;
}

    .s-content-target-ddl-filter li {
        display: none;
    }

.s-surv-target-ddlbox-occ, .s-surv-target-ddlbody-occ, .s-surv-target-ddlTextArea-div-occ {
    width: 450px;
}


.s-content-quota-sub-container {
    float: left;
    min-width: 350px;
}

    .s-content-quota-sub-container td {
        padding-top: 5px;
        padding-bottom: 5px;
        width: 30%;
    }

    .s-content-quota-sub-container span {
        font-weight: 900;
    }

.s-content-quota-data {
    width: 304px;
    float: left;
    background-color: white;
    min-height: 150px;
}

.s-content-quota-data-clickable {
    margin-right: 5px;
    margin-top: 5px;
}

    .s-content-quota-data-clickable table tbody tr:hover {
        cursor: pointer;
        color: #8C37F6;
    }

.s-content-quota-table-line {
    height: 0px;
    width: 100%;
    border: 0.5px solid #A1A1A1;
}

.s-content-Quota-sub-table {
    width: 100%;
    padding: 10px;
}

    .s-content-Quota-sub-table thead span {
        color: #A1A1A1;
    }

    .s-content-Quota-sub-table span {
        font-weight: 900;
    }

    .s-content-Quota-sub-table td,
    .s-content-Quota-sub-table td input {
        position: relative;
        padding: 5px;
        text-align: center;
    }

        .s-content-Quota-sub-table td:nth-child(1) {
            text-align: left;
            width: 70%;
        }

.s-content-quota-input-digitonly {
    width: 100%;
    padding-right: 20px;
    border: 0.5px solid grey;
}

.s-content-quota-data-disabled span,
.s-content-quota-data-disabled input[type=text] {
    color: #e1e1db;
}

.s-title-row-1 label,
.s-title-row-2 label {
    line-height: 32px;
    margin-bottom: 0;
}

.s-title-row-1,
.s-title-row-2 {
    margin-bottom: 10px;
}

    .s-title-row-1 .form-group div,
    .s-title-row-2 .form-group div {
        padding: 0;
    }

#ClientInvoiceTable_wrapper table tbody tr td:nth-child(4) {
    text-align: center;
}

.quota-error-message {
    color: red;
}

#SurveySummaryContent {
    height: 93vh;
    overflow: hidden;
}

@media(max-height:890px) {
    #SurveySummaryContent {
        height: 90vh;
    }
}

.edit-commercial-survey-name-div {
    margin-bottom: 0;
    max-width: 300px;
    position: relative;
}

    .edit-commercial-survey-name-div > input[type=text] {
        padding-right: 42.5px;
    }

.edit-commercial-survey-name-icon {
    position: absolute;
    top: 2px;
    right: 2px;
    z-index: 1;
    height: 30px;
    width: 30px;
}

    .edit-commercial-survey-name-icon img {
        display: block;
        height: 20px;
        width: 20px;
        margin-top: 5px;
        margin-right: 5px;
    }

.click-to-update-survey-name {
    cursor: pointer;
}

.show-loading-when-save-update {
    display: block;
    position: absolute;
    top: 2px;
    right: -32px;
    height: 30px;
    width: 30px;
    display: none;
}

    .show-loading-when-save-update img {
        display: block;
        height: 30px;
        width: 30px;
        margin: 0;
    }
.selectedPsychographicQuestion {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
}
.selectedPsychographicQuestion p {
    padding-left: 15px;
}
.psycho-header-div {
    float: left;
    margin-bottom: 15px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.checkBoxDataItem {
    word-break: break-word;
}
.removePsychographic {
    margin-left: 15px;
}
#btnAddPsychographic {
    background: #8C37F6;
    border: 1px solid #8C37F6;
    box-sizing: border-box;
}