@charset "UTF-8";

/* Essential font for icons */
@font-face {
    font-family: 'Glyphicons Halflings';
    src: url(/Content/Styles/font/glyphicons-halflings-regular.eot);
    src: url(/Content/Styles/font/glyphicons-halflings-regular.eot?#iefix) format("embedded-opentype"), 
         url(/Content/Styles/font/glyphicons-halflings-regular.woff2) format("woff2"), 
         url(/Content/Styles/font/glyphicons-halflings-regular.woff) format("woff"), 
         url(/Content/Styles/font/glyphicons-halflings-regular.ttf) format("truetype"), 
         url(/Content/Styles/font/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format("svg");
}

/* Basic form styling */
.feedback-form {
    background: transparent;
    font-size: 14px;
}

form#feedback-form {
    background: transparent;
    font-size: 14px;
}

/* Display utilities */
.display-none {
    display: none;
}

/* Messages */
.form-notification {
    color: green;
}

p.form-error, .form-error {
    color: red;
}

#feedback-questions .field-validation-error > span {
    color: red !important;
    display: block;
    margin-top: 5px;
    font-family: EvelethCleanRegular !important;
}
/* Form validation */
.field-validation-error,
.field-validation-error > span {
    color: red !important;
    display: block;
}

.field-validation-error .glyphicon {
    /* font-family: EvelethCleanRegular !important; */
    color: red !important;
}

/* Radio styling */
.radio-inline {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
    padding-left: 20px;
}


.center-reason {
    text-align: center;
}

.btn-scale {
    display: inline-block;
    margin: 0 2px;
    padding: 5px 10px;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: pointer;
}

.selectedscale {
    background-color: #0073aa;
    color: white;
    border-color: #006291;
}

/* Searchable stores list */
#searchable-stores-list {
    width: 100%;
    max-width: 280px;
    list-style: none;
    padding: 0;
    border: 1px solid #ccc;
    max-height: 300px;
    overflow-y: scroll;
    position: absolute;
    background: white;
    z-index: 999;
}

#searchable-stores-list li {
    padding: 10px 5px 5px 10px !important;
    cursor: pointer;
}

#searchable-stores-list li:hover {
    background: #0075ff;
    color: white;
}

/* Tooltip related */
.set-tooltip-order {
    position: absolute;
    right: 5px;
    top: 7px;
}

.order-id-container {
    position: relative;
}

.ui-tooltip {
    padding: 8px;
    position: absolute;
    max-width: 300px;
    background-color: #000;
    color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    z-index: 9999;
}

/* Datepicker styling - essential parts only */
.ui-datepicker {
    width: 17em;
    padding: 0.2em;
    display: none;
    background-color: white;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    z-index: 9999 !important;
}

.ui-datepicker-header {
    background-color: #f6f6f6;
    border-bottom: 1px solid #ddd;
    padding: 5px;
    position: relative;
    width: 100%;;
}

.ui-datepicker-title {
    margin: 0 2.3em;
    line-height: 1.8em;
    text-align: center;
    font-weight: bold;
}

.ui-datepicker-prev, 
.ui-datepicker-next {
    position: absolute;
    top: 5px !important;
    width: 1.8em;
    height: 1.8em;
    cursor: pointer;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -8px;
    top: 50%;
    margin-top: -8px;
}

.ui-datepicker-prev {
    left: 2px;
}

.ui-datepicker-next {
    right: 2px;
}

.ui-datepicker-calendar {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0.4em;
}

.ui-datepicker-calendar th {
    padding: 0.7em 0.3em;
    text-align: center;
    font-weight: bold;
    border: 0;
}

.ui-datepicker-calendar td {
    border: 0;
    padding: 1px;
    text-align: center;
}

.ui-datepicker-calendar a {
    display: block;
    padding: 0.2em;
    text-decoration: none;
    text-align: center;
}

.ui-datepicker-calendar .ui-state-active {
    background-color: #0073aa;
    color: white;
}

/* Fix for datepicker button */
.ui-datepicker-trigger {
    margin-left: 5px;
    cursor: pointer;
    vertical-align: middle;
}



/* Inline region and store classes */
.inlineRegion {
    display: inline-block !important;
    max-width: 90px !important;
    margin-right: 10px !important;
}

.inlineStore {
    display: inline-block !important;
    max-width: 178px !important;
}

/* reCAPTCHA */
.g-recaptcha {
    margin-bottom: 10px;
}

.hiddenRecaptcha {
    display: none;
}

/* Form control styles - these appear to be used directly in the HTML */
.form-control {
    /* display: block; */
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    font-family: 'droid_sans';
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .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::-moz-placeholder {
    color: #999;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #999;
}

.form-control::-webkit-input-placeholder {
    color: #999;
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0;
}

.form-control[disabled] {
    background-color: #eee;
    opacity: 1;
    cursor: not-allowed;
}

.form-control[readonly] {
    background-color: #eee;
    opacity: 1;
}

textarea.form-control {
    height: auto;
}

/* Basic form group styling */
.form-group {
    margin-bottom: 15px;
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
}

.feedback-form.v1 label {
  font-family: EvelethCleanRegular, sans-serif;
  font-weight: normal;
  font-size: 14px;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

.radio-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    vertical-align: middle;
    cursor: pointer;
    font-family: droid_sans, verdana, geneva, sans-serif !important;
}

.radio-inline input[type=radio] {
    position: absolute;
    margin-left: -20px;
    box-sizing: border-box;
    padding: 0;
    width: 20px;
    margin-top: 1px;
    line-height: normal;
}


.smileys {
    text-align: center;
}

.smileys input[type="radio"] {
    -webkit-appearance: none;
    width: 52px;
    height: 52px;
    border: none;
    cursor: pointer;
    transition: border .2s ease;
    margin: 0 5px;
    transition: all .2s ease;
}

.smileys input[type="radio"]:focus {
    outline: 0;
}

.smileys input[type="radio"].smileys1 {
    background: url(Images/1Col.svg) center;
    background-size: cover;
}

.smileys input[type="radio"].smileys2 {
    background: url(Images/2Col.svg) center;
    background-size: cover;
}

.smileys input[type="radio"].smileys3 {
    background: url(Images/3Col.svg) center;
    background-size: cover;
}

.smileys input[type="radio"].smileys4 {
    background: url(Images/4Col.svg) center;
    background-size: cover;
}

.smileys input[type="radio"].smileys5 {
    background: url(Images/5Col.svg) center;
    background-size: cover;
}

.checkedsmileys {
    filter: grayscale(0%);
}

.uncheckedtsmileys {
    filter: grayscale(100%);
}

.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.btn-scale {
    min-width: 44px;
    width: 6%;
    text-align: center;
    font-weight: bold;
    color: white !important;
    font-family: 'Lato',sans-serif;
    border-radius: 0px;
    width: 64px;
    height: 64px;
    margin-bottom: 5px;
}

.chart-scale {
    padding-right: 30px;
}

.btn-scale-asc-1 {
    background-color: #FF5C47;
}

.btn-scale-asc-2 {
    background-color: #FFCE00;
}

.btn-scale-asc-3 {
    background-color: #56C84D;
}

.ffsubmit {
    width: 224px !important;
    height: 40px !important;
    max-width: 224px !important;
    background-color: #00ae68 !important;
    color: #fff !important;
    font-family: 'droid_sans';
}

.selectedscale {
    outline: 5px auto #000 !important;
    outline-offset: 0px !important;
}

#icon-order-id {
    color: #310080 !important;
}

.set-tooltip-order {
    top: 9px;
    position: absolute;
    /* left: 275px; */
}

.center-reason {
    display: flex;
    justify-content: center;
    align-items: center;
}

textarea {
    margin: 0;
    font-family: 'droid_sans';
    overflow: auto;
    max-width: 678px;
    height: 79px !important;
}

select, select > option {
    font-family: 'droid_sans';
}

@media screen and (max-width: 840px) {
    h1 {
        font-size:30px !important;
    }

    p span {
        font-size: 30px !important;
    }

    .smileys input[type="radio"] {
        margin: 0px;
    }

    .btn-scale {
        padding: 0px;
        width: 22px;
        min-width: 22px;
        height: 50px;
    }
}

@media screen and (max-width: 320px) {
    h1 {
        font-size: 25px !important;
    }

    p span {
        font-size: 25px !important;
    }

    .smileys input[type="radio"] {
        margin: 0px;
        width: 45px;
        height: 45px;
    }

    .btn-scale {
        padding: 0px;
        width: 18px;
        min-width: 18px;
        font-size: 10px;
        height: 50px;
    }
}

@media screen and (max-width: 280px) {
    h1 {
        font-size: 20px !important;
    }

    p span {
        font-size: 20px !important;
    }

    .smileys input[type="radio"] {
        margin: 0px;
        width: 35px;
        height: 35px;
    }

    .btn-scale {
        padding: 0px;
        width: 14px;
        min-width: 14px;
        font-size: 9px;
        height: 50px;
    }
}

.feedback-form hr {
    height: 0;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee;
}

.inlineRegion {
    display: inline-block;
    max-width: 90px;
    margin-right: 10px;
}

.inlineStore {
    display: inline-block;
    max-width: 178px;
}

/* Datepicker Custom Styles */
.ui-datepicker {
    z-index: 9999 !important; /* Ensure datepicker appears above other elements */
    background-color: white;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    padding: 10px;
    display: block;
    font-size: 14px;
    max-width: 300px;
}

@media screen and (max-width: 335px) {
    .ui-datepicker {
        margin-left: -11px;
    }
}


.ui-datepicker-header {
    background-color: #f6f6f6;
    border-bottom: 1px solid #ddd;
    padding: 5px;
    margin-bottom: 5px;
}

.ui-datepicker-title {
    text-align: center;
    font-weight: bold;
}

.ui-datepicker-prev, .ui-datepicker-next {
    cursor: pointer;
    position: absolute;
    top: 8px;
    width: 1.8em;
    height: 1.8em;
    text-indent: -9999px;
}

.ui-datepicker-prev {
    left: 2px;
}

.ui-widget.ui-widget-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    * {
        font-family: Verdana,Arial,sans-serif !important;
    }
}

.ui-datepicker-next {
    right: 2px;
}

.ui-datepicker-calendar {
    width: 100%;
    border-collapse: collapse;
}

.ui-datepicker-calendar th {
    text-align: center;
    padding: 5px;
}

.ui-datepicker-calendar td {
    text-align: center;
    padding: 3px;
}

.ui-datepicker-calendar a {
    display: block;
    padding: 5px;
    text-decoration: none;
    border-radius: 3px;
}

.ui-datepicker-calendar .ui-state-active {
    background-color: #0073aa;
}

/* Fix for datepicker button */
.ui-datepicker-trigger {
    margin-left: 5px;
    cursor: pointer;
    vertical-align: middle;
}

.ui-icon {
    display: block;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    background-image: url("/Content/Styles/macros/images/ui-icons_222222_256x240.png");
}

.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
}

.glyphicon-question-sign:before {
    content: "";
}

.glyphicon-warning-sign:before {
    content: "";
}

.container {
    padding: 0 15px !important;
}

.container .tile > .column > div {
    
    margin: unset !important;
}

