/***************************/
/*      BUTTONS            */
/***************************/

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    src: local('Nunito Regular'), local('Nunito-Regular'), url(https://fonts.gstatic.com/s/nunito/v8/cSNs3NwpEgPVRQzvkh3NeQ.woff2) format('woff2'),
    url('fonts/nunito-v8-latin-regular.woff') format('woff');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/CWB0XYA8bzo0kSThX0UTuA.woff2) format('woff2'),
    url('fonts/roboto-v16-latin-regular.woff') format('woff');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
@font-face {
    font-family: 'NunitoBold';
    font-style: normal;
    font-weight: 900;
    src: local('Nunito Black'), local('Nunito-Black'), url(https://fonts.gstatic.com/s/nunito/v8/Cj2facSP9LFhbctU5GJ2WFtXRa8TVwTICgirnJhmVJw.woff2) format('woff2'),
    url('fonts/nunito-v8-latin-900.woff') format('woff');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}

body *{
    font-family: 'Nunito';
}

button{
    border-radius: 4px;
    color: white;
    border: none;
    vertical-align: middle;
    font-size: 12px;
    cursor: pointer;
    margin: 5px;
    /*font-weight: bold;*/
    /*font-family: 'Nunito';*/
    background-color: transparent;
    text-align: center;
}

button a {
    color: white!important;
}

.button-primary {
    background-color: #f10f73;
}

.button-primary:hover {
    background-color: #fee8f1;
    color:#f10f73;
}

.button-primary:active {
    background-color: #f10f73;
    box-shadow: inset 0 1px 0 0 #61c3a8;
}

.button-info {
    background-color: #f10f73;
}

.button-info:hover {
    background-color: #fee8f1;
    color:#f10f73;
}

.button-info:active {
    background-color: #f10f73;
    box-shadow: inset 0 1px 0 0 #55a2be;
}

.button-success {
    background-color: #97cd7d;
}

.button-success:hover {
    background-color: #c1e1b1;
}

.button-success:active {
    background-color: #72b456;
    box-shadow: inset 0 1px 0 0 #97cd7d;
}

.button-secondary {
    background-color: #f2c500;
}

.button-secondary:hover {
    background-color: #f7dc66;
}

.button-secondary:active {
    background-color: #eaa900;
    box-shadow: inset 0 1px 0 0 #f2c500;
}

.button-error {
    background-color: #f1665d;
}

.button-error:hover {
    background-color: #f7a39e;
}

.button-error:active {
    background-color: #e94139;
    box-shadow: inset 0 1px 0 0 #f1665d;
}

.button-inverted {
    background-color: #4c4946;
}

.button-inverted:hover {
    background-color: #949290;
}

.button-inverted:active {
    background-color: #2c2927;
    box-shadow: inset 0 1px 0 0 #4c4946;
}

.button-disabled {
    background-color: #dbd9d6;
}

/*.button-disabled:active {*/
    /*box-shadow: inset 0 1px 0 0 #dbd9d6;*/
/*}*/

/***************************/
/*      GHOST BUTTONS      */
/***************************/

.ghostButton-primary {
    border: solid 1px #61c3a8;
    color: #61c3a8;
}

.ghostButton-primary:hover {
    background-color: #9edccb;
    color: white;
}

.ghostButton-primary:active {
    background-color: #29b595;
    box-shadow: inset 0 1px 0 0 #29b595;
    color: white;
}

.ghostButton-info {
    border: solid 1px #34c0cc;
    color: #34c0cc;
}

.ghostButton-info:hover {
    background-color: #85d9e0;
    border: solid 1px #34c0cc;
    color: white;
}

.ghostButton-info:active {
    background-color: #1ba4b4;
    box-shadow: inset 0 1px 0 0 #55a2be;
    color: white;
}

.ghostButton-success {
    border: solid 1px #97cd7d;
    color: #97cd7d;
}

.ghostButton-success:hover {
    background-color: #c1e1b1;
    border: solid 1px #72b456;
    color: white;
}

.ghostButton-success:active {
    background-color: #72b456;
    box-shadow: inset 0 1px 0 0 #97cd7d;
    color: white;
}

.ghostButton-secondary {
    border: solid 1px #f2c500;
    color: #f2c500;
}

.ghostButton-secondary:hover {
    background-color: #f7dc66;
    border: solid 1px #f2c500;
    color: white;
}

.ghostButton-secondary:active {
    background-color: #eaa900;
    box-shadow: inset 0 1px 0 0 #f2c500;
    color: white;
}

.ghostButton-error {
    border-radius: 4px;
    border: solid 1px #f1665d;
    color: #f1665d;
}

.ghostButton-error:hover {
    background-color: #f7a39e;
    border: solid 1px #f1665d;
    color: white;
}

.ghostButton-error:active {
    background-color: #e94139;
    box-shadow: inset 0 1px 0 0 #f1665d;
    color: white;
}

.ghostButton-inverted {
    border: solid 1px #4c4946;
    color: #4c4946;
}

.ghostButton-inverted:hover {
    background-color: #949290;
    border: solid 1px #4c4946;
    color: white;
}

.ghostButton-inverted:active {
    background-color: #2c2927;
    border: solid 1px #2c2927;
    color: white;
}

.ghostButton[disabled] {
    border: solid 1px #dbd9d6;
    color: #dbd9d6;
}

/***************************/
/*      BUTTON SIZES       */
/***************************/

/*TAGS???*/

.tag {
    border-radius: 30px;
    background-color: rgba(42, 214, 210, 0.1);
    border: solid 1px #2bd6d2;
    padding: 0 10px 0 10px;
    margin: 2px 0;
    display: inline-block;
    font-size: 14px;
    font-weight: normal;
    /*height:33px;*/
    line-height: 33px;
    color: #2bd6d2!important;
    position: relative;

}

.bootstrap-tagsinput input[type=text] {
    margin-top: 7px;
}

#questionModal .bootstrap-tagsinput input[type=text] {
    margin-top: 0;
}

#questionModal .bootstrap-tagsinput {
    padding-top: 0;
}

/*.tag:before {*/
    /*font-family: FontAwesome;*/
    /*content: "\f00d";*/
    /*position: absolute;*/
    /*right: 5px;*/
    /*top: -13px;*/
/*}*/

.button-tiny {
    width: 128px;
    height: 32px;
    font-size: 16px;

}

.button-regular {
    min-width: 128px;
    height: 40px;
    font-weight: bold;
    font-size: 14px;
}

.button-large {
    min-width: 128px;
    height: 48px;
    font-size: 20px;
    font-weight: bold;
}

.button-xlarge {
    width: 136px;
    height: 56px;
    font-size: 20px;
    font-weight: bold;
}

/***************************/
/*        INPUTS           */
/***************************/

.input-width {
    width: 280px;
}

input[type=text], input[type=email],  input[type=url], .fancyInput {
    height: 40px;
    border-radius: 4px;
    box-shadow: inset 0 2px 2px 0 #e6e6e6;
    border: solid 1px #dbd9d6;
    padding-left: 16px;
    font-size: 16px;
    color: #635d58;
}

.fancyInput {
    max-width: 300px;
}

input[type=password] {
    height: 40px;
    border-radius: 4px;
    letter-spacing: 10px;
    box-shadow: inset 0 2px 2px 0 #e6e6e6;
    border: solid 1px #dbd9d6;
    padding-left: 16px;
    font-size: 16px;
    color: #635d58;
}

input[type=password]:-moz-placeholder {
    color: #9e9da0;
    font-size: 16px;
    letter-spacing: normal;
}
input[type=password]::-moz-placeholder {
    color: #9e9da0;
    letter-spacing: normal;
    font-size: 16px;
}
input[type=password]:-ms-input-placeholder {
    color: #9e9da0;
    letter-spacing: normal;
    font-size: 16px;
}
input[type=password]::-webkit-input-placeholder {
    color: #9e9da0;
    letter-spacing: normal;
    font-size: 16px;
}



input[type=text]:hover {
    box-shadow: inset 0 2px 2px 0 #e6e6e6;
    border: solid 1px #9e9da0;
}

input[type=text]:-moz-placeholder {
    color: #9e9da0;
    font-size: 16px;
}
input[type=text]::-moz-placeholder {
    color: #9e9da0;
    font-size: 16px;
}
input[type=text]:-ms-input-placeholder {
    color: #9e9da0;
    font-size: 16px;
}
input[type=text]::-webkit-input-placeholder {
    color: #9e9da0;
    font-size: 16px;
}

input[type=text]:hover {
    color: #9e9da0;
}

input[type=text]:valid {
    box-shadow: inset 0 2px 2px 0 #e6e6e6;
    border: solid 1px #9e9da0;
}


input[type=text]:active {
    box-shadow: inset 0 2px 2px 0 #e6e6e6;
    border: solid 1px #34c0cc;
    color: #635d58;
}

.search-left {
    background: url(mag.PNG) 14px 12px no-repeat;
    padding-left: 42px!important;
}

.search-right {
    background: url(mag.PNG) 93% center no-repeat;
}

.search-black {
    background: url(blackmag.PNG) 100% center no-repeat;
    padding: 0 0 0 16px;
}

.input-star {
    background: url(star.PNG) 98% 16% no-repeat;
}

.input[disabled]{
    background-color: #f2f2f2;
    box-shadow: inset 0 2px 2px 0 #e6e6e6;
    border: solid 1px #dbd9d6;

}

.input-success {
    box-shadow: inset 0 2px 2px 0 #e6e6e6!important;
    border: solid 1px #1fce6d!important;
    color: #1fce6d!important;
    background: url(tick.PNG) 93% center no-repeat;
}

.input-warning {
    box-shadow: inset 0 2px 2px 0 #e6e6e6!important;
    border: solid 1px #f2a500!important;
    color: #f2a500!important;
}

.input-error {
    box-shadow: inset 0 2px 2px 0 #e6e6e6!important;
    border: solid 1px #f1665d!important;
    color: #f1665d!important;
}

/***************************/
/*      CHECKBOXES         */
/***************************/



.checkbox, .radio, .radioSquareSwitch, .radioTextSwitch, .radioToggleSwitch {
    opacity: 0;
    position: absolute;
}


.checkbox, .checkboxLabel, .radio, .radioLabel, .radioSquareSwitch, .radioSquareLabel, .radioTextSwitch, .radioTextLabel, .radioToggleSwitch, .radioToggleLabel {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}

.radioTextLabel {
    font-size: 16px;
    text-align: center;
    color: #9e9da0;
    line-height: 40px;
    position: relative;
}

.radioTextSwitch, .radioTextLabel {
    width: 160px;
    height: 40px;
}

.checkboxLabel, .radioLabel, .radioSquareLabel {
    position: relative;
    font-size: 12px;
    letter-spacing: 0.9px;
    color: #a8a8a8;
}

.radioSquareSwitch + .radioSquareLabel {
    width: 40px;
    height: 40px;
    background-color: white;
}

.hori-square-switches label, .hori-text-switches label, .vert-square-switches label {
    border: solid 1px #dbd9d6;
}

.hori-square-switches label:first-of-type, .hori-text-switches label:first-of-type {
    border-radius: 4px 0 0 4px;

}

.radioToggleLabel:before {
    content: url('/images/switch-on.png');
}

.radioToggleSwitch:checked +.radioToggleLabel:before {
    content: url('/images/switch-off.png');
}

.hori-square-switches label:first-of-type:before {
    content: url('/images/leftsquares.PNG');
    position: relative;
    top: 12px;
    left:12px;
    text-align: center;
}

.hori-square-switches label:nth-of-type(2):before {
    content: url('/images/middlesquares.PNG');
    position: relative;
    top: 12px;
    left:12px;
    text-align: center;
}

.hori-square-switches label:last-of-type:before {
    content: url('/images/rightsquares.PNG');
    position: relative;
    top: 12px;
    left:12px;
    text-align: center;
}

.hori-square-switches label:last-of-type, .hori-text-switches label:last-of-type {
    border-radius: 0 4px 4px 0;
}

.vert-square-switches label:first-of-type, .vert-text-switches label:first-of-type  {
    border-radius: 4px 4px 0 0;
}

.vert-square-switches label:last-of-type, .vert-text-switches label:last-of-type  {
    border-radius: 0 0 4px 4px;
}

.displayBy .dk-select {
    width:170px;
}

.uploadImgBox {
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.radioTextSwitch:checked + .radioTextLabel {
    box-shadow: inset 0 2px 0 0 #b4b8b7;
    background-color: #f2f2f2;
}

.radioSquareSwitch:checked + .radioSquareLabel {
    width: 40px;
    height: 40px;
    box-shadow: inset 0 2px 0 0 #b4b8b7;
    background-color: #f2f2f2;
}

.checkbox + .checkboxLabel:before {
    content: url('/images/unchecked.PNG');
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.checkbox:checked + .checkboxLabel:before {
    content: url('/images/checked.PNG');
}

.smallCheckbox + .checkboxLabel:before {
    content: url('/images/smallunchecked.PNG');
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.smallCheckbox:checked + .checkboxLabel:before {
    content: url('/images/smallchecked.PNG');
}



.radio + .radioLabel:before {
    content: url('/images/unradioed.PNG');
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.radio:checked + .radioLabel:before {
    content: url('/images/radioed.PNG');
}
.vert-square-switches .radioSquareLabel, .vert-text-switches .radioTextLabel {
    display: block!important;
}


textarea {
    width: 636px;
    height: 96px;
    border-radius: 4px;
    background-color: #ffffff;
    box-shadow: inset 0 2px 2px 0 #e6e6e6;
    border: solid 1px #dbd9d6;
}



/***************************/
/*       DROPDOWNS         */
/***************************/

/*select {*/
    /*width: 200px;*/
    /*height: 40px;*/
    /*border-radius: 4px;*/
    /*background-color: #ffffff;*/
    /*box-shadow: inset 0 2px 2px 0 #e6e6e6;*/
    /*border: solid 1px #dbd9d6;*/
    /*font-size: 16px;*/
    /*font-weight: bold;*/
    /*color: #9e9da0;*/
    /*padding-left: 8px;*/
/*}*/

/*select:hover {*/
    /*border: solid 1px #9e9da0;*/
/*}*/

/*option {*/
    /*height:40px!important;*/
    /*!*line-height: 40px!important;*!*/
    /*!*padding-left: 8px;*!*/
/*}*/

/*option:hover, option:checked {*/
    /*box-shadow: 0 0 10px 100px #34c0cc inset;*/
    /*color: white;*/
/*}*/

.fakeDrop, .fakeDrop ul {
    list-style: none;
    padding: 0;
}

.fakeDrop ul li:hover {
    background-color: #34c0cc;
    cursor: pointer;
}

.fakeDrop ul li:hover  {
    color: white;
}

.fakeDropTop ul a li:hover  {
    color: white;
}

.fakeDrop ul {
     display: none;
    position: relative;
    z-index: 200;

 }
.fakeDrop ul li {
    width: 200px;
    font-size: 16px;
    font-weight: bold;
    color: #9e9da0;
    border: solid 1px #b4b8b7!important;
    border-top: 0!important;
    height:40px!important;
    line-height: 40px!important;
    padding-left: 8px;
    background-color: white;
    /*padding: 5px 50px 5px 20px!important;*/
    padding-right: 3.5em!important;
    /*border-radius: 0.4em;*/
}
.fakeDrop.filter {
    position: relative;
    margin: 5px;
}

.fakeDrop.filter.heat{
    margin: 0 10px 0 0;
}

.fakeDrop.filter li ul {
    position: absolute;
    top:40px;
}
.fakeDrop.filter ul li {
    padding-right: 10px!important;

}
.fakeDrop.filter ul li:hover a {
    color: white;
}

.fakeDrop ul li a {
    color: #9e9da0;
}

#daterange input {
    margin: 5px;
    max-width: 150px;
}

.fakeDrop ul a:last-child li, .fakeDrop ul .super:last-child li{
    border-radius: 0 0 0.4em 0.4em;
}

.npsDis li {
    color:#b7b5ba!important;
}

.headerRight .fakeDrop li ul a li  {
    border-radius: 0;
}

.headerRight .fakeDrop li ul a:last-child li{
    border-radius: 0 0 0.4em 0.4em;
}
/*.fakeDropTop ul a li:last-child {*/
    /*border-radius: 0 0 0.4em 0.4em;*/
/*}*/

.fakeDropTop {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    width: 200px;
    cursor: pointer;
    color: #9e9da0;
    height:40px!important;
    line-height: 40px!important;
    padding-left: 8px;
    /*padding: 5px 50px 5px 20px!important;*/
    padding-right: 3.5em!important;
    border-radius: 0.4em;
    border: 1px solid #b4b8b7 !important;
}

.fakeDropTop:hover {
    border-radius: 0.4em 0.4em 0 0;

}

.fakeDrop:hover li ul {
    display: block;
}

.fakeDropTop:before {
    font-family: FontAwesome;
    font-size: 30px!important;
    content: "\f107"!important;
    top: 5%!important;
    border: none!important;
    position: absolute;
    right:13px
    /*margin: 0; */
}

.fakeDrop:hover .fakeDropTop:before {
    content: "\f106"!important;
}

.fakeDrop:hover .fakeDropTop {
    border-radius: 0.4em 0.4em 0 0;
}



.perPage .dk-select {
    min-width: inherit;
}

img {
    vertical-align: middle;
}

.dk-selected {
    max-width: 300px;
    font-size: 16px;
    font-weight: bold;
    color: #9e9da0;
    border: solid 1px #b4b8b7!important;
    height:40px!important;
    line-height: 40px!important;
    padding-left: 8px;
    padding-right: 3.5em!important;
}

.dk-selected:hover {

    color: #9e9da0!important;
}

.dk-selected:after {
    border-left:none!important;
}


.dk-select-open-down .dk-select-options {
    border: solid 1px #b4b8b7!important;
    border-top: none!important;
}

.dk-select-open-up .dk-select-options {
    border: solid 1px #b4b8b7!important;
}

.dk-option {
    font-size: 16px;
    font-weight: bold;
    color: #635d58;
    min-height:40px!important;
    line-height: 40px!important;
    padding-left: 8px;
}


.dk-option-selected {
    background-color: white!important;
    color: #635d58!important;
}

.dk-option-highlight {
    background-color: #f10f73!important;
    color: white!important;
}

.previewLogo img {
    max-width: 100%;
    max-height: 200px;
    margin: 0 auto;
    display: block;
}

.flexImg {
    display:block;
    height:200px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: -ms-flexbox;
    -ms-flex-align: center;
    -ms-flex-pack: center;
}

.previewLogo {

}

.dk-selected:before {
    font-family: FontAwesome;
    font-size: 30px!important;
    content: "\f107"!important;
    top: 11%!important;
    border: none!important;
    /*margin: 0; */
}

tr .logo .client-logo {
    max-width: 96px;
}
.ui-spinner {
    position: relative;
    margin-left: 5px;
}

.ui-spinner-up, .ui-spinner-down {
    background-color: white!important;
    width:20px;
    position: absolute;
}
.ui-spinner-up {
    top:0;
}
.ui-spinner-down {
    bottom: 0;
}

.ui-spinner-up:before {
    font-family: FontAwesome;
    text-indent: 0;
    font-size: 14px!important;
    /*content: url('/images/leftArrow.PNG');*/
    content: "\f106"!important;
    color: #71737b;
    top:-10px;
    width:18px;
    height: 18px;
    position: absolute;
    left:2px;
}

.ui-spinner-input {
    border: none;
    background: none;
    height: 1em;
    width: 30px;
    position: absolute;
    top: 8px;
    color: inherit;
    padding: 0;
}

.picker__button--today, .picker__button--clear, .picker__button--close {
    color:black;
}

blockquote {
    border-left: none;
    font-size: 14px;
}

.ui-spinner-down:before {
    font-family: FontAwesome;
    text-indent: 0;
    font-size: 14px!important;
    content: "\f107"!important;
    color: #71737b;
    position: absolute;
    width:18px;
    height: 18px;
    left:2px;
    top:-9px;

}

.ui-spinner-up {
    border-bottom: solid 1px #dbd9d6!important;
}

.ui-spinner {
    width: 66px;
    padding-left: 5px;
    height: 40px;
    border-radius: 4px;
    line-height: 40px;
    background-color: #ffffff;
    border: solid 1px #dbd9d6;
}

.ui-spinner .ui-icon-triangle-1-n {
    display: none;
}

.dk-select-open-down .dk-selected:before {
    content: "\f106"!important;
}

/*div.tooltip[aria-hidden="true"]*/
.dk-selected[aria-activedescendant] {
    color: #635d58!important;
}
.dk-selected[disabled] {
    box-shadow: inset 0 2px 2px 0 #e6e6e6;
    border: solid 1px #dbd9d6;
}
.ui-button-icon-only {
    text-indent: 0!important;
}

/*.dk-select-open-down .dk-selected:after {*/
    /*font-family: FontAwesome;*/
    /*font-size: 30px!important;*/
    /*content: "\f106"!important;*/
    /*top: 11%!important;*/
    /**/
    /*border: none!important;*/
    /*margin: 0; }*/
/*.dk-select-open-down .dk-selected:before {*/
    /*content:''!important;*/
/*}*/



/***************************/
/*      NOTIFICATIONS      */
/***************************/

.notif-width {
    width: 580px;
}

.notif-success {
    border-radius: 4px;
    background-color: rgba(0, 194, 79, 0.1);
    box-shadow: inset 0 2px 2px 0 #e6e6e6;
    border: solid 1px #1fce6d;
    font-size: 16px;
    padding: 8px 30px 8px 50px;
    color: #1fce6d;
    cursor:pointer;
    background-image: url('/images/green-tick.PNG'), url('/images/green-cross.PNG');
    background-position: 16px center, 98% center;
    background-repeat: no-repeat, no-repeat;
}

.notif-error {
    border-radius: 4px;
    background-color: rgba(229, 173, 171, 0.1);
    border: solid 1px #f1665d;
    font-size: 16px;
    cursor:pointer;
    padding: 8px 30px 8px 50px;
    color: #eb4e4b;
    background-image: url('/images/red-tick.PNG'), url('/images/red-cross.PNG');
    background-position: 8px center, 98% center;
    background-repeat: no-repeat, no-repeat;
}

.questionBlock .notif-error, .questionBlock .notif-warning {
    margin: 2px 0;
}

.notif-info {
    border-radius: 4px;
    background-color: rgba(51, 191, 204, 0.1);
    border: solid 1px #34c0cc;
    font-size: 16px;
    padding: 8px 30px 8px 50px;
    color: #4691b0;
    cursor:pointer;
    background-image: url('/images/blue-tick.PNG'), url('/images/blue-cross.PNG');
    background-position: 8px center, 98% center;
    background-repeat: no-repeat, no-repeat;
}

.notif-warning {
    border-radius: 4px;
    cursor:pointer;
    background-color: rgba(242, 165, 0, 0.1);
    border: solid 1px #f2a600;
    font-size: 16px;
    padding: 8px 30px 8px 50px;
    color: #f2a500;
    background-image: url('/images/yellow-tick.PNG'), url('/images/yellow-cross.PNG');
    background-position: 8px center, 98% center;
    background-repeat: no-repeat, no-repeat;
}

.notif {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    font-size: 24px;
    font-weight: bold;
    color: white;
    line-height: 56px;
    text-align: center;
    display: inline-block;
}

.questionMiddle .notif {
    display: block;
    /*float: right;*/
    margin: 10px auto;
    /*margin-top: 17px;*/
}
.subQuestionBlock .notif, .parent .notif  {
    /*display: block;*/
    float: right;
    /*margin: 10px auto;*/
    margin-top: 3px;
}

.fieldDescript {
    font-size: 12px;
    margin-top: 10px;
}

.moveQuestion {
    position: absolute;
    right: 10px;
    z-index: 10;
    top: 9px;
}

.rightMoveQuestion {
    left: 10px;
    right: auto;
}

.question .question .moveQuestion {
    display: none;
}

.half-notif {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    line-height: 46px;
    text-align: center;
    display: inline-block;
    background-color: #ffffff;
    color: #4c4946;
    font-size: 24px;
    font-weight: bold;
    border: solid 5px;
}

.rating_0, .zero, .darkRed {
    background-color: #e94139;
}

.rating_1, .rating_1_0, .rating_1_1, .rating_1_2, .rating_1_3, .rating_1_4, .rating_1_5, .rating_1_6, .rating_1_7, .rating_1_8, .rating_1_9, .one, .red {
    background-color: #f1665d;
}

.rating_2, .rating_2_0, .rating_2_1, .rating_2_2, .rating_2_3, .rating_2_4, .rating_2_5, .rating_2_6, .rating_2_7, .rating_2_8, .rating_2_9, .two, .maroon {
    background-color: #d47675;
}

.rating_3, .rating_3_0, .rating_3_1, .rating_3_2, .rating_3_3, .rating_3_4, .rating_3_5, .rating_3_6, .rating_3_7, .rating_3_8, .rating_3_9, .three, .grey {
    background-color: #948a98;
}

.rating_4, .rating_4_0,  .rating_4_1, .rating_4_2, .rating_4_3, .rating_4_4, .rating_4_5, .rating_4_6, .rating_4_7, .rating_4_8, .rating_4_9, .four, .darkBlue {
    background-color: #55a2be;
}

.rating_5, .rating_5_0, .rating_5_1, .rating_5_2, .rating_5_3, .rating_5_4, .rating_5_5, .rating_5_6, .rating_5_7, .rating_5_8, .rating_5_9, .five, .neonBlue {
    background-color: #2bd6d2;
}

.rating_6, .rating_6_0, .rating_6_1, .rating_6_2, .rating_6_3, .rating_6_4, .rating_6_5, .rating_6_6, .rating_6_7, .rating_6_8, .rating_6_9, .six, .blue {
    background-color: #34c0cc;
}

.rating_7, .rating_7_0, .rating_7_1, .rating_7_2, .rating_7_3, .rating_7_4, .rating_7_5, .rating_7_6, .rating_7_7, .rating_7_8, .rating_7_9, .seven, .blueGreen {
    background-color: #34c0cc;
}

.rating_8, .rating_8_0, .rating_8_1, .rating_8_2, .rating_8_3, .rating_8_4, .rating_8_5, .rating_8_6, .rating_8_7, .rating_8_8, .rating_8_9, .eight, .green {
    background-color: #97cd7d;
}

.rating_9, .rating_9_0, .rating_9_1, .rating_9_2, .rating_9_3, .rating_9_4, .rating_9_5, .rating_9_6, .rating_9_7, .rating_9_8, .rating_9_9, .nine, .greenYellow {
    background-color: #d5d950;
}

.rating_10,.rating_10_0, .ten, .yellow {
    background-color: #f2c500;
}

.oneHalf {
    border-color: #f1665d;
}

.twoHalf {
    border-color: #d47675;
}

.threeHalf {
    border-color: #948a98;
}

.fourHalf {
    border-color: #55a2be;
}

.fiveHalf {
    border-color: #2bd6d2;
}

.sixHalf {
    border-color: #34c0cc;
}

.sevenHalf {
    border-color: #61c3a8;
}

.eightHalf {
    border-color: #97cd7d;
}

.nineHalf {
    border-color: #d5d950;
}

/***************************/
/*        PROGRESS         */
/***************************/

.progressOuter {
    /*width: 280px;*/
    width: 100%;
    height: 48px;
    display: block;
    background-color: #f2f2f2;
    position: relative;
    margin: 10px auto;
}

.progressInner {
    height: 48px;
    position: absolute;
    left:0;
}

.progressPer {
    position: absolute;
    right: 15px;
    top:15px;
    font-size: 12px;
    font-weight: bold;
    color: #5c5c5c;
    font-family: Roboto, sans-serif;
}

.statNo .bold {
    font-family: NunitoBold, sans-serif;
}

.statBox {
    padding: 20px;
    text-align: center;
    display: inline-block;
    margin-top: -30px;
}

.statNo {
    font-family: Nunito, sans-serif;
    font-size: 36px;
    color: #5c5c5c;
    margin-bottom: 10px;
}

.statBlurb {
    font-family: Roboto, sans-serif;
    font-size: 12px;
    line-height: 1.67;
    color: #999999;
}


/***************************/
/*         SLIDERS         */
/***************************/

.sliderContainer {
    height: 20px;
    width: 280px;
    position: relative;
}

.sliderOuter {
    width: 100%;

    border: none!important;
    border-radius: 0;
    height: 8px;
    /*position: absolute;*/
    top: 6px;
    left:0;
    display: inline-block;
    background-color: #f2f2f2;
}

.subQuestionBlock .sliderOuter, .parent .sliderOuter {
    width: 68%;
}

.sliderInner {
    height: 8px;
    position: absolute;
    background-color: #61c3a8;
}

.sliderCircle {
    /*width: 12px!important;*/
    /*height: 12px!important;*/
    background-color: #61c3a8!important;
    border: 5px solid #f2f2f2!important;
    box-shadow: 0 2px 4px 0 #dbd9d6;
    position: absolute!important;
    /*top:0!important;*/
    border-radius: 22px!important;
}

.sliderCircle:focus {
    outline:0;
}





/***************************/
/*         FONTS           */
/***************************/

h1 {
    font-family: Nunito;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    color: #4c4946;
}

h2 {
    font-family: Nunito;
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    color: #4c4946;
}

h3 {
    font-family: Nunito;
    font-size: 16px;
    font-weight: bold;
    color: #4c4946;
}

h4 {
    font-family: Nunito;
    font-size: 16px;
    color: #4c4946;
}

h5 {
    font-family: Nunito;
    font-size: 14px;
    color: #4c4946;
}

p {
    font-family: Roboto;
    font-size: 14px;
    color: #4c4946;
}

.smallText {
    font-family: Roboto;
    font-size: 12px;
    color: #4c4946;
}

.miniText {
    font-family: Roboto;
    font-size: 10px;
    color: #4c4946;
}

.greyText {
    color: #9e9da0;
}

.blueText {
    color: #55a2be;
}

.greenText {
    color: #1fce6d;
}

.redText {
    color: #f1665d;
}

.yellowText {
    color: #f2a500;
}

.whiteText {
    color: #ffffff;
}


.toolTipLeft, .toolTipRight {
    width: 128px;
    height: 32px;
    font-size: 14px;
    line-height: 32px;
    text-align: center;
    color: #ffffff;
    border-radius: 4px;
    position: relative;
}

.toolTipUp, .toolTipDown {
    width: 118px;
    height: 43px;
    font-size: 14px;
    line-height: 32px;
    text-align: center;
    color: #ffffff;
    border-radius: 4px;
    position: relative;
}

.toolTipLeft:before {
    content: url('/images/leftArrow.PNG');
    position: absolute;
    left: 0;
    top: 1px;
}

.toolTipRight:before {
    content: url('/images/rightArrow.PNG');
    position: absolute;
    right: 0;
    top: 1px;
}

.toolTipUp:before {
    content: url('/images/upArrow.PNG');
    position: absolute;
    top: -9px;
    left: 50px;
}
.toolTipDown:before {
    content: url('/images/downArrow.PNG');
    position: absolute;
    bottom: -11px;
    left: 50px;
}

.toolTipText {
    position: absolute;
    background-color: #4c4946;
    width: 118px;
    border-radius: 4px;
    height: 32px;
    line-height: 32px;
}

.toolTipLeft .toolTipText {
    right:0;
}

.toolTipRight .toolTipText {
    left:0;
}

.toolTipUp .toolTipText {
    bottom: 0;
}

.toolTipDown .toolTipText {
    top:0;
}

.guageBox {
    position: relative;
    width: 257px;
    display: block;
    margin: 0 auto;
}

.guageBlurb {
    text-align: center;
    margin-top: 20px;
}

.npsAmount {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 16pt;
    font-weight: 900;
    color: black;
    top: 181px;
}

.scaleNo {
    position: absolute;
    bottom: 30px;
    font-size: 11px;
    font-weight: bold;
}

.scaleNo.left {
    left: 67px
}

.scaleNo.right {
    right: 67px;
}

.pointer {
    position: absolute;
    background-image: url('/images/pointer.PNG');
    width: 14px;
    height: 83px;
    top: 55px;
    left:123px;
    -webkit-transform-origin: 7px 78px;
    transform-origin: 7px 76px;
    -webkit-animation-duration: 4s; /* Safari 4.0 - 8.0 */
    animation-duration: 4s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

#password {
    margin-bottom: 35px;
}


.rotate1 {
    -webkit-transform: rotate(-138deg);
    transform: rotate(-138deg);
}

/*35*/

.rotate2 {
    -webkit-transform: rotate(-108deg);
    transform: rotate(-108deg);
}
#aniid2 {
    -webkit-animation-name: example2; /* Safari 4.0 - 8.0 */
    animation-name: example2;
}

@-webkit-keyframes example2 {
    from {-webkit-transform: rotate(-138deg)}
    to {-webkit-transform: rotate(-108deg)}
}

@keyframes example2 {
    from {transform: rotate(-138deg)}
    to {transform: rotate(-108deg)}
}

.rotate3 {
    -webkit-transform: rotate(-78deg);
    transform: rotate(-78deg);
}
#aniid3 {
    -webkit-animation-name: example3; /* Safari 4.0 - 8.0 */
    animation-name: example3;
}

@-webkit-keyframes example3 {
    from {-webkit-transform: rotate(-138deg)}
    to {-webkit-transform: rotate(-78deg)}
}

@keyframes example3 {
    from {transform: rotate(-138deg)}
    to {transform: rotate(-78deg)}
}

.rotate4 {
   -webkit-transform: rotate(-50deg);
   transform: rotate(-50deg);
}
#aniid4 {
    -webkit-animation-name: example4; /* Safari 4.0 - 8.0 */
    animation-name: example4;
}

@-webkit-keyframes example4 {
    from {-webkit-transform: rotate(-138deg)}
    to {-webkit-transform: rotate(-50deg)}
}

@keyframes example4 {
    from {transform: rotate(-138deg)}
    to {transform: rotate(-50deg)}
}

.rotate5 {
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);
}
#aniid5 {
    -webkit-animation-name: example5; /* Safari 4.0 - 8.0 */
    animation-name: example5;
}

@-webkit-keyframes example5 {
    from {-webkit-transform: rotate(-138deg)}
    to {-webkit-transform: rotate(-20deg)}
}

@keyframes example5 {
    from {transform: rotate(-138deg)}
    to {transform: rotate(-20deg)}
}

.rotate6 {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
}
#aniid6 {
    -webkit-animation-name: example6; /* Safari 4.0 - 8.0 */
    animation-name: example6;
}

@-webkit-keyframes example6 {
    from {-webkit-transform: rotate(-138deg)}
    to {-webkit-transform: rotate(10deg)}
}

@keyframes example6 {
    from {transform: rotate(-138deg)}
    to {transform: rotate(10deg)}
}

.rotate7 {
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
}
#aniid7 {
    -webkit-animation-name: example7; /* Safari 4.0 - 8.0 */
    animation-name: example7;
}

@-webkit-keyframes example7 {
    from {-webkit-transform: rotate(-138deg)}
    to {-webkit-transform: rotate(40deg)}
}

@keyframes example7 {
    from {transform: rotate(-138deg)}
    to {transform: rotate(40deg)}
}

.rotate8 {
    -webkit-transform: rotate(70deg);
    transform: rotate(70deg);
}
#aniid8 {
    -webkit-animation-name: example8; /* Safari 4.0 - 8.0 */
    animation-name: example8;
}

@-webkit-keyframes example8 {
    from {-webkit-transform: rotate(-138deg)}
    to {-webkit-transform: rotate(70deg)}
}

@keyframes example8 {
    from {transform: rotate(-138deg)}
    to {transform: rotate(70deg)}
}

.rotate9 {
    -webkit-transform: rotate(100deg);
    transform: rotate(100deg);
}
#aniid9 {
    -webkit-animation-name: example9; /* Safari 4.0 - 8.0 */
    animation-name: example9;
}

@-webkit-keyframes example9 {
    from {-webkit-transform: rotate(-138deg)}
    to {-webkit-transform: rotate(100deg)}
}

@keyframes example9 {
    from {transform: rotate(-138deg)}
    to {transform: rotate(100deg)}
}

.rotate10 {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
}

#aniid10 {
    -webkit-animation-name: example10; /* Safari 4.0 - 8.0 */
    animation-name: example10;
}

@-webkit-keyframes example10 {
    from {-webkit-transform: rotate(-138deg)}
    to {-webkit-transform: rotate(130deg)}
}

@keyframes example10 {
    from {transform: rotate(-138deg)}
    to {transform: rotate(130deg)}
}




/***************************/
/*         LOGIN           */
/***************************/

.loginOutside {
    text-align: center;
}

.loginBox {
    max-width: 420px;
    text-align: left;
    /*height: 523px;*/
    display: block;
    margin: 10px auto 20px auto;
    border-radius: 16px;
    background-color: #ffffff;

    box-shadow: -1px 1px 50px 0 #ffaa17;
}

.loginContents {
    padding: 50px 75px 20px 75px;
}

.loginImage {
    text-shadow: 1px 1px 5px #ffaa17;
    width: 420px;
    display: block;

    padding-top:20px;
    margin: 100px auto 0 auto;
    text-align: left;
    line-height: 38px;
    font-size: 28px;
    font-weight: 900;
    font-family: NunitoBold, sans-serif;
    color: white;
}

.loginBox .button-xlarge {

    width: 100%;
}

.loginBox label {
    font-size: 14px;
    color: #9e9da0;
}

.loginLine {
    width: 283px;
    height: 1px;
    opacity: 0.26;
    /*border: solid 1px #979797;*/
    background-color: #979797;
    margin-bottom: 65px;
    margin-top: 20px;
}

.loginSecondary {
    display: block;
    text-align: center;
    line-height: 1.6;
    width: 275px;
    margin: 13px auto 0 auto;
}

.loginSecondary h2 {
    text-shadow: 1px 1px 5px #ffaa17;
    cursor: pointer;
}


.loginBox button, .loginBox input {
    margin: 25px 0;
}

input:focus {outline:0;}
/*.modal-dialog {*/
    /*width: 470px;*/
/*}*/

/**:focus, *:active {*/
    /*outline: none!important;*/
    /*box-shadow:none!important;*/
/*}*/

.modal-header {
    border-bottom: none;
}

.modal-body label {
    display: block!important;
    font-size: 14px;
    line-height: 1.71;
    color: #9e9da0;
}

.modal-body input {
    height: 56px;
    margin-bottom: 20px;
    width: 100%;
}

.modal-footer {
    border-top: 0;
}

.modal-footer button {
    /*padding: 17px 16px;*/
    /*font-size: 20px;*/
    /*height: 56px;*/
    /*width: 128px;*/
}
.currentFile {
    display:inline-block;
}
.btn-file {
    z-index:0;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0;
    border: 1px dashed #ccc;
    border-radius: 24px;
    height: 200px;
    background-color: transparent;
}
.btn-file:hover, .btn-file:active, .btn-file:focus {
    background-color:white!important;
    outline:0;
}
.btn-file input[type=file] {
    z-index: 1;
    background-color: transparent;
    color:white;
    font-size:0;
    position: absolute;
    bottom: 0;
    left: -93px;
    height: 100%;
    width: calc(100% + 200px);
}

.btn-file input[type="file"]::-ms-browse, .btn-file input[type="file"]::-ms-value {
    background-color: transparent;
    border: none;
}
.btn-file input[type="file"]::-ms-input-placeholder {
    background-color: transparent;
    border: none;
}

.btn-file input[type=file]:active, .btn-file input[type=file]:focus {
    background-color: transparent;
    outline:0;
}

.dragAndDrop {
    position: absolute;
    width: 100%;
    top: 90px;
    z-index: -1;
    font-family: Nunito;
    font-size: 16px;
    font-weight: bold;
    color: #b4b8b7!important;
}
.btn-file input[type=file]:hover .dragAndDrop{
    color:black!important;
}

.npstable {
    /*margin-top: 50px;*/
    width: 100%;
}

.grid-stack-item {
    background-color: white;
}

/*.npstable .row:nth-child(odd) .col-sm-4 {*/
    /*background-color: #bbe7ee;*/
    /*color: #448999;*/
    /*min-height: 50px;*/
    /*border: 1px solid white;*/
/*}*/

/*.npstable .row:nth-child(even) .col-sm-4 {*/
    /*background-color: #89d6e3;*/
    /*color: #448999;*/
    /*min-height: 50px;*/
    /*border: 1px solid white;*/
/*}*/

.npstable .row {
    /*background-color: #5a9ac0!important;*/
    /*color: white!important;*/
    min-height: 61px;
    border-bottom: 1px solid #d7d7d9;
    text-align: center;

}


@media screen and (min-width: 680px) {
    .subQuestionBlock .sliderOuter, .parent .sliderOuter {
        width: 86%;
    }
}

@media screen and (min-width: 990px) {
    .nopaddingsmall {
        padding-left: 0;
    }
}