/*
 Normalizing styles
*/

/* ---------------------------------
    Fonts 
   --------------------------------- */
@font-face {
    font-family: 'SF Pro';
    src: url('../fonts/SFProText-Regular.woff2') format('woff2'),
         url('../fonts/SFProText-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'SF Pro';
    src: url('../fonts/SFProText-Medium.woff2') format('woff2'),
         url('../fonts/SFProText-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'SF Pro';
    src: url('../fonts/SFProText-Semibold.woff2') format('woff2'),
         url('../fonts/SFProText-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'SF Pro';
    src: url('../fonts/SFProText-Bold.woff2') format('woff2'),
         url('../fonts/SFProText-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

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

body {
    color: #757575;
    overflow-x: hidden;
    font-family: 'SF Pro', sans-serif;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: -0.02em;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: #3d9bd9;
    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: #3283b8;
    cursor: pointer;
}

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

img {
    max-width: 100%;
}

input,
button,
select,
textarea {
    font-family: 'SF Pro', sans-serif;
    font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #2d3f4c;
    font-weight: bold;
}

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: 13px;
    color: #757575;
}
.form-group .fld-hint {
    display: block;
    font-size: 12px;
    margin-bottom: 8px;
    color: #888888;
}

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

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

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

.form-fieldset{
    border: 1px solid #c8c8c8;
    padding: 15px;
    margin: 0 0 20px;
}
.form-fieldset legend{
    padding-left: 7px;
    padding-right: 7px;
    font-weight: 500;
    font-size: 15px;
}

/* Form Fields */
.form-control {
    display: block;
    width: 100%;
    height: 35px;
    padding: 4px 12px;
    font-size: 14px;
    vertical-align: middle;
    line-height: normal;
    color: #555555;
    outline: 0;
    border-radius: 2px;
    -webkit-appearance: none;
    background-color: #fff;
    border: 1px solid #c8c8c8;
    -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;
    min-width: 100%;
    line-height: 1.6;
}

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

.form-control:focus {
    border-color: #429cd7;
    background-color: #fff;
    outline: 0 !important;
    box-shadow: 0 0 7px rgba(86, 179, 190, 0.15);
}

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

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

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

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

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

.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 */
.select-wrapper {
    position: relative;
}
.select-wrapper select {
    min-width: 100px;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.select-wrapper:after{
    position: absolute;
    content: '\f107';
    font-family: 'Font Awesome 5 Pro';
    font-size: 18px;
    font-weight: 400;
    z-index: 1;
    top: 2px;
    right: 2px;
    bottom: 2px;
    color: #999999;
    width: 30px;
    text-align: center;
    padding: 6px 2px;
    pointer-events: none;
    background-color: #fff;
}

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

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

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

/* 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%;
    border: 1px solid transparent;
    border-radius: 3px;
    -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;
}
.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-label {
    padding: 7px 15px;
    height: 35px;
    text-align: center;
    white-space: nowrap;
    background-color: #e9e9e9;
    position: relative;
    border-radius: 2px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.5;
}
.input-group-label > i{
    font-size: 17px;
    line-height: 1.3;
}
.input-group-label:after {
    content: '';
    top: 5px;
    bottom: 5px;
    border-right: 1px solid #cbcbcb;
    position: absolute;
    z-index: 1;
}
.input-group-prepend .input-group-label {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}
.input-group-prepend .input-group-label:after {
    right: 0;
}
.input-group-append .input-group-label {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}
.input-group-append .input-group-label:after {
    left: 0;
}
.input-group .select-wrapper,
.input-group>.form-control,
.input-group>.search-selection,
.input-group>.do-daterangepicker-triggerbutton{
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}
.input-group .select-wrapper .form-control,
.input-group>.form-control,
.input-group>.search-selection .form-control,
.input-group>.do-daterangepicker-triggerbutton{
    border: none;
    outline: 0;
    box-shadow: none;
    background-color: #e9e9e9;
}
.input-group .select-wrapper:after{
    background-color: transparent;
}

.input-group>.form-control::-webkit-input-placeholder {   
    color: #aeaeae; /* Chrome/Opera/Safari */
}
.input-group>.form-control::-moz-placeholder {
    color: #aeaeae; /* Firefox 19+ */
}
.input-group>.form-control:-ms-input-placeholder {
    color: #aeaeae; /* IE 10+ */
}
.input-group>.form-control:-moz-placeholder { 
    color: #aeaeae; /* Firefox 18- */
}

.input-group.focused{
    border-color: #3d9bd9;
    box-shadow: 0 0 7px rgba(86, 179, 190, 0.15);
}

.form-group.invalid .form-control,
.form-group .form-control.ng-invalid-pattern,
.form-group .form-control.ng-invalid-password-verify,
.form-group .form-control.ng-invalid-search-range-validator.ng-dirty{
    border-color: #f55753;
    box-shadow: none;
}
.form-group.has-error .input-group{
    border: 1px solid #f55753;
}

/* Radio Buttons / Checkboxes */
.radio,
.checkbox {
    position: relative;
    display: block;
    margin-top: 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: #3283b8;
}
.checkbox input[type=checkbox]:checked+label:before {
    border-width: 8.5px;
    border-color: #3283b8;
}
.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.4px;
    top: 1px;
    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: 'Font Awesome 5 Pro';
    content: "\f00c";
    color: #fff;
    font-weight: 700;
}
.radio input[type="radio"]:disabled+label,
.checkbox input[type="checkbox"]:disabled+label {
    cursor: not-allowed;
}


/* Buttons */
.button {
    font-family: 'SF Pro', sans-serif;
    font-size: 14px;
    font-weight: normal;
    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 #3d9bd9;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    color: #fff;
    border-radius: 2px;
    outline: 0;
    white-space: nowrap;
    background-color: #3d9bd9;
    text-shadow: none;
    box-shadow: none;
    line-height: 1.7;
    padding: 5px 15px;
    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;
}

.button.full-width {
    width: 100%;
    display: block;
}

.button-negative {
    background-color: #c8c8c8;
    border-color: #c8c8c8;
}
.button-action{
    height: 25px;
    padding: 2px 10px;
    font-size: 12px;
    line-height: 1.7;
}

.button:hover,
.button:focus {
    background-color: #3283b8;
    color: #fff;
}
.button-negative:hover,
.button-negative:focus{
    border-color: transparent;
}

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

/* Loaders */
body.app-loading{
    overflow: hidden;
}
body.app-loading:after{
    content: '';
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
}

.content-loader {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 350;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 150px;
    border-radius: 7px;
    display: none;
}
.content-loader.loading {
    display: block;
}

.button-ajax.loading{
    pointer-events: none;
    opacity: 0.85;
    padding-right: 35px;
}
.button-action.button-ajax.loading{
    padding-right: 25px;
}
body.app-loading:before,
.button-ajax.loading:after,
.content-loader.loading:after,
.app-fancy-container .afc-content:before,
.apple-switch.loading .as-slider:after,
.select-wrapper.loading:before{
    content: '';
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    margin: 0 auto;
    display: inline-block;
    position: absolute;
    top: 8px;
    right: 10px;
    -webkit-animation: spin 1s linear infinite;
    -moz-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}
.button-action.button-ajax.loading:after{
    width: 13px;
    height: 13px;
    top: 5px;
    right: 5px;
}

body.app-loading:before,
.content-loader.loading:after,
.app-fancy-container .afc-content:before{
    width: 40px;
    height: 40px;
    border: 2px solid #3d9bd9;
    border-top: 2px solid transparent;
    top: 40%;
    left: 47%;
    right: auto;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
body.app-loading:before{
    z-index: 1001;
}
.apple-switch.loading .as-slider:after{
    width: 16px;
    height: 16px;
    top: 4px;
    left: 4px;
    right: auto;
    border: 2px solid #3d9bd9;
    border-top: 2px solid transparent;
    pointer-events: none;
}
.apple-switch.loading input:checked + .as-slider:after{
    left: auto;
    right: 4px;
}
.select-wrapper.loading:before{
    top: 11px;
    right: 7px;
    border: 2px solid #3d9bd9;
    border-top: 2px solid transparent;
    z-index: 2;
}
.select-wrapper.loading:after{
    opacity: 0;
}
.select-wrapper.loading select{
    pointer-events: none;
}

@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);
    }
}

/* Form responses */
.response-output {
    display: none;
    width: 100%;
    margin-top: .6em;
    margin-bottom: .6em;
    color: #fff;
    font-size: 13px;
    text-align: left;
    background-color: #c64643;
    border-radius: 3px;
    padding: 6px 10px 6px 35px;
    border-radius: 3px;
    position: relative;
}
.response-output.error {
    background-color: #c64643;
}
.response-output.success {
    background-color: #69bb67;
}
.response-output:before {
    font-family: 'Font Awesome 5 Pro';
    padding-right: 5px;
    font-size: 18px;
    position: absolute;
    left: 10px;
    top: 3px;
}
.response-output.no-icon{
    padding-left: 10px;
}
.response-output.no-icon:before{
    display: none;
}
.response-output.error:before {
    content: '\f06a';
}
.response-output.success:before {
    content: '\f058';
}

/* ---------------------------------
    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: #757575;
    padding: 10px 20px;
    text-align: left;
    white-space: nowrap;
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a.button-ajax.loading{
    background-color: #3283b8;
    color: #fff;
}

/* ---------------------------------
    Tables
   --------------------------------- */
.table-responsive {
    overflow-x: auto;
}
.table-responsive::-webkit-scrollbar-track{
    background-color: #ededed;
    border-radius: 10px;
}
.table-responsive::-webkit-scrollbar{
    height: 5px;
    background-color: #ededed;
}
.table-responsive::-webkit-scrollbar-thumb{
    background-color: #a4a3a3;
    border-radius: 10px;
}
.table-bordered{
    border: 1px solid rgba(229, 229, 229, 0.7);
}
.table {
    width: 100%;
    max-width: 100%;
}
.table tr th {
    font-weight: 600;
    font-size: 15px;
    padding: 10px 15px;
    vertical-align: middle;
    color: #474747;
    text-align: left;
    border-bottom: 2px solid rgba(229, 229, 229, 0.7);
}
.table tr.backgrounded th { 
    background-color: #eef2f5;
}
.table tr td {
    background-color: #fff;
    border-bottom: 1px solid rgba(229, 229, 229, 0.7);
    padding: 12px 15px;
    font-size: 13px;
}
.clickable-row{
    cursor: pointer;
}
.table-hover tr:hover td,
.clickable-row:hover {
    background-color: #f8fcff;
}
table td[class*="col-"],
table th[class*="col-"] {
    position: static;
    float: none;
    display: table-cell;
}

@media screen and (max-width: 991px) {
    .table-responsive>.table tr th,
    .table-responsive>.table tr td {
        white-space: nowrap
    }
}

/* ---------------------------------
    Datepicker
   --------------------------------- */
.ui-datepicker{
    border: 1px solid #dbdbdb !important;
    margin-top: 2px !important;
}
.ui-datepicker .ui-datepicker-header{
    background-color: #fff;
    border: none;
}
.ui-datepicker .ui-icon{
    display: none !important;
}
.ui-datepicker-prev:after,
.ui-datepicker-next:after{
    font-family: 'Font Awesome 5 Pro';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 24px;
    text-align: center;
    font-weight: 300;
}
.ui-datepicker-prev:after{
    content: '\f104';
}
.ui-datepicker-next:after{
    content: '\f105';
}
.ui-datepicker .ui-datepicker-next.ui-state-hover,
.ui-datepicker .ui-datepicker-prev.ui-state-hover{
    background: transparent !important;
    font-weight: 700 !important;
    color: #333 !important;
    border: none !important;
}
.ui-datepicker-prev-hover{
    left: 2px !important;
    top: 2px !important;
}
.ui-datepicker-next-hover{
    right: 2px !important;
    top: 2px !important;
}
.ui-datepicker td a{
    background: #fff !important;
    border-color: transparent !important;
}
.ui-datepicker td a:hover,
.ui-datepicker td a.ui-state-active{
    background: #ddd !important;
    color: #454545 !important
}
.ui-datepicker td a.ui-state-highlight{
    background: #3d9bd9 !important;
    color: #fff !important;
}
.ui-datepicker td.ui-datepicker-today a.ui-state-highlight{
    background: #dd992d !important;
}

/* Date range picker styles */
.do-daterangepicker {
    position: absolute;
    padding: 5px;
}
.do-daterangepicker-triggerbutton{
    display: block;
    width: 100%;
    height: 35px;
    padding: 4px 12px;
    font-size: 14px;
    vertical-align: middle;
    line-height: normal;
    color: #555555;
    outline: 0;
    border-radius: 3px;
    -webkit-appearance: none;
    background-color: #fff;
    border: 1px solid #c8c8c8;
    text-align: left;
    -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;
}
.do-daterangepicker-triggerbutton:focus{
    color: #757575;
}
.do-daterangepicker-triggerbutton .ui-button-icon{
    display: none;
}
.do-daterangepicker-mask {
    margin: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
    opacity: 0;
    filter: alpha(opacity = 0);
}
.do-daterangepicker-presets,
.do-daterangepicker-calendar {
    display: table-cell;
    vertical-align: top;
    height: 230px;
}
.do-daterangepicker-right .do-daterangepicker-presets {
    padding: 2px 7px 7px 2px;
}
.do-daterangepicker-left .do-daterangepicker-presets {
    padding: 2px 2px 7px 7px;
}
.ui-menu {
    white-space: nowrap;
}
.do-daterangepicker .ui-widget-content,
.do-daterangepicker .ui-datepicker .ui-state-highlight {
    border-width: 0;
    background: transparent;
}
.do-daterangepicker > .do-daterangepicker-main.ui-widget-content {
    border-bottom-width: 1px;
}
.do-daterangepicker .ui-datepicker .ui-datepicker-today .ui-state-highlight {
    border-width: 1px;
}
.do-daterangepicker-right .do-daterangepicker-calendar {
    border-left-width: 1px;
    padding-left: 5px;
}
.do-daterangepicker-left .do-daterangepicker-calendar {
    border-right-width: 1px;
    padding-right: 5px;
}
.do-daterangepicker-right .do-daterangepicker-buttonpanel {
    float: left;
}
.do-daterangepicker-left .do-daterangepicker-buttonpanel {
    float: right;
}
.do-daterangepicker-buttonpanel > button  {
    margin-top: 6px;
}
.do-daterangepicker-right .do-daterangepicker-buttonpanel > button {
    margin-right: 6px;
}
.do-daterangepicker-left .do-daterangepicker-buttonpanel > button {
    margin-left: 6px;
}
.do-daterangepicker-calendar .ui-state-highlight a.ui-state-default {
    background: #3d9bd9 !important;
    color: #fff !important;
}

/* ---------------------------------
    Apple Switch
   --------------------------------- */
.apple-switch{
    position: relative;
    display: inline-block;
    width: 40px;
    height: 25px;
}
.apple-switch input{
    position: absolute;
    visibility: hidden;
    opacity: 0;
    left: 0;
}
.apple-switch .as-slider{
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    background-color: #adadad;
    -webkit-transition: .4s;
    -ms-transition: .4s;
    -moz-transition: .4s;
    transition: .4s;
}
.apple-switch .as-slider:before{
    position: absolute;
    content: "";
    height: 21px;
    width: 21px;
    left: 2px;
    bottom: 2px;
    border-radius: 50%;
    background-color: white;
    -webkit-transition: .4s;
    -ms-transition: .4s;
    -moz-transition: .4s;
    transition: .4s;
}
.apple-switch input:checked + .as-slider{
    background-color: #62db6a;
}
.apple-switch input:focus + .as-slider{
    box-shadow: 0 0 1px #2196F3;
}
.apple-switch input:checked + .as-slider:before{
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
}

/* ---------------------------------
    Layouting elements
   --------------------------------- */
.block{ display: block !important; }
.inline-block{ display: inline-block !important; }
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }

.text-success { color: #69bb67; }
.text-warning { color: #dd992d; }
.text-danger { color: #e50f0f; }
.text-notice { color: #4e4e4e; }
.text-cool { color: #3257A5; }
.text-dull-blue { color: #90a4ce; }
.text-white{ color: #fff; }
.text-yellow{ color: #fce167; }

.no-wrap { white-space: nowrap; }
.text-break{ word-break: break-all; }
.no-border{ border: 0 !important; }

.clear-before{ clear: left; }
.clear-after{ clear: right; }

.fadeout-line{
    width: 100%;
    height: 1px;
    display: block;
    background: -moz-linear-gradient(left, rgba(255,255,255,0), rgba(255,255,255, 0.5));
    background: -webkit-linear-gradient(left, rgba(255,255,255,0), rgba(255,255,255, 0.5));
    background: -o-linear-gradient(left, rgba(255,255,255,0), rgba(255,255,255, 0.5));
}

/* ---------------------------------
    Scroll containers
   --------------------------------- */
.scroll-container {
    overflow-y: auto;
    padding-right: 15px;
    -webkit-overflow-scrolling: touch;
}
.scroll-container::-webkit-scrollbar-track{
    background-color: #ededed;
    border-radius: 10px;
}
.scroll-container::-webkit-scrollbar{
    width: 5px;
    background-color: #ededed;
}
.scroll-container::-webkit-scrollbar-thumb{
    background-color: #a4a3a3;
    border-radius: 10px;
}

@media screen and (min-width: 768px) {
    .row.mini-gap {
        margin-left: -10px;
        margin-right: -10px;
    }
    .row.mini-gap [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {
    .row.ipad-opt > .col-sm-6 {
        width: 50%;
    }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2){
    .row.ipad-opt > .col-sm-6 {
        width: 50%;
    }
}

/* ---------------------------------
    Pagination
   --------------------------------- */
.pagination {
    margin-top: 1em;
    margin-bottom: 1em;
}

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

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

.pagination a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    background-color: #fff;
    text-align: center;
    border: 1px solid #c5c5c5;
    font-size: 20px;
    float: left;
    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;
    font-weight: 600;
    color: rgba(44, 44, 44, 0.55);
    float: left;
    margin: 7px 8px;
}

/* ---------------------------------
    Other elements
   --------------------------------- */

/* Unsuccess notification */
.unsuccess-notification{
    width: 100%;
    min-height: 150px;
    text-align: center;
    padding: 30px 15px;
    background-color: #fff;
    position: relative;
}
.unsuccess-notification.has-bg{
    background-color: #f6f6f6;
    border-radius: 7px;
}
.unsuccess-notification .un-icon{
    margin: 0 auto 20px;
    width: 80px;
    height: 80px;
    background-color: #eef2f5;
    border-radius: 200px;
    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;
    text-align: center;
    align-items: center;
    justify-content: center;
    border: 1px solid #f3f3f3;
}
.unsuccess-notification .un-icon i{
    font-size: 35px;
    color: #fff;
    text-shadow: 0px 2px 0px rgba(40,40,40,0.06);
}
.unsuccess-notification .un-title{
    font-size: 18px;
    font-weight: normal;
    margin: 10px 0;
    line-height: 1;
}
.unsuccess-notification .un-text{
    margin: 0 0 10px;
    font-weight: normal;
    line-height: 1.5;
}
.unsuccess-notification .un-text strong{
    font-weight: 500;
}

/* Fancybox */
.app-fancy-container{
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    outline: none;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    width: 100%;
    z-index: 99992;
    overflow-y: auto;
}
.app-fancy-container .afc-bg{
    content: '';
    background: #1e1e1e;
    opacity: .9;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
}
.app-fancy-container .afc-content{
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    text-align: center;
    -ms-transform: translate( -50%, -50% );
    -moz-transform: translate( -50%, -50% );
    -webkit-transform: translate( -50%, -50% );
    transform: translate( -50%, -50% );
}
.app-fancy-container .afc-content:before{
    z-index: -1;
}
.app-fancy-container .afc-image{
    margin: 0 auto;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
.app-fancy-container .afc-closer{
    position: absolute;
    color: #fff;
    border: 0;
    outline: 0;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    width: 35px;
    height: 35px;
    font-size: 25px;
    text-align: center;
    padding: 0;
    top: 15px;
    right: 15px;
}
.scroll-fixed{
    overflow-y: hidden;
}

/* Popup models */
.model-wrapper {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99992;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: rgba(30, 30, 30, 0.9);
}
.model-wrapper.in {
    display: block;
}
.model-dialog {
    position: relative;
    background-clip: padding-box;
    background-color: #fff;
    width: 500px;
    box-shadow: 5px 2px 20px 0 rgba(0, 0, 0, 0.2);
    outline: 0;
    margin: 50px auto;
    padding: 20px;
    overflow: hidden;
}
.model-dialog .model-header{
    display: table;
    vertical-align: top;
    margin-bottom: 20px;
    width: 100%;
}
.model-dialog .model-closer,
.model-dialog .model-heading{
    display: table-cell;
    vertical-align: top;
}
.model-dialog .model-heading{
    padding-right: 15px;
    position: relative;
}
.model-dialog .model-heading .icon{
    margin-right: 5px;
}
.model-dialog .model-header h3 {
    font-size: 20px;
    margin: 0;
    font-weight: 500;
    line-height: 1.1;
}
.model-dialog .model-header h4{
    margin: 5px 00;
    font-weight: 500;
    font-size: 16px;
}
.model-dialog .model-closer{
    width: 25px;
}
.model-dialog .model-closer button{
    display: inline-block;
    background-color: transparent;
    font-size: 25px;
    outline: 0 !important;
    border: 0 !important;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    cursor: pointer;
    color: #626262;
    padding: 0;
}
.model-dialog .model-closer button:hover{
    color: #141414;
}
.model-dialog .model-content{
    position: relative;
}
.model-dialog .model-content .content-loader{
    position: absolute;
    border-radius: 0;
}
.model-dialog .model-content .content-loader.loading:after{
    top: 37%;
    left: 46%;
}

/* ---------------------------------
    Fonts
   --------------------------------- */
.f-s-12{ font-size: 12px !important; }
.f-s-13{ font-size: 13px !important; }
.f-s-15{ font-size: 15px !important; }

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

/* ---------------------------------
    Gutters
   --------------------------------- */
.m-t-0{ margin-top: 0 !important; }
.m-t-5{ margin-top: 5px !important; }
.m-t-10{ margin-top: 10px !important; }
.m-t-20{ margin-top: 20px !important; }
.m-t-25{ margin-top: 25px !important; }
.m-t-30{ margin-top: 30px !important; }
.m-t-50{ margin-top: 50px !important; }

.m-r-5{ margin-right: 5px !important; }
.m-r-10{ margin-right: 10px !important; }
.m-r-15{ margin-right: 15px !important; }

.m-b-0{ margin-bottom: 0px !important; }
.m-b-5{ margin-bottom: 5px !important; }
.m-b-10{ margin-bottom: 10px !important; }
.m-b-15{ margin-bottom: 15px !important; }
.m-b-20{ margin-bottom: 20px !important; }
.m-b-30{ margin-bottom: 30px !important; }
.m-b-50{ margin-bottom: 50px !important; }

.p-30{ padding: 30px !important; }
.p-t-5{ padding-top: 5px !important; }
.p-t-10{ padding-top: 10px !important; }
.p-b-5{ padding-bottom: 5px !important; }
.p-r-0{ padding-right: 0 !important; }

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

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

.w-100{ width: 100px !important; }
.w-120{ width: 120px !important; }
.w-180{ width: 180px !important; }
.w-250{ width: 250px !important; }
.w-300{ width: 300px !important; }
.w-350{ width: 350px !important; }
.w-600{ width: 600px !important; }