body{
    overflow-x: hidden !important;
    font-family: "Duplet Open Light", sans-serif;
}

iframe{
    width: 100%;
    height: auto;
    min-height: 600px;
}

.btn-primary, .btn-secondary, .btn-info, .btn-success, .btn-warning, .btn-gold, .btn-danger, .btn-dark, .btn-light{
    border-radius: 4px;
}

.badge-gold {
    color: #1c2030;
    background-color: #f9ff01;
    border-radius: 7px;
}
.dark-version .badge-gold {
    color: #d6d6d6;
    background-color: #1a2035;
}

.badge-blur {
    color: #1c2030;
    background-color: #e4e4e4;
    box-shadow: 0px 0px 4px 2px #e4e4e4;
    padding: 0px 7px;
    border-radius: 0;
    display: flex;
    align-items: center;
    width: 100%;
}

.form-control-blur {
    color: #e4e4e4;
    background-color: #e4e4e4 !important;
    border: 0 !important;
    box-shadow: 0px 0px 4px 2px #1a2035;
}

.loading{
    animation-name: rotateAnimation;
    -webkit-animation-name: wk-rotateAnimation;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@keyframes rotateAnimation {
    0%   {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}
@-webkit-keyframes wk-rotateAnimation {
    0%   {-webkit-transform: rotate(0deg);}
    100% {-webkit-transform: rotate(360deg);}
}

/* ::-webkit-scrollbar {
    display: none;
} */

@keyframes float {
    to {
        transform: translateY(0.75em);
        -webkit-transform: translateY(0.75em);
        -moz-transform: translateY(0.75em);
        -ms-transform: translateY(0.75em);
        -o-transform: translateY(0.75em);
}
}

/* #mode {
    position: absolute;
    right: 100vw;
    visibility: hidden;
}
#mode + label {
    --i: 0;
    --j: calc(1 - var(--i));
    display: grid;
    grid-gap: 2em 0.25em;
    overflow: hidden;
    height: 66px;
    color: transparent !important;
    user-select: none;
    transition: 0.3s;
    cursor: pointer;
    margin: 0;
    margin-bottom: -2px;
    margin-top: -2px;
}
#mode + label::before,
#mode + label::after {
    width: 1.3em;
    height: 1.3em;
    transition: inherit;
    content: "";
    position: relative;
    top: 3px;
    left: 0px;
}
#mode + label:before {
    background-image: url(../img/icons/optimized/night.png);
    background-size: 20px 20px;
    display: inline-block;
    width: 20px;
    height: 20px;

    transform-origin: 15% 15%;
    transform: translate(calc(var(--i) * (100% + -1em)))
        scale(calc(1 - var(--i) * 1));
}
#mode + label:after {

    background-image: url(../img/icons/optimized/day.png);
    background-size: 20px 20px;
    display: inline-block;
    width: 20px;
    height: 20px;

    transform: translatey(calc(var(--i) * (-100% - 2em)));
    -webkit-transform: translatey(calc(var(--i) * (-100% - 2em)));
    -moz-transform: translatey(calc(var(--i) * (-100% - 2em)));
    -ms-transform: translatey(calc(var(--i) * (-100% - 2em)));
    -o-transform: translatey(calc(var(--i) * (-100% - 2em)));

}
#mode:checked + label {
    --i: 1;
}

.dark-version #mode + label:before {
    background-image: url(../img/icons/optimized/night-white.png);
}
.dark-version #mode + label:after {
    background-image: url(../img/icons/optimized/day-white.png);
} */

.smallicon{
    height: 35px;
    width: 35px;
    border: 1px solid #014686;
    padding: 5px;
    border-radius: 5px;
    margin: 8px;
}
/* .icon{
    height: 40px;
    width: 40px;
} */
#navbarBlur .icon{
    height: 16px;
    width: 16px;
    margin-top: -2px;
}
.pageicon{
    height: 20px;
    width: 20px;
    padding: 2px;
    margin-top: -3px;
}
.pageicon_sm {
    height: 20px;
    width: 20px;
}
.boxicon{
    width: 35px;
    padding: 7px;
}
.asideicon{
    height: 27px;
    margin-right: 7px;
    /* border: 1px solid #676767; */
    padding: 2px;
}

.navbar-vertical .navbar-nav > .nav-item .nav-link.active{
    font-weight: normal !important;
}

.change-language i{
    font-size: 1.3em;
    position: absolute;
}

/* .yt-core-attributed-string--white-space-pre-wrap {
    white-space: pre-wrap;
} */

@media(max-width: 767px) {
    .boxicon{
        width: 40px;
    }

    .content .position-sticky{
        position:unset !important;
    }
}

/*Preload*/

#overlay{
    z-index: 1000000;
    position: fixed;
    top: 0;
    left: 0;
}
#overlay_custom{
    /* position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height:100%;
    background: rgba(0,0,0,0.8); */
    z-index: 1000000;
    display: none;
}
.cv-spinner {
    /* display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 2px;
    width: 100%;
    background: red; */
}
.spinner {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 3px;
    width: 100%;
    background: #F9FF01;
    position: fixed;
    top: 0;
    z-index: 9999999;
    animation: sp-anime 0.8s infinite linear;
}
.dark-version .spinner{
    background-color: #F9FF01;
}
@keyframes sp-anime {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}


.preloader {
    width: 100%;
    height: 100%;
    top: 0;
    position: fixed;
    z-index: 99999;
    background: #fff;
    text-align: center;
    overflow-y: hidden;
}

.dark-version .preloader {
    width: 100%;
    height: 100%;
    top: 0;
    position: fixed;
    z-index: 99999;
    background: #1a2035;
    text-align: center;
    overflow-y: hidden;
}

.dark-version .dataTables_wrapper .dataTables_length label select[aria-controls=table]{
    background-color: transparent;
    color: #f1f1f1;
}

.dark-version .dataTables_wrapper .dataTables_filter label input[type=search]{
    background-color: transparent;
    color: #f1f1f1;
}

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-grid-pulse,
.la-ball-grid-pulse > div {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.la-ball-grid-pulse {
    display: block;
    font-size: 0;
    color: #1a2035;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.la-ball-grid-pulse.la-dark {
    color: #fff;
}
.la-ball-grid-pulse > div {
    display: inline-block;
    float: none;
    background-color: currentColor;
    border: 0 solid currentColor;
}
.la-ball-grid-pulse {
    width: 36px;
    height: 36px;
}
.la-ball-grid-pulse > div {
    width: 8px;
    height: 8px;
    margin: 2px;
    border-radius: 100%;
    -webkit-animation-name: ball-grid-pulse;
    -moz-animation-name: ball-grid-pulse;
    -o-animation-name: ball-grid-pulse;
    animation-name: ball-grid-pulse;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.la-ball-grid-pulse > div:nth-child(1) {
    -webkit-animation-duration: 0.65s;
    -moz-animation-duration: 0.65s;
    -o-animation-duration: 0.65s;
    animation-duration: 0.65s;
    -webkit-animation-delay: 0.03s;
    -moz-animation-delay: 0.03s;
    -o-animation-delay: 0.03s;
    animation-delay: 0.03s;
}
.la-ball-grid-pulse > div:nth-child(2) {
    -webkit-animation-duration: 1.02s;
    -moz-animation-duration: 1.02s;
    -o-animation-duration: 1.02s;
    animation-duration: 1.02s;
    -webkit-animation-delay: 0.09s;
    -moz-animation-delay: 0.09s;
    -o-animation-delay: 0.09s;
    animation-delay: 0.09s;
}
.la-ball-grid-pulse > div:nth-child(3) {
    -webkit-animation-duration: 1.06s;
    -moz-animation-duration: 1.06s;
    -o-animation-duration: 1.06s;
    animation-duration: 1.06s;
    -webkit-animation-delay: -0.69s;
    -moz-animation-delay: -0.69s;
    -o-animation-delay: -0.69s;
    animation-delay: -0.69s;
}
.la-ball-grid-pulse > div:nth-child(4) {
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -o-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-delay: -0.41s;
    -moz-animation-delay: -0.41s;
    -o-animation-delay: -0.41s;
    animation-delay: -0.41s;
}
.la-ball-grid-pulse > div:nth-child(5) {
    -webkit-animation-duration: 1.6s;
    -moz-animation-duration: 1.6s;
    -o-animation-duration: 1.6s;
    animation-duration: 1.6s;
    -webkit-animation-delay: 0.04s;
    -moz-animation-delay: 0.04s;
    -o-animation-delay: 0.04s;
    animation-delay: 0.04s;
}
.la-ball-grid-pulse > div:nth-child(6) {
    -webkit-animation-duration: 0.84s;
    -moz-animation-duration: 0.84s;
    -o-animation-duration: 0.84s;
    animation-duration: 0.84s;
    -webkit-animation-delay: 0.07s;
    -moz-animation-delay: 0.07s;
    -o-animation-delay: 0.07s;
    animation-delay: 0.07s;
}
.la-ball-grid-pulse > div:nth-child(7) {
    -webkit-animation-duration: 0.68s;
    -moz-animation-duration: 0.68s;
    -o-animation-duration: 0.68s;
    animation-duration: 0.68s;
    -webkit-animation-delay: -0.66s;
    -moz-animation-delay: -0.66s;
    -o-animation-delay: -0.66s;
    animation-delay: -0.66s;
}
.la-ball-grid-pulse > div:nth-child(8) {
    -webkit-animation-duration: 0.93s;
    -moz-animation-duration: 0.93s;
    -o-animation-duration: 0.93s;
    animation-duration: 0.93s;
    -webkit-animation-delay: -0.76s;
    -moz-animation-delay: -0.76s;
    -o-animation-delay: -0.76s;
    animation-delay: -0.76s;
}
.la-ball-grid-pulse > div:nth-child(9) {
    -webkit-animation-duration: 1.24s;
    -moz-animation-duration: 1.24s;
    -o-animation-duration: 1.24s;
    animation-duration: 1.24s;
    -webkit-animation-delay: -0.76s;
    -moz-animation-delay: -0.76s;
    -o-animation-delay: -0.76s;
    animation-delay: -0.76s;
}
.la-ball-grid-pulse.la-sm {
    width: 18px;
    height: 18px;
}
.la-ball-grid-pulse.la-sm > div {
    width: 4px;
    height: 4px;
    margin: 1px;
}
.la-ball-grid-pulse.la-2x {
    width: 72px;
    height: 72px;
}
.la-ball-grid-pulse.la-2x > div {
    width: 16px;
    height: 16px;
    margin: 4px;
}
.la-ball-grid-pulse.la-3x {
    width: 108px;
    height: 108px;
}
.la-ball-grid-pulse.la-3x > div {
    width: 24px;
    height: 24px;
    margin: 6px;
}
/*
 * Animation
 */
@-webkit-keyframes ball-grid-pulse {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        opacity: 0.35;
        -webkit-transform: scale(0.45);
        transform: scale(0.45);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@-moz-keyframes ball-grid-pulse {
    0% {
        opacity: 1;
        -moz-transform: scale(1);
        transform: scale(1);
    }
    50% {
        opacity: 0.35;
        -moz-transform: scale(0.45);
        transform: scale(0.45);
    }
    100% {
        opacity: 1;
        -moz-transform: scale(1);
        transform: scale(1);
    }
}
@-o-keyframes ball-grid-pulse {
    0% {
        opacity: 1;
        -o-transform: scale(1);
        transform: scale(1);
    }
    50% {
        opacity: 0.35;
        -o-transform: scale(0.45);
        transform: scale(0.45);
    }
    100% {
        opacity: 1;
        -o-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes ball-grid-pulse {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    50% {
        opacity: 0.35;
        -webkit-transform: scale(0.45);
        -moz-transform: scale(0.45);
        -o-transform: scale(0.45);
        transform: scale(0.45);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

.fm .fm-body {
    min-height: 80vh;
}

.fm-navbar .fa,
.fm-navbar .fas,
.fm-navbar .far {
    font-size: 15px;
}

/*-----------------
	6. Toggle Button
-----------------------*/

.check {
    display: block;
    margin: 0;
    padding: 0;
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
}
.checktoggle {
    background-color: #e0001a;
    /* border-radius: 12px; */
    cursor: pointer;
    display: block;
    font-size: 0;
    height: 24px;
    margin-bottom: 0;
    position: relative;
    width: 48px;
    border-radius: 7px;
}
.checktoggle:after {
    content: " ";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(5px, -50%);
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-radius: 54px;
    transition: left 300ms ease, transform 300ms ease;
}
.check:checked + .checktoggle {
    background-color: #55ce63;
}
.check:checked + .checktoggle:after {
    left: 100%;
    transform: translate(calc(-100% - 5px), -50%);
}
.onoffswitch {
    margin-left: auto;
    position: relative;
    width: 73px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.onoffswitch-checkbox {
    display: none;
}
.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border-radius: 20px;
    margin-bottom: 0;
}
.onoffswitch-inner {
    display: block;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
    width: 200%;
}
.onoffswitch-inner:before,
.onoffswitch-inner:after {
    box-sizing: border-box;
    color: #fff;
    display: block;
    float: left;
    font-size: 16px;
    height: 30px;
    line-height: 32px;
    padding: 0;
    width: 50%;
}
.onoffswitch-inner:before {
    background-color: #55ce63;
    color: #fff;
    content: "ON";
    padding-left: 14px;
}
.onoffswitch-inner:after {
    content: "OFF";
    padding-right: 14px;
    background-color: #ccc;
    color: #fff;
    text-align: right;
}
.onoffswitch-switch {
    background: #fff;
    border-radius: 20px;
    bottom: 0;
    display: block;
    height: 20px;
    margin: 5px;
    position: absolute;
    right: 43px;
    top: 0;
    transition: all 0.3s ease-in 0s;
    width: 20px;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px;
}

.go_back {
    display: flex;
    text-align: center;
    height: 100%;
    border-right: 1px solid #eff1f4;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 0;
}
.go_back:hover{
    background-color: #eff1f4;
    border-radius: 7px 0 0 0;
}
.dark-version .go_back:hover {
    background-color: #202940;
}



/* Data Table */
.table-responsive{
    width: 100%;
}
.dataTables_wrapper{
  font-size: 13px;
  overflow-x: auto;
  padding-bottom: 15px;
  /* height: calc(100vh - 250px); */
}
/* Designing for scroll-bar */
.dataTables_wrapper::-webkit-scrollbar {
    width: 10px;
}

/* Track */
.dataTables_wrapper::-webkit-scrollbar-track {
    background: gainsboro;
    /* border-radius: 5px; */
}

/* Handle */
.dataTables_wrapper::-webkit-scrollbar-thumb {
    background: black;
    /* border-radius: 5px; */
}

/* Handle on hover */
.dataTables_wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.dataTables_wrapper .table{
    /* border: 1px solid #f0f2f5; */
    width: 99% !important;
}

table.dataTable.no-footer{
    border-bottom: 0;
}

div.dt-buttons{
    margin-left: 10px;
}
button.dt-button.buttons-csv.buttons-html5 {
    background: #F9FF01;
    color: #fff;
    border: 0;
}


.dark-version .dataTables_wrapper .table{
    /* border: 1px solid #797f8c; */
}

.dataTables_wrapper .dataTables_info{
    font-size: 13px;
    color: #7b809a !important;
    padding-top: 1.5rem !important;
}
.dataTables_wrapper .dataTables_length label select[aria-controls=table] {
    height: 30px;
    width: 69px;
    border-radius: 7px;
    border: 1px solid #e1e1e1;
    padding: 0 10px;
}

.dark-version .dataTables_wrapper .dataTables_length label select[aria-controls=table]{
    border: 1px solid #616161 !important;
}

.dataTables_wrapper .dataTables_filter{
    margin-bottom: 1rem;
}

.dataTables_wrapper .dataTables_filter label input[type=search] {
    border: 1px solid #e1e1e1;
    border-radius: 7px;
    padding: 3px 15px;
}
.dark-version .dataTables_wrapper .dataTables_filter label input[type=search]{
    border: 1px solid #616161 !important;
}

.dataTables_wrapper .dataTables_filter .is-focused input[type=search] {
    /* border: 1px solid #ccc; */
    outline: 1px solid #ccc;
}

.dataTables_wrapper .dataTables_paginate{
    float: none !important;
    padding-top: 1.5em !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  border-radius: 20px !important;
  border: 1px solid #e1e1e1 !important;
  padding: 0.2em 1em;
  font-size: 13px;
  color: #7b809a !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover{
  background: #f9bb17 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current{
  background: #adce4a !important;
  border: none !important;
  color: #fff !important;
}

.dataTables_wrapper .dropdown-menu {
    box-shadow: none;
    border: 1px solid #f1f1f1;
    left: -23px !important;
}

.dataTables_wrapper .dropdown-menu .btn:active{
    box-shadow: none !important;
}

@media(max-width: 767px) {
    .dataTables_wrapper{
        font-size: 13px;
        overflow-x: auto;
        padding-bottom: 15px;
        height: auto;
    }
}

.table tr td{
    vertical-align: middle;
}

table.dataTable thead th, table.dataTable thead td {
    padding: 10px 7px;
}

table.dataTable tbody th, table.dataTable tbody td{
    padding: 5px 7px;
}

table.dataTable td.dataTables_empty{
    height: 40vh !important;
}



.table-responsive .table tr td{
    color: #333;
    border-bottom: 1px solid #f0f2f5;
    border-right: 0;
}

.table-responsive .table tr td:first-child{
    border-left: 0;
}

.table-responsive .table tr th{
    color: #1c2030;
    border-right: 0;
    /* background: #e1e1e1; */
}

.table-responsive .table tr th:first-child{
    border-left: 0;
}


/* tinymce custom design  */

.tinymce_desc .form-label{
    top: -0.375rem !important;
    margin-bottom: 0 !important;
    line-height: 1.4 !important;
    background: #fff;
    z-index: 2;
}

.tinymce_desc .form-label:before{
    border-color: #d2d6da !important;
}

.tox-tinymce {
    border: 1px solid #ccc!important;
    border-radius: 5px!important;
    width: 100%;
    min-height: 50vh;
}

.tox .tox-menubar{
    background-color: #fff0!important;
}



table.dataTable tbody tr{
    background-color: transparent !important;
}

.dataTables_processing{
    background-color: #dee2e6 !important;
    padding: 1em 1em 1em 1em !important;
    z-index: 1;
    min-height: 55px !important;
    height: 100% !important;
    width: 100% !important;
    position: absolute !important;
    top: 21px !important;
    left: 0 !important;
    margin-left: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark-version .dataTables_processing{
    /* background-color: #ffffff45 !important;
    background: none;
    padding: 2em 2em 3.5em 2em; */

    background: #000 !important;
    color: #f1f1f1 !important;
}

.fm{
    background-color: transparent !important;
}

.fm-table thead th{
    background-color: transparent !important;
}

.tinymce{
    min-height: 60vh;
}
.tox .tox-dialog--width-lg{
    max-width: 850px !important;
}



.select2-container{
    width: 100% !important;
    font-size: 0.875rem;
}
.select2-container .select2-selection--single{
    height: auto !important;
    padding: 0.59rem 0.59rem !important;
    border: 1px solid #dee2e6;
    min-height: 36px;
}

.select2-container--default .select2-selection--single{
    border: 1px solid #dee2e6 !important;
    /* border-top: 0 !important; */
    border-radius: 6px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    color: #646565;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 40px !important;
    top: 4px !important;
    right: 6px !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    color: inherit;
}

.select2-container--default .select2-selection--multiple{
    border: 1px solid #dee2e6 !important;
    /* border-top: 0 !important; */
    padding-bottom: 13px !important;
    padding-top: 13px !important;
    border-radius: 7px;
}

.dark-version .select2-container--default .select2-selection--multiple{
    background-color: #1c2030;
    border-color: #1c2030 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b{
    border-color: #363943 transparent transparent transparent;
}

.form-group .select2-container--default .select2-selection--multiple{
    border-top: 1px solid #d2d6da !important;
    padding-bottom: 4px !important;
    padding-top: 4px !important;
}

.is-invalid.is-focused .select2-selection--multiple, .is-invalid.is-focused .select2-container .select2-selection--single{
    border-right: 2px solid #f44335 !important;
    border-bottom: 2px solid #f44335 !important;
    border-left: 2px solid #f44335 !important;
}

.is-valid .select2-selection--multiple, .is-valid .select2-container .select2-selection--single{
    border-right: 2px solid #4fb66d !important;
    border-bottom: 2px solid #4fb66d !important;
    border-left: 2px solid #4fb66d !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #F9FF01 !important;
    border: 1px solid #F9FF01 !important;
    color: #000 !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
    color: #000 !important;
}



.dark-version .select2-dropdown{
    background: #202940;
}

.dark-version .select2-container .select2-selection--single{
    background: transparent;
    color: inherit;
}
.dark-version .select2-container--default .select2-search--dropdown .select2-search__field {
    background: transparent;
    color: inherit;
}

.icon-in-title{
    position: relative;
    top: 4px;
}

language-text{
    vertical-align: middle;
}

.text-xs {
    font-size: 0.69rem !important;
}

@media only screen and (max-width:756px){
    .language-text{
        display: none;
    }
}



.is-invalid textarea{
    /* border: 2px solid #F44335 !important; */
}
.is-invalid select{
    /* border: 2px solid #F44335 !important; */
}

.input-group.input-group-outline.is-focused .form-label + .form-control, .input-group.input-group-outline.is-filled .form-label + .form-control{
    border-color: #dee2e6 !important;
    border-top-color: transparent !important;
    box-shadow: none;
    border-radius: 6px !important;
}

.dark-version .input-group.input-group-outline.is-focused .form-label + .form-control, .dark-version .input-group.input-group-outline.is-filled .form-label + .form-control{
    border-color: #1c2030 !important;
    background-color: #1c2030;
    color: #bdbdbd !important;
}

.input-group.input-group-outline.is-focused .form-label, .input-group.input-group-outline.is-filled .form-label{
    color: #1c2030;
    z-index: 7;
    height: 7px;
    background: transparent;
    font-weight: bold;
}

.dark-version .input-group.input-group-outline.is-focused .form-label, .dark-version .input-group.input-group-outline.is-filled .form-label{
    height: 0px;
}

.input-group.input-group-outline.is-focused .form-label:before, .input-group.input-group-outline.is-focused .form-label:after, .input-group.input-group-outline.is-filled .form-label:before, .input-group.input-group-outline.is-filled .form-label:after {
    border-top-color: #dee2e6;
    box-shadow: none;
}

.dark-version .input-group.input-group-outline.is-focused .form-label:before, .dark-version .input-group.input-group-outline.is-focused .form-label:after, .dark-version .input-group.input-group-outline.is-filled .form-label:before, .dark-version .input-group.input-group-outline.is-filled .form-label:after{
    border-top-color: #1c2030;
}

.input-group.input-group-outline.is-filled .form-label {
    font-size: .85rem !important;
    line-height: 1 !important;
}

.input-group.input-group-outline .form-label span{
    background: #ffffff;
    padding: 7px;
    position: relative;
    top: -7px;
    border-radius: 5px;
    height: 20px;
}

.dark-version .input-group.input-group-outline .form-label span{
    background-color: #1c2030;
}

.input-group.input-group-outline .form-label span.required{
    padding-right: 20px;
}

.flatpickr-calendar.animate.open{
    margin-left: 0%;
}

.dropzone {
    width: 100%;
    min-height: 150px !important;
    background-color: #363943 !important;
    border-color: #363943 !important;
    color: #fff;
    padding: 10px 10px !important;
    border-radius: 9px !important;

    position: sticky;
    top: 0;
}

.dropzone .dz-message {
    margin: 0em 0 !important;
    border: 1px dotted #fff;
    padding: 10px 5px;
    height: 100%;
}

.dropzone h6 {
    color: #fff;
}

.dropzone .dz-processing  .dz-image{
    border: 2px solid #ddd;
}

.dropzone .dz-error .dz-image{
    border: 2px solid red !important;
    background: linear-gradient(to bottom, #f00, #f00) !important;
}

.dropzone .dz-complete .dz-image{
    border: 2px solid #4fb66d;
    background: linear-gradient(to bottom, #4fb66d, #4fb66d);
}

.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark{
    margin-left: -26px !important;
    margin-top: -40px !important;
}

.dropzone .dz-preview .dz-error-message{
    top: 147px;
}

.dropzone .dz-preview{
    margin: 8px !important;
}

.dropzone .dz-preview.dz-image-preview{
    background: transparent !important;
}

.dropzone .dz-preview .dz-remove{
    color: #fff !important;
}

/* .g-sidenav-pinned .dropzone .dz-preview .dz-image{
    width: 80px;
    height: 80px;
} */

.g-sidenav-hidden .dropzone .dz-preview .dz-image{
    width: 100px;
    height: 100px;
}

.dropzone .dz-preview .dz-details{
    padding: 1em !important;
}

.dropzone .dz-preview .dz-details .dz-size {
    font-size: 12px;
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span{
    font-size: 12px;
}

.dropzone .dz-preview.dz-error .dz-error-message{
    display: block !important;
}

.ps__rail-x{
    display: none !important;
}

.custom_dashboard_box h6{
    font-size: 15px;
    color: #1c2030;
}
/* .custom_dashboard_box:hover .custom_dashboard_box_h1{
    background-image: linear-gradient(195deg, #1c2030, #1c2030);
}
.dark-version .custom_dashboard_box:hover .custom_dashboard_box_h1{
    background-image: linear-gradient(195deg, #fff, #fff);
} */



.sub_chk, #master_chk{
    width: 18px;
    height: 18px;
    line-height: 1;
    box-shadow: 0 0 1px rgb(120 130 140 / 85%);
    display: inline-block;
    vertical-align: middle;
    opacity: 50%;
}

.sub_chk{
    opacity: 30%;
}


#instruction {
    overflow-y: auto !important;
    height: auto;
    width: 100%;
}
/* #instruction::-webkit-scrollbar {
    display: block;
    width:12px;
}
#instruction::-webkit-scrollbar-track {
    background-color: #eee;
}
#instruction::-webkit-scrollbar-thumb {
    background-color: #aaa;
    border-radius: 6px;
    transition: background-color 0.2s linear, width 0.2s ease-in-out;
    -webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
    width: 6px;
    right: 2px;
    position: absolute;
} */

/* .note-editor .btn.btn-sm i, .note-editor .btn-group-sm > .note-editor .btn i{
    font-size: .7rem;
} */

.note-editor.note-airframe .note-editing-area .note-editable, .note-editor.note-frame .note-editing-area .note-editable{
    /* height: auto !important; */
    background-color: #f1f1f1;
}

.dark-version .note-editor.note-airframe .note-editing-area .note-editable, .dark-version .note-editor.note-frame .note-editing-area .note-editable{
    background-color: #1c2030;
}

.note-editor.note-airframe, .note-editor.note-frame{
    border-color: #dee2e6;
}

.dark-version .note-editor.note-airframe, .dark-version .note-editor.note-frame{
    border-color: #1c2030;
}

.note-frame{
    border-radius: 7px;
}

.note-modal-backdrop{
    display: none !important;
}

.note-editor .dropdown-toggle::after {
    border: none;
    margin-left: 0;
    display: none;
}

.note-toolbar{
    background: #fff;
    border-color: #fff;
    padding: 7px !important;
}

.dark-version .note-toolbar {
    background: #1a2035;
    border-color: transparent;
}

.note-modal{
    position: absolute !important;
}

.note-editor .note-toolbar .note-para .note-dropdown-menu, .note-popover .popover-content .note-para .note-dropdown-menu {
    min-width: 237px;
}

.note-editor .note-toolbar .note-dropdown-menu, .note-popover .popover-content .note-dropdown-menu {
    min-width: 220px;
}

.dark-version .note-btn {
    color: #bdbdbd;
    background-color: #000000;
    border: 1px solid #000000;
}

.trash_button {
    display: flex;
    text-align: center;
    height: 100%;
    border-left: 1px solid #eff1f4;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 0;
}

.dark-version .trash_button{
    border-left: 1px solid #1a2035;
}

.trash_button:hover {
    background-color: #eff1f4;
    border-radius: 0px 7px 0 0;
}
.dark-version .trash_button:hover {
    background-color: #202940;
}

.trash_button img{
    height: 20px;
    width: 20px;
}

.accordion-item {
    background-color: transparent;
    border-bottom: 1px solid #eeeeee;
}
.dark-version .accordion-item{
    border-bottom: 1px solid #1c2030;
}
.accordion-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    background-color: #f0f2f5;
}
.accordion-button{
    color: #004884;
}
.accordion-button:not(.collapsed){
    color: #344767;
}



#password_hide_show, #password_hide_show_confirmation {
    cursor: pointer;
    z-index: 9;
    border-radius: 0 !important;
    border-radius: 0 5px 5px 0 !important;
    width: auto !important;
    padding: 12.5px;
}


.btn-lg, .btn-group-lg > .btn{
    border-radius: 0rem;
}

.custom_alert .alert-dismissible .btn-close{
    top: -2px;
    right: 7px;
    background: none;
}
.custom_alert .alert-dismissible .btn-close span{
    color: #fff;
    font-size: 26px;
}
.custom_alert .alert-success, .custom_alert .alert-warning, .custom_alert .alert-danger, .custom_alert .alert-info{
    color: #fff;
    border-radius: 0;
}
.custom_alert .alert-success, .custom_alert .alert-warning, .custom_alert .alert-danger, .custom_alert .alert-info p{
    padding-bottom: 1px;
    border-radius: 7px;
}
#custom_checkbox .checkbox-tools + label {
    display: flex;
    flex-direction: column;
}

.sweet-alert button{
    border-radius: 0 !important;
}

/* Blink for Webkit and others
(Chrome, Safari, Firefox, IE, ...)
*/

@-webkit-keyframes blinker {
    from {opacity: 1.0;}
    to {opacity: 0.0;}
}
.blink_me{
    text-decoration: blink;
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 0.9s;
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-timing-function:ease-in-out;
    -webkit-animation-direction: alternate;
}

.dashboard-icon{
    height: 40px;
}



.create-button, .update-button {
    padding: 15px 20px 12px 20px;
    border-radius: 7px;
}

.create-button i{
    /* font-size: 1.2em; */
    position: relative;
    top: 1px;
}



.edit-button {
    padding: 10px 15px 7px 15px;
}

.edit-button i{
    position: relative;
    top: 1px;
}

.content .position-sticky {
    /* margin-bottom: 2px !important; */
    /* margin-left: 0.4em;
    margin-right: 0.4em; */
    margin-top: 0px;
    z-index: 2 !important;
}

.content .position-sticky .card{
    background: #dee2e6;
    border-radius: 0.5rem 0.5rem 0 0;
    box-shadow: none;
    /* border: 1px solid #363943; */
    border-bottom: 1px solid #fff;
    /* padding: 10px 0; */
}

.dark-version .content .position-sticky .card {
    background: #000;
    border: inherit;
}



.content .index-card{
    border-radius: 0 0 0.5rem 0.5rem;
    background-color: #dee2e6;
    /* border: 1px solid #363943; */
    border-top: 0;
}

.dark-version .content .index-card{
    background-color: #000;
    border-top: 1px solid #1c2030;
}

.content .position-sticky .row h6.font-weight-bolder{
    color: #363943;
}



.custom-card{
    background: #dee2e6;
}

.custom-card .card-header{
    background: transparent;
}

.custom-card-second{
    background: #dee2e6;
}

.custom-card-second .card-header{
    background: transparent;
}

.custom-card-second .custom-content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.custom-card-second .custom-icon{
    font-size: 70px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    color: #676767;
}

.custom-play-border{
    border-bottom: 2px dashed #1c2030;
    width: 70%;
    position: absolute;
    top: 45%;
    left: 15%;
}
.dark-version .custom-play-border{
    border-color: #fff;
}
.custom-play-text{
    width: 70%;
    position: absolute;
    top: 50%;
    left: 15%;
    color: #1c2030;
    font-size: 27px;
    font-weight: 500;
    font-family: "Duplet Open Light", sans-serif;
}
.dark-version .custom-play-text{
    color: #bdbdbd;
}

.custom-card .accordion-item{
    background-color: #fff;
    border-radius: 5px !important;
    margin-bottom: 5px;
}

.dark-version .custom-card .accordion-item {
    background-color: #1c2030;
}

.custom-card .accordion .accordion-button {
    font-size: 18px;
}


#notification .badge-no-notification{
    /* margin-top: -34px !important; */
    position: absolute;
    top: 5px !important;
    left: 24px;
    padding: 4px 6px 4px 5px;
    border-radius: 100px;
    background: #dee2e6;
    color: #1c2030 !important;
}

#notification .badge-notification{
    position: absolute;
    top: 5px !important;
    left: 24px;
    padding: 4px 5px 3px 5px;
    border-radius: 100px;
    background: #ff0202;
}

#embed_html_container iframe{
    width: 100%;
}


@media(max-width: 991px) {


    iframe{
        width: 100%;
        height: auto;
        min-height: 400px;
    }
    .custom_form_for_dashboard_box{
        font-size: 11px !important;
        line-height: 25px;
    }

    .navbar-main{
        border-radius: 0em !important;
    }


    .change-language i{
        font-size: 1em;
        position: relative;
    }

    .main-content .content {
        padding: 10px !important;
        margin-top: -1px !important;
    }

    .content .position-sticky {
        position: unset !important;
        border-radius: 0 !important;
        margin-bottom: 3px !important;
        margin-left: 0px;
        margin-right: 0px;
    }

    .card .card-body {
        padding: 1.5rem;
    }

    .navbar-vertical .navbar-brand > img, .navbar-vertical .navbar-brand-img{
        max-width: 77% !important;
    }
    .navbar-main .nav-link {
        padding: 1.3rem 1rem !important;
    }
    #notification .badge-notification {
        left: 24px !important;
    }
}
