/* ---------------------------------
    General 
   --------------------------------- */
html,
body {
    margin: 0;
    padding: 0;
    /* height: 100%; */
}

body {
    color: #777777;
    overflow-x: hidden;
    font-family: 'Poppins';
    font-size: 14px;
    background-color: #fff;
    font-weight: normal;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: #2c9068;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: 0;
    color: #247655;
    cursor: pointer;
}

p {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
    padding: 0;
}

img {
    max-width: 100%;
}

input,
button,
select,
textarea {
    font-family: 'Roboto', sans-serif;
    border-radius: 4px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
}

h1 {
    font-size: 40px;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ---------------------------------
    Form Handlers
   --------------------------------- */
.form-group {
    margin-bottom: 10px;
}

.form-group .fld-label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    font-size: 14px;
    color: #888;
}

.group-label {
    text-align: left;
    margin-bottom: 10px;
    font-size: 17px;
}

.group-label.label-inline {
    font-size: 15px;
    display: inline-block;
    margin-bottom: 5px;
    margin-top: 5px;
    color: #8c8c8c;
}

.normal-form .form-group {
    margin-bottom: 20px;
}

/* Form Fields */
.form-control {
    font-family: 'Poppins';
    display: block;
    width: 100%;
    height: 35px;
    padding: 6px 12px;
    font-size: 14px;
    vertical-align: middle;
    line-height: normal;
    color: #555555;
    outline: 0;
    border-radius: 4px;
    -webkit-appearance: none;
    background-color: #fff;
    border: 1px solid #dbdbdb;
    -webkit-transition: border-color ease-in-out 0.15s;
    -moz-transition: border-color ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s;
}

textarea.form-control {
    min-height: 112px;
    max-width: 100%;
    max-height: 200px;
}

textarea.form-control.no-resize {
    resize: none;
}

.form-control:focus {
    border-color: #2c9068;
    background-color: #fff;
    outline: 0 !important;
    box-shadow: 0 0 7px rgba(72, 176, 247, 0.15);
}

.form-control:disabled {
    background-color: #ebebeb;
}

.form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #c2c3c5;
}

.form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: #c2c3c5;
}

.form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: #c2c3c5;
}

.form-control:-moz-placeholder {
    /* Firefox 18- */
    color: #c2c3c5;
}

.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus {
    -webkit-text-fill-color: #555555;
    transition: background-color 1000s ease-in-out 0s;
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    min-width: 100px;
    -moz-appearance: none;
}

.select-wrapper:after,
.search-selection:after {
    position: absolute;
    content: '\f107';
    font-family: 'FontAwesome';
    font-size: 18px;
    z-index: 1;
    top: 50%;
    right: 12px;
    color: #c2c3c5;
    pointer-events: none;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

.select-wrapper select:invalid {
    color: #c2c3c5;
}

.select-wrapper select option,
.select-wrapper select optgroup {
    color: initial;
}

.select-placeholder {
    color: #c2c3c5 !important;
    /* display: none; */
}

.select-wrapper option[value='? undefined:undefined ?'] {
    display: none;
}

/* Telephone number fields */
.intl-tel-input {
    width: 100%;
}

.intl-tel-input .country-list .country {
    font-size: 13px;
}

.iti-flag {
    background-image: url("../libs/tel-input/flags.png");
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min--moz-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2 / 1),
only screen and (min-device-pixel-ratio: 2),
only screen and (min-resolution: 192dpi),
only screen and (min-resolution: 2dppx) {
    .iti-flag {
        background-image: url("../libs/tel-input/flags@2x.png");
    }
}

/* Fields with icons */
.field-icon-wrapper {
    position: relative;
}

.field-icon-wrapper .field-icon {
    position: absolute;
    width: 35px;
    height: 35px;
    line-height: 35px;
    top: 0;
    right: 0;
    color: #b6b6b6;
    z-index: 2;
    display: block;
    text-align: center;
    pointer-events: none;
}

.field-icon-wrapper .form-control {
    padding-right: 35px;
}

/* Radio Buttons / Checkboxes */
.radio,
.checkbox {
    position: relative;
    display: block;
    /* margin-top: 10px; */
    /*    margin-bottom: 10px;*/
}

.radio input[type="radio"],
.checkbox input[type="checkbox"] {
    position: absolute;
    margin-left: -20px;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 4px 0 0;
    line-height: normal;
    cursor: pointer;
    box-sizing: border-box;
}

.radio label,
.checkbox label {
    display: inline-block;
    min-height: 20px;
    cursor: pointer;
    position: relative;
    padding-left: 25px !important;
    margin-right: 15px;
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 20px;
}

.radio label:before,
.checkbox label:before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 17px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
}

.radio label:before {
    bottom: 2.5px;
    border-radius: 99px;
    border-color: #c2c2c2;
    -webkit-transition: border 0.3s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33);
    transition: border 0.3s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33);
}

.checkbox label:before {
    top: 1.4px;
    border-radius: 3px;
    border-color: #c2c2c2;
    -webkit-transition: border 0.2s linear 0s, color 0.2s linear 0s;
    transition: border 0.2s linear 0s, color 0.2s linear 0s;
}

.radio input[type=radio]:checked+label:before {
    border-width: 5px;
    border-color: #2c9068;
}

.checkbox input[type=checkbox]:checked+label:before {
    border-width: 8.5px;
    border-color: #2c9068;
}

.checkbox label {
    -webkit-transition: border 0.2s linear 0s, color 0.2s linear 0s;
    transition: border 0.2s linear 0s, color 0.2s linear 0s;
    white-space: nowrap;
}

.checkbox label:after {
    display: inline-block;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 3.2px;
    top: 0;
    font-size: 11px;
    -webkit-transition: border 0.2s linear 0s, color 0.2s linear 0s;
    transition: border 0.2s linear 0s, color 0.2s linear 0s;
    border-radius: 3px;
}

.checkbox input[type=checkbox]:checked+label:after {
    font-family: 'FontAwesome';
    content: "\f00c";
    color: #fff;
}

.radio input[type="radio"]:disabled+label,
.checkbox input[type="checkbox"]:disabled+label {
    cursor: not-allowed;
}

/* Buttons */
.btn {
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    margin-bottom: 0;
    height: 35px;
    border: 1px solid #2c9068;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    color: #fff;
    color: rgb(255, 255, 255, 0.9);
    border-radius: 0;
    outline: 0;
    white-space: nowrap;
    background-color: #2c9068;
    text-shadow: none;
    box-shadow: none;
    line-height: 10px;
    padding: 7px 20px;
    position: relative;
    -webkit-appearance: none;
    -webkit-transition: all ease-in-out 0.15s;
    -moz-transition: all ease-in-out 0.15s;
    transition: all ease-in-out 0.15s;
    border-radius: 4px;
}

#deleteBtn {
    background-color: #BF0C2B;
    border: 1px solid #BF0C2B;
}

#deleteBtn:hover {
    background-color: #7f081d;
    border: 1px solid #7f081d;
}

.delete-actions {
    margin: 0px 5px;
}

.btn.full-width {
    width: 100%;
}

.btn.btn-short {
    padding: 7px 12px;
}

.btn.btn-gradient {
    border: 0;
    background-image: -moz-linear-gradient(-177deg, rgb(111, 147, 228) 0%, rgb(109, 202, 226) 100%);
    background-image: -webkit-linear-gradient(-177deg, rgb(111, 147, 228) 0%, rgb(109, 202, 226) 100%);
    background-image: -ms-linear-gradient(-177deg, rgb(111, 147, 228) 0%, rgb(109, 202, 226) 100%);
}

.btn.btn-transparent {
    background-color: #fff;
    border-color: #c0c0c0;
    color: #555555;
}

.btn.btn-dark {
    background-color: #858585;
    border-color: #858585;
}

.btn:hover,
.btn:focus {
    background-color: #247655;
    color: #fff;
}

.btn.btn-gradient:hover {
    background-image: none;
    background-image: none;
    background-image: none;
}

.btn.btn-transparent:hover,
.btn.btn-transparent:focus {
    color: #555555;
    background-color: #eaeaea;
}

.btn.btn-dark:hover,
.btn.btn-dark:focus {
    border-color: #2c9068;
}

.btn:disabled,
.disabled:not(.active-disabled) {
    opacity: 0.5;
    pointer-events: none;
}

.btn-as-link {
    width: auto;
    height: auto;
    display: inline;
    padding: 0;
    line-height: normal;
    border: none !important;
    background-color: transparent !important;
    color: #2c9068;
}

.btn-as-link:hover,
.btn-as-link:focus {
    color: #247655;
}

/* Loaders */
.app-loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #fff;
    z-index: 9999;
}

.content-loader {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 350;
    top: 15px;
    left: 0;
    right: 0;
    bottom: 15px;
    min-height: 100px;
}

.app-loader:after,
.spin-loader-mini:after,
.content-loader:after {
    content: '';
    border: 2px solid #fff;
    border-top: 2px solid #247655;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    margin: 0 auto;
    display: inline-block;
    position: absolute;
    top: 8px;
    right: 20px;
    -webkit-animation: spin 1s linear infinite;
    -moz-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

.app-loader:after,
.content-loader:after {
    width: 60px;
    height: 60px;
    border: 3px solid #e9e9e9;
    border-top: 3px solid #247655;
    top: 44%;
    left: 50%;
    right: auto;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.content-loader:after {
    top: 22%;
}

.btn-loading.spin-loader-mini,
.btn-loading.ajax-success,
.btn-loading.ajax-fail {
    padding-right: 40px;
}

.btn-loading.spin-loader-mini:after {
    top: 7px;
    right: 10px;
}

.btn-group.btn-group-large .btn-loading.spin-loader-mini:after {
    top: 13px;
}

.btn-text-loading.btn-loading {
    position: relative;
}

.btn-text-loading.btn-loading.spin-loader-mini:after {
    top: 0;
}

.btn-loading.ajax-success:after,
.btn-loading.ajax-fail:after {
    font-family: 'FontAwesome';
    position: absolute;
    right: 15px;
    top: 7px;
    font-size: 18px;
}

.btn-loading.ajax-success:after {
    content: '\f00c';
}

.btn-loading.ajax-fail:after {
    content: '\f00d';
}

.label-loader {
    position: relative;
    display: inline-block !important;
}

.label-loader.btn-loading.spin-loader-mini:after {
    right: 0;
    top: 0;
}

.delete-loader {
    position: relative;
}

.delete-loader.spin-loader-mini {
    padding-right: 0;
}

.delete-loader.spin-loader-mini:after {
    left: 0;
    right: auto;
    top: 4px;
}

.delete-loader.spin-loader-mini .del-content {
    opacity: 0;
}

.form-dual-button .btn {
    min-width: 90px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Button Groups */
.btn-group {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle;
}

.btn-group .btn {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    min-width: 90px;
}

.btn-group .btn:first-child {
    margin-right: -1px;
}

.shape-rectangle {
    display: inline-block;
    height: 35px;
    min-width: 80px;
    text-align: center;
    background-color: #a7a7a7;
    color: #fff;
    padding: 8px 20px;
    font-size: 15px;
}

/* Field Validation */
.validation-tip {
    display: none;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #c64643;
    font-size: 13px;
    text-align: left;
    line-height: 20px;
}

.form-group.has-error .form-control,
.input-group.has-error .form-control {
    border-color: #f55753;
    box-shadow: none;
}

.form-group.has-error .validation-tip {
    display: block;
}

/* Field Validation */
.response-output {
    display: none;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #fff;
    font-size: 13px;
    text-align: left;
    background-color: #c64643;
    padding: 6px 10px;
    border-radius: 3px;
}

.response-output.error {
    background-color: #c64643;
}

.response-output.success {
    background-color: #69bb67;
}

.response-message-text {
    margin-top: 10px;
    font-weight: 500;
    color: #c64643;
    display: none;
}

.response-message-text:before {
    font-family: 'FontAwesome';
    padding-right: 5px;
    font-size: 18px;
    display: inline-block;
    vertical-align: bottom;
}

.response-message-text.error {
    color: #c64643;
}

.response-message-text.success {
    color: #69bb67;
}

.response-message-text.error:before {
    content: '\f06a';
}

.response-message-text.success:before {
    content: '\f058';
}

/* Search Fields */
.search-wrapper {
    width: 100%;
    position: relative;
}

.search-wrapper .search-control {
    /* font-size: 20px; */
    color: #979797;
    /* padding: 21px 12px; */
}

.search-wrapper .search-icon {
    position: absolute;
    top: 1px;
    right: 3px;
    width: 35px;
    height: 33px;
    line-height: 33px;
    text-align: center;
    background-color: #fff;
    color: #979797;
    font-size: 16px;
}

.search-wrapper.dirty .search-icon {
    display: none;
}

/* Dropdown search */
.search-selection {
    position: relative;
}

.search-selection .output {
    cursor: default;
    padding-right: 30px;
}

.search-selection .search-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 99;
    padding: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
    min-width: 160px;
}

.search-selection.open .search-dropdown {
    display: block;
}

.search-selection .search-filter {
    padding-left: 6px;
    padding-right: 6px;
    height: 30px;
    font-size: 13px;
}

.search-selection .result-list {
    padding: 0;
    margin: 5px -5px 0;
    list-style-type: none;
    max-height: 210px;
}

.search-selection .result-list li label {
    padding: 5px 10px;
    cursor: pointer;
    background-color: #fff;
    font-size: 13px;
    color: #363636;
    display: block;
    width: 100%;
    margin-bottom: 0;
    font-weight: normal;
    position: relative;
}

.search-selection .result-list li label input[type="radio"] {
    visibility: hidden;
    position: absolute;
}

.search-selection .result-list li label:hover,
.search-selection .result-list li label:focus,
.search-selection .result-list li.active label {
    background-color: #2c9068;
    color: #fff;
}

/* Time selection */
.time-selection {
    position: relative;
}

.time-selection:before,
.time-selection:after {
    content: '';
    display: table;
    clear: both;
}

.time-selection .select-wrapper {
    float: left;
    width: 33.33333333%;
}

.time-selection .select-wrapper select {
    min-width: 60px;
}

.time-selection .app-time-picker {
    position: absolute;
    visibility: hidden;
}

/* Input Groups */
.input-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.input-group-append,
.input-group-prepend {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
}

.input-group-prepend {
    margin-right: -1px;
}

.input-group-append {
    margin-left: -1px;
}

.input-group-text {
    padding: 9px 10px;
    height: 35px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    background-color: #f5f5f5;
    border: 1px solid #dbdbdb;
}

.input-group .select-wrapper,
.input-group>.form-control,
.input-group>.search-selection {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}

@media screen and (min-width: 768px) {

    .search-wrapper {
        width: 50%;
    }

    .row.mini-gap {
        margin-left: -5px;
        margin-right: -5px;
    }

    .row.mini-gap [class*="col-"] {
        padding-left: 5px;
        padding-right: 5px;
    }

    .row.normal-gap {
        margin-left: -15px;
        margin-right: -15px;
    }

    .row.normal-gap [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }

    .form-dual-button {
        margin-left: -2px;
        margin-right: -2px;
    }

    .form-dual-button .btn {
        margin-left: 2px;
        margin-right: 2px;
    }
}

@media screen and (max-width: 767px) {
    .btn-plus {
        font-size: 20px;
        padding: 7px 10px;
    }

    .form-dual-button {
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
    }

    .form-dual-button .btn {
        width: 100%;
        margin-bottom: 8px;
    }

    .form-dual-button .btn:first-child {
        order: 2;
    }

    .form-dual-button .btn:last-child {
        order: 1;
    }
}

@media screen and (max-width: 767px) {
    .btn {
        font-size: 13px;
        padding: 7px 15px;
    }
}

/* ---------------------------------
    Flip Box
   --------------------------------- */
.flip-container {
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
}

.flip-container.flip .flipper,
.flip-container.flip .flipper {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.flip-container,
.panel-front,
.panel-back {
    width: 430px;
    height: 370px;
}

.flip-container .flipper {
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    transition: 0.6s;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    position: relative;
}

.panel-front,
.panel-back {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.panel-front {
    z-index: 2;
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    transform: rotateY(0deg);
}

.panel-back {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

@media screen and (max-width: 767px) {

    .flip-container,
    .panel-front,
    .panel-back {
        width: 100%;
    }
}

/* ---------------------------------
    Tables
   --------------------------------- */
.table-border-wrapper {
    border: 1px solid rgba(229, 229, 229, 0.7);
}

.table-responsive {
    overflow-x: auto;
}

.table {
    width: 100%;
    max-width: 100%;
    border: 1px solid rgba(229, 229, 229, 0.7);
}

.table tr th {
    font-weight: 600;
    font-size: 14px;
    padding: 13px 15px 11px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(229, 229, 229, 0.7);
    color: #606060;
    color: rgba(96, 96, 96, 1);
    background-color: #f4f4f4;
    text-align: left;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}

.table tr td {
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}

.table tr td p {
    margin-bottom: 5px;
    margin-top: 5px;
    line-height: 1.2;
}

.table tr td a {
    font-size: 20px;
    margin-right: 10px;
    vertical-align: middle;
    color: rgba(96, 96, 96, 0.7);
    /* -webkit-transition: all ease-in-out 0.15s;
    -moz-transition: all ease-in-out 0.15s;
    transition: all ease-in-out 0.15s;
*/
}

.table tr td a:hover {
    color: #2c9068;
    color: rgb(44, 144, 104, 1);
}

/* .table tr td a.updateicon{
    
} */
.table tr th:last-child {
    border-right: 0;
}

.table-sortable th a {
    position: relative;
    color: inherit;
}

.table-sortable th a.current,
.table-sortable th a:hover {
    color: #111111;
}

.table tr:nth-child(even) td {
    background-color: #fff;
    border-top: 0;
    padding: 15px;
    font-size: 13.5px;
}

.table tr:nth-child(odd) td {
    background-color: #f4f4f4;
    border-bottom: 1px solid rgba(229, 229, 229, 0.7);
    border-top: 0;
    padding: 15px;
    font-size: 13.5px;
}

/* .table tr:last-child td {
    border-bottom: 1px solid rgba(229, 229, 229, 0.7);
} */
.table-condensed .condensed-column {
    padding-top: 10px;
    padding-bottom: 10px;
}

.clickable-row {
    cursor: pointer;
}

.table-hover tr:nth-child(even):hover td,
.clickable-row:hover {
    background-color: #ececec;
}

.table-hover tr:nth-child(odd):hover td,
.clickable-row:hover {
    background-color: #ececec;
}

table td[class*="col-"],
table th[class*="col-"] {
    position: static;
    float: none;
    display: table-cell;
}

.tbl-actions .action-link {
    font-size: 20px;
    margin-right: 15px;
    display: inline-block;
}

.tbl-actions .action-link:last-of-type {
    margin-right: 0;
}

.tbl-actions .action-link.action-remove {
    color: #f14945;
}

.image-thumb {
    display: inline-block;
    height: 30px;
    max-width: 70px;
    object-fit: cover;
}

table .inline-image {
    display: flex;
    align-items: center;
}

table .inline-image .image-thumb {
    margin-right: 10px;
}

.default-user-pic {
    font-size: 18px;
    margin-right: 6px;
    color: #858585;
    display: inline-block;
}

.table-no-lines {
    width: 100%;
    max-width: 100%;
}

.table-no-lines tr td {
    padding: 0 12px;
    white-space: nowrap;
}

@media screen and (max-width: 991px) {

    .table-responsive>.table tr th,
    .table-responsive>.table tr td {
        white-space: nowrap
    }
}

/* ---------------------------------
    Pagination
   --------------------------------- */
.pagination {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
}

.pagination:before,
.pagination:after {
    clear: both;
    display: block;
    content: '';
}

.pagination .paginate-group {
    float: right;
}

.pagination a {
    width: 30px;
    height: 30px;
    line-height: 28px;
    display: inline-block;
    background-color: #fff;
    text-align: center;
    border: 1px solid #c5c5c5;
    font-size: 18px;
    color: rgba(44, 44, 44, 0.55);
}

.pagination a.current,
.pagination a:hover {
    background-color: #f0f0f0;
}

.pagination a.disable {
    border-color: rgba(44, 44, 44, 0.1);
    color: rgba(44, 44, 44, 0.25);
    background-color: transparent;
    cursor: default;
}

.pagination span {
    display: inline-block;
    font-size: 14px;
    margin-left: 8px;
    margin-right: 8px;
    font-weight: 600;
    color: rgba(44, 44, 44, 0.55);
}

/* ---------------------------------
    Dropdown
   --------------------------------- */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 1px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
}

.dropdown-menu.right {
    left: auto;
    right: 0;
}

.dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-menu>li {
    display: block;
    position: relative;
}

.dropdown-menu>li>a {
    display: block;
    color: #626262;
    padding: 10px 20px;
    text-align: left;
    white-space: nowrap;
}

.dropdown-menu>li>a>i {
    margin-left: 5px;
}

.dropdown-menu>li>a:hover {
    background-color: #2c9068;
    color: #fff;
}

/* ---------------------------------
    Navigation Tabs
   --------------------------------- */
.nav-tabs-wrapper {
    position: relative;
    border-bottom: 2px solid #eeeeee;
    background-color: #fff;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.nav-tabs {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.nav-tabs.nav-tabs-scrollable {
    white-space: nowrap;
}

.nav-tabs li {
    display: inline-block;
    margin-left: -4px;
}

.nav-tabs li a {
    display: block;
    padding: 10px 20px;
    font-weight: 500;
    color: #a2a2a2;
    border-bottom: 2px solid transparent;
}

.nav-tabs li.active a,
.nav-tabs li a:hover {
    border-color: #2c9068;
    color: #777;
}

.nav-tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.tab-pane {
    padding-top: 15px;
}

.tab-pane .tab-content {
    display: none;
}

.tab-pane .tab-content.active {
    display: block;
}

.tab-title {
    font-size: 22px;
    color: #858585;
    margin-top: 5px;
    margin-bottom: 5px;
}

/* Fieldsets */
.fieldset {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
}

.fieldset legend {
    font-weight: 500;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 15px;
}

@media screen and (max-width: 767px) {
    .tab-title {
        font-size: 17px;
    }

    .fieldset {
        padding: 20px 10px;
    }
}

/* ---------------------------------
    Vertical Linklist
   --------------------------------- */
.vertical-linklist ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.vertical-linklist ul li {
    display: block;
    width: 100%;
}

.vertical-linklist ul li a {
    display: block;
    width: 100%;
    padding: 13px 15px;
    color: #959595;
    font-weight: 500;
}

/*.vertical-linklist ul li.active a,
.vertical-linklist ul li a:hover{
    background-color: #f0f0f0;
    color: rgba(44,44,44,0.75);
}*/
/* ---------------------------------
    File uploader area
   --------------------------------- */
.uploader-area {
    border: 3px dashed #dddddd;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 155px;
}

.uploader-wrapper {
    position: relative;
    /*    overflow: hidden;*/
    display: inline-block;
}

.uploader-wrapper input[type=file] {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.uploader-wrapper img.prev-thumb {
    width: 120px;
    height: 60px;
    display: block;
    margin: 0 auto 5px;
    object-fit: contain;
}

/* ---------------------------------
    Scroll Containers
   --------------------------------- */
.scroll-container {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.scroll-x-hidden {
    overflow-x: hidden;
}

.scroll-x {
    overflow-x: auto;
}

.scroll-container::-webkit-scrollbar-track,
.table-scrollable tbody::-webkit-scrollbar-track {
    background-color: #ededed;
}

.scroll-container::-webkit-scrollbar,
.table-scrollable tbody::-webkit-scrollbar {
    width: 5px;
    background-color: #ededed;
}

.scroll-container::-webkit-scrollbar-thumb,
.table-scrollable tbody::-webkit-scrollbar-thumb {
    background-color: #cbcbcb;
}

/* ---------------------------------
    Other elements
   --------------------------------- */
.line-seperator {
    margin-top: 15px;
    margin-bottom: 15px;
    border: 0;
    border-top: 1px solid #e5e5e5;
}

.dot-seperator {
    opacity: 0.8;
    font-weight: 500;
    float: right;
}

.nodata-messege {
    width: 100%;
    min-height: 150px;
    text-align: center;
    padding: 30px 15px;
    background-color: #fff;
    position: relative;
}

.nodata-messege .icon {
    font-size: 40px;
    opacity: 0.7;
    margin: 0;
}

.nodata-messege .title {
    font-size: 22px;
    font-weight: 300;
    margin: 0;
}

.nodata-messege .text {
    margin: 0 0 10px;
    font-weight: 300;
}

.spacer {
    width: 100%;
    height: 10px;
}

.spacer:before,
.spacer:after {
    display: table;
    clear: both;
    content: '';
}

.inline-block {
    display: inline-block;
}

.block {
    display: block;
}

.hide {
    display: none;
}

.no-wrap {
    white-space: nowrap;
}

.txt-left {
    text-align: left !important;
}

.txt-center {
    text-align: center !important;
}

.txt-right {
    text-align: right !important;
}

.text-muted {
    color: #b2b2b2;
}

.text-success {
    color: #69bb67;
}

.text-warning {
    color: #dd992d;
}

.text-danger {
    color: #e50f0f;
}

.text-notice {
    color: #4e4e4e;
}

.text-capitalize {
    text-transform: capitalize;
}
.text-center {
    text-align: center;
}
.v-a-middle {
    vertical-align: middle !important;
}

.themed-color {
    color: #2c9068;
}

.hint-text {
    opacity: 0.8;
}

/* Layout fixes */
.m-auto {
    margin: 0 auto;
}

.m-r-5 {
    margin-right: 5px;
}

.m-t-5 {
    margin-top: 5px;
}

.m-t-0 {
    margin-top: 0;
}

.m-t-10 {
    margin-top: 10px;
}

.m-t-15 {
    margin-top: 15px;
}

.m-t-20 {
    margin-top: 20px;
}
.m-t-25 {
    margin-top: 25px;
}

.m-t-30 {
    margin-top: 30px;
}

.m-t-100 {
    margin-top: 100px;
}

.m-b-3 {
    margin-bottom: 3px;
}

.p-0 {
    padding: 0 !important;
}

.p-t-16 {
    padding-top: 16px !important;
}

.p-b-16 {
    padding-bottom: 16px !important;
}

.m-b-0 {
    margin-bottom: 0 !important;
}

.m-b-10 {
    margin-bottom: 10px !important;
}

.m-b-15 {
    margin-bottom: 15px;
}

.m-b-20 {
    margin-bottom: 20px;
}

.m-b-25 {
    margin-bottom: 25px;
}

.m-b-30 {
    margin-bottom: 30px;
}

.f-w-500 {
    font-weight: 500;
}

.f-s-20 {
    font-size: 20px;
}

.f-s-28 {
    font-size: 28px;
}

.tt-cap {
    text-transform: capitalize;
}

.w-auto {
    width: auto;
}

.w-10 {
    width: 10px;
}

.w-40 {
    width: 40px;
}

.w-60 {
    width: 60px;
}

.w-70 {
    width: 70px;
}

.w-90 {
    width: 90px;
}

.w-100 {
    width: 100px;
}

.w-105 {
    width: 105px;
}

.w-130 {
    width: 130px;
}

.h-6 {
    height: 6px;
}

.h-10 {
    height: 10px;
}

.h-15 {
    height: 15px;
}

.h-20 {
    height: 20px;
}

.h-30 {
    height: 30px;
}

.h-60 {
    height: 60px;
}

.min-w-1 {
    min-width: 1px !important;
}

.min-h-1 {
    min-height: 1px !important;
}

.min-h-200 {
    min-height: 200px !important;
}

.max-h-200 {
    max-height: 200px !important;
}

.max-h-400 {
    max-height: 400px !important;
}

.max-h-600 {
    max-height: 600px !important;
}

.full-height {
    height: 100%;
}

.full-width {
    width: 100%;
}

.o-f-hidden {
    overflow: hidden;
}

.flex-parent {
    display: flex;
}

.space-between {
    justify-content: space-between;
}

.no-float {
    float: none !important;
}

.column-separator {
    position: relative !important;
}

.column-separator:after {
    content: ':';
    position: absolute;
    right: 0;
    opacity: 0.8;
    font-weight: 500;
}

.no-padding {
    padding: 0 !important;
}

.animate-item {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

@media screen and (min-width: 768px) {
    .equal-height-sm {
        display: flex;
    }

    .vertical-center-sm {
        align-items: center;
    }

    .w-65-sm {
        width: 65px;
    }

    .w-80-sm {
        width: 80px;
    }

    .txt-right-sm {
        text-align: right;
    }
}

@media screen and (min-width: 992px) {
    .equal-height-md {
        display: flex;
    }
}

/* ---------------------------------
    Charts
   --------------------------------- */
.chart-container {
    max-width: 100%;
    overflow-x: auto;
    padding-top: 20px;
}

.highcharts-credits {
    display: none !important;
}

/* Margins and paddings */

/* Spinner */
.lds-facebook {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.lds-facebook div {
    display: inline-block;
    position: absolute;
    left: 6px;
    width: 13px;
    background: #000;
    animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.lds-facebook div:nth-child(1) {
    left: 6px;
    animation-delay: -0.24s;
}

.lds-facebook div:nth-child(2) {
    left: 26px;
    animation-delay: -0.12s;
}

.lds-facebook div:nth-child(3) {
    left: 45px;
    animation-delay: 0;
}

@keyframes lds-facebook {
    0% {
        top: 6px;
        height: 51px;
    }

    50%,
    100% {
        top: 19px;
        height: 26px;
    }
}

/* ---------------------------------
    File uploader area / Drag & Drop
   --------------------------------- */
.uploader-area {
    border: 3px dashed #dddddd;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 155px;
}

.uploader-wrapper {
    position: relative;
    /*    overflow: hidden;*/
    display: inline-block;
}

.uploader-wrapper input[type=file] {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.uploader-wrapper img.prev-thumb {
    /*    width: 80px;
    height: 70px;
    position: absolute;
    left: 105%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    object-fit: contain;*/
    width: 120px;
    height: 60px;
    display: block;
    margin: 0 auto 5px;
    object-fit: contain;
}

.droppable-area {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #dddddd;
    min-height: 100px;
    margin-bottom: 10px;
    overflow: hidden;
}

.droppable-area p {
    line-height: 1.4;
}

.uploader-wrapper label {
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    margin-bottom: 0;
    height: 35px;
    border: 1px solid #2c9068;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    color: #fff;
    color: rgb(255, 255, 255, 0.9);
    border-radius: 0;
    outline: 0;
    white-space: nowrap;
    background-color: #2c9068;
    text-shadow: none;
    box-shadow: none;
    line-height: 10px;
    padding: 11px 20px;
    position: relative;
    -webkit-appearance: none;
    -webkit-transition: all ease-in-out 0.15s;
    -moz-transition: all ease-in-out 0.15s;
    transition: all ease-in-out 0.15s;
    border-radius: 4px;
}

.uploader-wrapper label.uploader-dark {
    background-color: #858585;
    border-color: #858585;
}

.uploader-wrapper label:hover,
.uploader-wrapper label:focus {
    background-color: #247655;
    color: #fff;
}