﻿.parent img,
body,
html {
    width: 100%;
    height: 100%;
}
body,
html {
    min-width: 100%;
    min-height: 100%;
    padding: 0;
    margin: 0;
    background-color: #fff;
}

input, textarea, select {
    font-size: 16px;
}

.float-right{
    float: right;
}

.pos-right{
    right: 0;
}

p{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

a,p,b,h1,h2,h3,h4,span,small,li,ul,label{
    line-height: 2!important;
}

/*.btn-success {*/
/*    color: #fff;*/
/*    background-color: #a4d09e;*/
/*    border-color: #a4d09e;*/
/*}*/
/*.btn-success:hover {*/
/*    color: #fff;*/
/*    background-color: #9dca97;*/
/*    border-color: #a4d09e;*/
/*}*/

::-webkit-scrollbar {
    width: 0;
}
::-webkit-scrollbar-track {
    background: 0 0;
}
::-webkit-scrollbar-thumb {
    background: 0 0;
}
::-webkit-scrollbar-thumb:hover {
    background: 0 0;
}
.hidden {
    display: none !important;
}
.center {
    display: block;
    margin: auto;
    width: min-content;
}
.outer,
.overlay {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.center-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.outer {
    display: table;
    position: absolute;
}
.middle {
    display: table-cell;
    vertical-align: middle;
}
.overlay {
    display: none;
    z-index: 99;
    position: fixed;
    right: 0;
    bottom: 0;
    opacity: 0.9;
    background-color: #000;
}
a {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
a:hover {
    text-decoration: none !important;
}
.content {
    padding: 7rem 0;
}
h2 {
    font-size: 20px;
}
.half,
.half .container > .row {
    height: 100vh;
}
.countedText {
    font-size: 80%;
    color: #777;
}
.form-incomplete {
    border: 2px solid red !important;
}
@media (max-width: 991.98px) {
    .half .bg {
        height: 500px;
    }
}
.half .bg,
.half .contents {
    width: 50%;
}
@media (max-width: 1199.98px) {
    .half .bg,
    .half .contents {
        width: 100%;
    }
}
.half .bg .form-group,
.half .contents .form-group {
    overflow: hidden;
    margin-bottom: 0;
    border: 1px solid #efefef;
    padding: 15px;
    border-bottom: none;
    position: relative;
}
.half .bg .form-group label,
.half .contents .form-group label {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    font-size: 15px;
    display: block;
    margin-bottom: 0;
    color: #969798;
}
.half .bg .form-group input:focus + label,
.half .bg .form-group.field--not-empty label,
.half .contents .form-group input:focus + label,
.half .contents .form-group.field--not-empty label {
    margin-top: -20px;
}
.content-wrapper {
    background-color: #f1f1f1;
}
.half .bg .form-group.first,
.half .contents .form-group.first {
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}
.half .bg .form-group.last,
.half .contents .form-group.last {
    border-bottom: 1px solid #efefef;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}
.half .bg .form-control,
.half .contents .form-control {
    border: none;
    padding: 0;
    font-size: 20px;
    border-radius: 0;
}
.half .bg .form-control:active,
.half .bg .form-control:focus,
.half .contents .form-control:active,
.half .contents .form-control:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.half .bg {
    background-size: cover;
    background-position: center;
}
.half a {
    color: #888;
    text-decoration: underline;
}
.half .btn {
    height: 54px;
    padding-left: 30px;
    padding-right: 30px;
}
.control {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 14px;
}
.control .caption {
    position: relative;
    top: 0.2rem;
    color: #888;
}
.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.control__indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #e6e6e6;
    border-radius: 4px;
}
.control--radio .control__indicator {
    border-radius: 50%;
}
.control input:focus ~ .control__indicator,
.control:hover input ~ .control__indicator {
    background: #ccc;
}
.control input:checked ~ .control__indicator {
    background: #007bff;
}
.control input:checked:focus ~ .control__indicator,
.control:hover input:not([disabled]):checked ~ .control__indicator {
    background: #1a88ff;
}
.control input:disabled ~ .control__indicator {
    background: #e6e6e6;
    opacity: 0.9;
    pointer-events: none;
}
.control__indicator:after {
    font-family: icomoon;
    content: "\e5ca";
    position: absolute;
    display: none;
    font-size: 16px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.control input:checked ~ .control__indicator:after {
    display: block;
    color: #fff;
}
.control--checkbox .control__indicator:after {
    top: 50%;
    left: 50%;
    margin-top: -1px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.control--checkbox input:disabled ~ .control__indicator:after {
    border-color: #7b7b7b;
}
.control--checkbox input:disabled:checked ~ .control__indicator {
    background-color: #7e0cf5;
    opacity: 0.2;
}
.toast-body{
    background-color: #fff;
    word-wrap: break-word;
}
.pointer {
    cursor: pointer !important;
}
.permission-checkbox-container {
    border-bottom: 1px solid #ddd;
}
.permission-checkbox-container small {
    display: block;
}
.permission-counts {
    float: right;
}
.account-quick-view {
    color: #0b1c2c;
}
.account-quick-view h5,
.account-quick-view p {
    margin-bottom: 10px;
}
.header-divider {
    font-weight: 700;
}

.alert a {
    color: inherit;
    text-decoration: underline;
}

.quill-editor, .ql-container{
    height: 100%!important;
    width: 100%!important;
}

.ql-editor {
    resize: vertical;
    overflow: auto;
    min-height: 450px;
    max-height: 800px;
}

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

.sidebar-collapse .main-sidebar .brand-link {
    padding: 15px 0 0 0;
    margin: 0;
}

.sidebar-collapse .main-sidebar .brand-link img{
    width: 75px;
    margin: 0;
}
.nav-sidebar .nav-treeview {
    margin-left: 20px;
    font-weight: 200;
}

.nav-sidebar .nav-treeview .nav-link.active{
    width: 80%;
}

.main-footer nav {
    border-bottom:unset;
}


@media (min-width: 768px){
    .col-md-4 {
        -webkit-flex: 0 0 33.333333%;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 500px;
    }

}