<<<<<<< Updated upstream
@charset "utf-8";
/*****************************************/
/***************** Fonts *****************/
/*****************************************/
@font-face {
    font-family: 'Concertone Regular';
    src: url('../font/concertone-regular.woff2') format('woff2'),
         url('../font/concertone-regular.woff') format('woff'),
         url('../font/concertone-regular.svg#concert_oneregular') format('svg'),
         url('../font/concertone-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: fallback;
}
/*****************************************/
/***************** html *****************/
/*****************************************/
body,html {
    scroll-behavior: smooth;
    font-family: sans-serif;
    color:#eee;
    background-color:#1e1e1e;
    overflow-x: hidden !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}
h2,h3,h4,h5,h6{
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}
ul {
    padding: .5rem;
    margin: 0;
}
ul.list-alpha {
	list-style-type: lower-alpha;
	padding-left: 2rem;
}
a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
button {
    cursor: pointer;
}
button  *::selection{
    background: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select:none;
    -webkit-touch-callout: none;
    user-select: none;
}
form p{
    margin: .5rem 0 .2rem;
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: normal;
}
form small.form-text{
    margin-top: -.5rem;
    font-size: .75rem;
    text-align: center;
    line-height: .75rem;
}
/*****************************************/
/************** backgrounds **************/
/*****************************************/
.default-bg{
    background-color: #006635 !important;
}
.danger-bg {
    background-color: #f2dede !important;
}
.warning-bg {
    background-color: #fcf8e3 !important;
}
.info-bg {
    background-color: #d9edf7 !important;
}
.success-bg {
    background-color: #dff0d8 !important;
}
.white-bg{
    background-color: #fff !important;
}
/*****************************************/
/***************** Colors ****************/
/*****************************************/
.color-info {
    color: #31708f !important;
}
.color-danger {
    color: #a94442 !important;
}
.color-warning{
    color: #8a6d3b !important;
}
.color-success {
    color: #3c763d !important;
}
/*****************************************/
/**************** borders ****************/
/*****************************************/
.border-red2{
    border:1px solid #ff0000;
}
.border-green2{
    border:1px solid #00ff00;
}
.border-blue2{
    border:1px solid #0000ff;
}
.border-ss{
    border-color: #D93235 !important;
}
/*****************************************/
/**************** helpers ****************/
/*****************************************/
.header-module{
    font-size: 2.6rem;
    color: #fff;
    margin-top: 4rem;
    padding: 1.5rem;
}
.body-module{
    padding: 2rem 1rem 1rem;
}
.footer-module{
    margin-bottom: 4rem;
    padding: 2rem;
}
.font-aw{
    font: 'FontAwesome';
}
.disabled {
    pointer-events: none !important;
}
.disabled:focus {
    outline: none !important;
    -webkit-box-shadow: none!important;
    -moz-box-shadow: none!important;
    box-shadow: none!important;
}
.text-ellipsis{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.text-inverted{
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.dropdown-icon{
    -webkit-transition:  all 0.3s ease-in-out;
    -moz-transition:  all 0.3s ease-in-out;
    -o-transition:  all 0.3s ease-in-out;
    transition:  all 0.3s ease-in-out;
}
.dropdown-icon.open{
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
[data-toggle="popover"]{
    cursor: pointer;
    outline: none;
}

.no-corners-sm{
    clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0% calc(100% - 10px), 0% 10px);
}
.no-corners-md{
    clip-path: polygon(20px 0%, calc(100% - 20px) 0%, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0% calc(100% - 20px), 0% 20px);
}
.no-corners-lg{
    clip-path: polygon(2rem 0%, calc(100% - 2rem) 0%, 100% 2rem, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 2rem 100%, 0% calc(100% - 2rem), 0% 2rem);
}

.class-height-f-100 {
    display: flex;
    flex-direction: column;
    height: 100%;
}
/*****************************************/
/**************** Circle *****************/
/*****************************************/
.min-circle{
    display: inline-block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.min-circle-green{
    background-color: #3c763d;
}
.min-circle-yellow{
    background-color: #e6b900;
}
.min-circle-red{
    background-color: #C32035;
}
.min-circle-blue{
    background-color: #42a4ac;
}
.min-circle-gray{
    background-color: #999;
}

.min-circle-sm{
    width: 1rem;
    height: 1rem;
}
/*****************************************/
/**************** Media *****************/
/*****************************************/
.media-aspectratio-16-9, .media-aspectratio-3-4{
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    border-radius: .25rem;
}
.media-aspectratio-1-1{
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
/*****************************************/
/*************** table *******************/
/*****************************************/
.table{

}
.table td, .table th {
    border-top: 1px solid #444444;
    vertical-align: bottom !important;
    font-size: 0.875rem;
}
.table th {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: normal;
    font-family: Arial, sans-serif;
    border-bottom: 2px solid #3e3e3e !important;
    color: #fff
}
.table th > i{
    margin-top: .25rem;
    cursor: pointer;
}
.table td{
    vertical-align: middle !important;
}
.table-btn{
    background: transparent;
    border: 0;
    padding: .25rem;
    cursor: pointer;
    font-size: 1.125rem;
    color: #eee;
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    border-radius: .25rem;
    -webkit-transition:  all 0.3s ease-in-out;
    -moz-transition:  all 0.3s ease-in-out;
    -o-transition:  all 0.3s ease-in-out;
    transition:  all 0.3s ease-in-out;
}
.table-btn + .table-btn{
    margin: 0 .25rem;
}
.table-btn:hover,
.table-btn:focus{
    color: #eee;
    background-color: rgba(255,255,255,0.14);
    outline: none;
}
.table-col-static {
    position:sticky;
    left:0;
}

.page-content .table-striped tbody tr:nth-of-type(odd),
.page-content .container-layout-table .container-layout-body .container-layout-row:nth-of-type(odd){
    background-color: #282828;
}
.page-content .table-hover tbody tr:hover,
.page-content .container-layout .container-layout-body .container-layout-row:hover{
    background-color: #2e2e2e;
}

.page-content .table-striped tbody tr:nth-of-type(odd) td.col-static,
.page-content .table-striped .container-trow:nth-of-type(odd){
    background-color: #282828;
}
.page-content .table-striped th.col-static,
.page-content .table-striped tbody tr:nth-of-type(even) td.col-static,
.page-content .table-striped .container-trow:nth-of-type(even){
    background-color: #1a1a1a;
}

.page-content .table-striped tbody tr:nth-of-type(odd):hover td.col-static,
.page-content .table-striped tbody tr:nth-of-type(even):hover td.col-static,
.page-content .table-striped .container-trow:nth-of-type(odd):hover,
.page-content .table-striped .container-trow:nth-of-type(even):hover{
    background-color: #2e2e2e;
}
/*****************************************/
/***************** boostrap *****************/
/*****************************************/
.dropdown-menu {
    margin-left: .5rem;
    padding: 0;
    background-color: #1A1A1A;
    color: #eee;
}
.page-content .dropdown-item.disabled,
.page-content .dropdown-item:disabled{
    opacity: .5;
}
.dropdown-menu *::selection{
    background: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select:none;
    -webkit-touch-callout: none;
    user-select: none;
}
.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus{
    cursor: pointer;
}
.btn-primary,
.dropdown-item.active, .dropdown-item:active{
    /*color: #fff;
    background-color: #006635;
    border-color: #006635;*/
}

.btn-primary:hover,
.btn-primary:focus, .btn-primary.focus,
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show>.btn-primary.dropdown-toggle{
    /*color: #fff;
    background-color: #006635;
    border-color: #005329;
    box-shadow: 0 0 0 0.2rem rgba(0,83,41,0.5);*/
}
.btn:focus, .btn.focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show>.btn-primary.dropdown-toggle:focus {
    /*box-shadow: 0 0 0 0.2rem rgba(0,83,41,0.5);*/
}
.form-control:focus{
    /*color: #495057;
    background-color: #fff;
    border-color: #005329;
    box-shadow: 0 0 0 0.2rem rgba(0,83,41,0.5);*/
}

.input-group{
    margin-bottom: .75rem;
}
.input-group .input-group-text i{
    width: 1rem;
}
.input-group .input-group-counter{
    padding: 0;
    border: 0 !important;
    position: relative;
    flex: 1 1 auto;
    width: 1%;
}
.input-group .input-group-counter-text{
    padding-right: .5rem;
    text-align: right;
    font-size: .875rem;
    font-family: Arial, sans-serif;
    border: 1px solid #ced4da;
    border-top: 0;
}
.input-group .form-control:disabled + .input-group-counter-text{
    display: none;
}
.input-group .input-group-text .custom-control {
    padding-left: 1rem;
    margin-top: -.25rem;
    min-height: 1rem;
}
.custom-control-indicator {
    border: 1px solid #999;
}

.navbar-toggler {
    padding: .25rem .5rem;
}
.table-responsive>.table td,
.table-responsive>.table th{
    white-space: nowrap;
}
.alert{
    display: flex;
    padding: 1rem;
    text-align: justify;
    -webkit-transition:  all 0.3s ease-in-out;
    -moz-transition:  all 0.3s ease-in-out;
    -o-transition:  all 0.3s ease-in-out;
    transition:  all 0.3s ease-in-out;
}
.alert:focus{
    outline: none;
}
.alert-sm{
    font-size: 0.875rem;
    padding: 0.625rem;
    line-height: .875rem;
}
.alert .alert-icon{
    font-size: 1.313rem;
    margin: auto .5rem auto 0;
}
.alert .alert-content{
    width: 100%;
    margin: auto .5rem auto 0;
}
.alert .alert-content .alert-content-details{
    width: 100%;
    overflow: auto;
}
.alert-sm .alert-close{
    line-height: .875rem;
}
.alert .alert-close{
    margin: .25rem 0 auto auto;
    color: #000 !important;
}
.alert-danger .well{
    border-color: #f5c6cb;
}
.alert-warning .well{
    border-color: #ffeeba;
}
.alert-success .well{
    border-color: #c3e6cb;
}
.alert-info .well{
    border-color: #bee5eb;
}
@media (max-width: 448px) {
    .alert .alert-content{
        overflow: auto;
    }
}

.badge{
    margin-left: -.5rem;
   /* background-color: #006635;*/
    -webkit-border-radius: 1rem 1rem 1rem 0;
    -moz-border-radius: 1rem 1rem 1rem 0;
    border-radius: 1rem 1rem 1rem 0;
    color: #fff;
    font-size: 0.75rem;
    line-height: 1rem;
    padding: .2rem .5rem;
}
.modal-header *::selection{
    background: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select:none;
    -webkit-touch-callout: none;
    user-select: none;
}
.modal-footer{
    -webkit-border-radius: 0 0 .3rem .3rem;
    -moz-border-radius: 0 0 .3rem .3rem;
    border-radius: 0 0 .3rem .3rem;
}
@media (max-width: 575px) {
    .modal-xl {
        max-width: 96% !important;
    }
}
@media (min-width: 576px) {
    .modal-xl {
        max-width: 90% !important;
    }
}

.carousel-control-prev, .carousel-control-next{
    /*color: #006635;*/
    font-size: 2rem;
    opacity: .7;
}
.carousel-indicators li{
   /* background-color: #006635;*/
}

.nav-responsive{
    overflow-x: auto;
}
.nav-responsive .nav{
    flex-flow: nowrap;
}
.nav-tabs{
    padding: 0 1rem;
}
.nav-tabs *::selection{
    background: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select:none;
}
.nav-tabs .nav-link{
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    outline: none;
    border-bottom: 3px solid transparent;
    -webkit-transition:  all 0.3s ease-in-out;
    -moz-transition:  all 0.3s ease-in-out;
    -o-transition:  all 0.3s ease-in-out;
    transition:  all 0.3s ease-in-out;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus,
.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{
    /*color: #006635;*/
}
.tab-content{
    margin-top: 1rem;
}
.tab-pane{
    padding: 0 1rem;
    outline: none;
}

.card{

}
h2,.card .card-header h3,
.card .card-header h4,.card .card-header h5{
    margin: 0;
}
.card .card-header .close{
    margin-left: auto;
}
.card > .card-body:first-child{
    border-top-left-radius: .125rem;
    border-top-right-radius: .125rem;
    -moz-border-radius-topleft: .125rem;
    -moz-border-radius-topright: .125rem;
    -webkit-border-top-left-radius: .125rem;
    -webkit-border-top-right-radius: .125rem;
}
.card > .card-body:last-child{
    border-bottom-left-radius: .125rem;
    border-bottom-right-radius: .125rem;
    -moz-border-radius-bottomleft: .125rem;
    -moz-border-radius-bottomright: .125rem;
    -webkit-border-bottom-left-radius: .125rem;
    -webkit-border-bottom-right-radius: .125rem;
}
.card .subtitle{
    margin-bottom: 1rem;
}
@media (max-width: 448px) {/*xs*/
   .card .card-body{
       padding-left: .75rem;
       padding-right: .75rem;
   }
}

.tooltip{
    font-size: .75rem;
}

.accordion .card + .card{
    border-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.accordion .card + .card .card-header{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.accordion .card-header, .accordion .card-header h5{
    align-items: center;
    display: flex;
    outline: none;
}
.accordion .card-header:hover,
.accordion .card-header:focus {
    background-color: #2d2d2d;
}
.accordion .card-header h5{
    width: 100%;
}
.accordion .card-header.collapsed {
    border-bottom: 0;
}
.accordion .card-header .card-icon{
    margin-right: .75rem;
}
.accordion .card-header .card-icon.card-icon-sm{
    width: 3rem;
    height: 2.5rem;
    text-align: center;
}
.accordion .card-header .card-icon.card-icon-sm i{
    font-size: 2.5rem;
    line-height: 2.5rem;
}
.accordion .card-header .card-icon.card-icon-sm i.ss{
    font-size: 2rem;
}
.accordion .card-header .subtitle{
    margin: 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.accordion .card-header span{
    overflow:hidden;
    white-space:nowrap;
    text-overflow: ellipsis;
    margin-right: 1rem;
    line-height: 1.75rem;
}
.accordion .card-header .dropdown-icon{
    font-size: 1rem;
    width: 1.25rem;
    text-align: center;
}
/*****************************************/
/*************** Scroll Up ***************/
/*****************************************/
.scroll-up {
    cursor:pointer;
    width: 2.5rem;
    height: 2.5rem;
    position:fixed;
    bottom:1rem;
    right:1rem;
    z-index: 40;
    display: none;
    opacity: .75;
}
.scroll-up:hover {
    opacity: 1;
}
.scroll-up.scroll-up-active {
    display: block;
}
.scrollbar-custom::-webkit-scrollbar{
    background-color: rgba(255, 255, 255, 0.1);
}
.scrollbar-custom::-webkit-scrollbar-thumb{
    background-color: rgba(255, 255, 255, 0.15);
}
.scrollbar-custom::-webkit-scrollbar-thumb:hover,
.scrollbar-custom::-webkit-scrollbar-thumb:active{
    background-color: rgba(255, 255, 255, 0.25);
}
.scrollbar-custom.scrollbar-xs::-webkit-scrollbar{
    width: .5rem;
}
.scrollbar-custom.scrollbar-xs::-webkit-scrollbar:horizontal{
    height: .5rem;
}
.scrollbar-custom.scrollbar-sm::-webkit-scrollbar{
    width: .675rem;
}
.scrollbar-custom.scrollbar-sm::-webkit-scrollbar:horizontal{
    height: .675rem;
}
.scrollbar-custom.scrollbar-md::-webkit-scrollbar{
    width: .75rem;
}
.scrollbar-custom.scrollbar-md::-webkit-scrollbar:horizontal{
    height: .75rem;
}

.scrollbar-y{
    overflow-y: auto !important;
    overflow-x: hidden !important;
}
.scrollbar-auto{
    overflow-y: auto !important;
    overflow-x: auto !important;
}
.not-scollbar{
    overflow: hidden !important;
}
/*****************************************/
/************ Message Icon **************/
/*****************************************/
.cont-message-icon{
    width:100%;
    height:100%;
    z-index: 2;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select:none;
    -webkit-touch-callout: none;
    user-select: none;
}
.cont-message-icon i{
    margin-top: .5rem;
    font-size: 15rem;
    line-height: 15rem;
}
.cont-message-icon p{
    margin-top: 1rem;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    text-align: center !important;
}

.cont-message-icon-gray{
    margin: auto;
    color: #bbb;
}
@media (max-width: 576px) {
    .cont-message-icon i{
        margin-top: .5rem;
        font-size: 12rem;
        line-height: 12rem;
    }
}
@media (min-width: 992px) {
    .cont-message-icon i{
        margin-top: .5rem;
        font-size: 15rem;
        line-height: 15rem;
    }
}
/*****************************************/
/************* loading panel *************/
/*****************************************/
.loading-panel{
    color: #eee;
    background: #2b2b2b;
    width:100%;
    height:100%;
    position: absolute;
    top:0;
    left:0;
    z-index: 100000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select:none;
    -webkit-touch-callout: none;
    user-select: none;
}
.page-loading-panel{
    width:100%;
    height:100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select:none;
    -webkit-touch-callout: none;
    user-select: none;
}
/*****************************************/
/************* loading panel *************/
/*****************************************/
.ds-workspace-nf{
    color: #767676;
    width:100%;
    height:100%;
    z-index: 2;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select:none;
    -webkit-touch-callout: none;
    user-select: none;
}
.ds-workspace-nf .ds-workspace-nf-cont{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.ds-workspace-nf .ds-workspace-nf-cont i{
    width: 12rem;
    height: 12rem;
    font-size: 12rem;
    margin-right: .5rem;
}
.ds-workspace-nf .ds-workspace-nf-cont h6{
    font-size: 4rem;
    line-height: 4rem;
    margin: 0;
}
@media (max-width: 448px) {
    .ds-workspace-nf .ds-workspace-nf-cont i{
        width: 10rem;
        height: 10rem;
        font-size: 10rem;
        margin-right: .5rem;
    }
    .ds-workspace-nf .ds-workspace-nf-cont h6{
        font-size: 3rem;
        line-height: 3rem;
    }
}

.form-group-range{
    display: flex;
}
.form-group-range .btn{
    border-radius: 50%;
}
/*****************************************/
/************** Multi Slider **************/
/*****************************************/
.cont-multi-slider {
    display: flex;
}
.cont-multi-slider .multi-slider-inner {
    overflow: hidden;
    white-space: nowrap;
    flex-grow: 1;
    padding: 0;
    margin: .25rem;
    width: 25rem;
}
.cont-multi-slider .multi-slider-inner .item {
    display: inline-block;
    height: 100%;
    overflow: hidden;
    position: relative;
    vertical-align: top;
    border-right: none;
    width: 20%;
}
.cont-multi-slider .multi-slider-ctrls{
    display: flex;
}
.cont-multi-slider .multi-slider-ctrls button {
    border: none;
    background: transparent;
    font-size: 2rem;
    outline: 0;
}
.cont-multi-slider .multi-slider-ctrls button:hover {
    cursor: pointer;
}
@media (max-width: 767px) {
    .cont-multi-slider .multi-slider-inner .item {
        width: 50%;
    }
    .cont-multi-slider .multi-slider-ctrls button {
        font-size: 1.5rem;
    }
}
@media (min-width: 992px) {
    .cont-multi-slider .multi-slider-inner .item {
        width: 33.3333%;
    }
}
@media (min-width: 1200px) {
    .cont-multi-slider .multi-slider-inner .item {
        width: 25%;
    }
}
/*****************************************/
/************** DG-Slider **************/
/*****************************************/
.dg-container{
    width: 100%;
    position: relative;
    display: flex;
}
.dg-wrapper{
    width: 30rem;
    height: 19.75rem;
    margin: 0 auto;
    position: relative;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 62.5rem;
    -moz-perspective: 62.5rem;
    -o-perspective: 62.5rem;
    -ms-perspective: 62.5rem;
    perspective: 62.5rem;
}
.dg-wrapper .dg-item{
    width: 100%;
    height: 19.75rem;
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    text-decoration:none;
}
.dg-wrapper .dg-item:not(.dg-current){
    width: 100%;
    height: 19.75rem;
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    text-decoration:none;
}
.dg-wrapper .dg-item.dg-transition{
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.dg-wrapper .dg-item.dg-center div{
    display: block;
}
.dg-container nav{
    display: flex;
    z-index: 2;
}
.dg-container nav button{
    width: 5rem;
    border: none;
    font-size: 2rem;
    outline: 0;
    color: #fff;
    background: transparent;
}
@media (max-width: 767px) {
    .dg-container nav button {
        width: 2rem;
        font-size: 1.5rem;
    }
}
/*****************************************/
/************** Summer Note **************/
/*****************************************/
.note-editor .note-editing-area p{
    text-transform: none;
    font-size: inherit;
    font-weight: normal;
    font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.note-editor .note-toolbar, .popover-content{
    padding: 0 !important;
}
.popover-content .note-btn,
.note-editor .note-toolbar .note-btn {
    border-radius: 0;
    background: none;
    color: #1b1b1b;
    border: 0 !important;
}
.popover-content .note-btn:hover,
.note-editor .note-toolbar .note-btn:hover {
    color: #fff;
    background-color: #006635;
}
.note-popover .popover-content .note-btn-group,
.note-toolbar .note-btn-group{
    border: 0 !important;
    margin: 0 !important;
}
.note-popover .popover-content > .note-btn-group,
.note-toolbar > .note-btn-group{
    border-left: 1px solid #cecece !important
}
.note-popover .popover-content .note-btn{
    color: #000;
    background: #fff;
}
.note-popover .popover-content .dropdown-menu.note-check a i,
.note-toolbar .dropdown-menu.note-check a i {
    color: #006635;
}
.note-image-input.upload-file-container{
    font-family: Arial, sans-serif;
}
.icon-note-media-embed{
    transform: rotate(90deg);
}
.iframe-msg-warning{
    width: 100%;
    top: 0;
    font-size: 0.75rem;
    padding: 0.5rem;
    line-height: .875rem;
    display: flex;
    text-align: justify;
    position: absolute;
    border: 1px solid #ffeeba;
    border-left: 5px solid #8a6d3b;
    border-radius: .25rem;
    color: #8a6d3b !important;
    background-color: #fcf8e3 !important;
}
.iframe-msg-warning::after{
    content: "El contenido dentro de este recuadro no está alojado en nuestro servicio, no ingrese ningún dato importante.";
}
.iframe-msg-warning ~ iframe{
    margin-top: 3rem;
}
/*****************************************/
/**************** Banner *****************/
/*****************************************/
.cont-bnr{
    margin: 1rem auto 1rem;
    width: 100%;
    padding: 0;
    overflow: hidden;
    text-align: center;
}
.cont-bnr > small{
    color: #aaa;
    width: 100%;
    display: block;
}
.cont-bnr .item-banner {
    display: flex;
    align-content: center;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
}
.cont-bnr-300-250 > .item-banner {
    height: 250px;
    width: 100%;
    max-width: 300px;
}
.cont-bnr-336-280 > .item-banner{
    height: 280px;
    width: 336px;
}
.cont-bnr-728-90 > .item-banner{
    height: 90px;
    width: 728px;
}
.cont-bnr-320-100 > .item-banner{
    height: 100px;
    width: 100%;
    max-width: 320px;
}
.cont-bn-300-600 > .item-banner{
    height: 600px;
    width: 300px;
}
/*****************************************/
/************** Theme Color **************/
/*****************************************/
.page-content .text-muted {
    color: #5c5c5c !important;
}
.page-content .dropdown-item, .page-content .dropdown-menu{
    background-color: #1e1e1e;
    color: #eee;
}
.page-content .dropdown-menu.scrollbar-custom::-webkit-scrollbar{
    background-color: #313131;
}
.page-content .dropdown-item:hover, .page-content .dropdown-item:focus, .page-content .dropdown-item.active {
    background-color: rgba(255,255,255,0.10);
}
.page-content .dropdown-divider {
    border-color: #5c5c5c;
}
.page-content .dropdown-menu, .page-content .popover {
    background-color: #1A1A1A;
    border-color: #5c5c5c;
}
.page-content .dropdown-menu .dropdown-header,
.page-content .popover .popover-header{
    border-color: #5c5c5c;
    background-color: #262626;
    color: #eee;
}
.page-content .dropdown-menu .dropdown-footer{
    border-color: #5c5c5c;
    background-color: #262626;
}
.page-content .dropdown-bubble:before,
.page-content .dropdown-bubble.dropdown-menu-right:before{
    border-bottom-color: #5c5c5c;
}
.page-content .dropdown-bubble:after,
.page-content .dropdown-bubble.dropdown-menu-right:after{
    border-bottom-color: #1A1A1A;
}

.tooltip-inner{
    color: #eee;
    background-color: #5c5c5c;
}
.page-content .bs-tooltip-top .arrow::before,
.page-content .bs-tooltip-auto[x-placement^="top"] .arrow::before,
.tooltip.top .tooltip-arrow{
    border-top-color: #5c5c5c;
}
.page-content .popover .popover-body{
    color: #eee;
}
.page-content .bs-popover-left .arrow::after,
.page-content .bs-popover-left .bs-popover-auto[x-placement^="left"] .arrow::after {
    border-left-color: #1A1A1A;
}
.page-content .bs-popover-left .arrow::before,
.page-content .bs-popover-auto[x-placement^="left"] .arrow::before {
    border-left-color: #5c5c5c;
}
.page-content .bs-popover-right .arrow::after,
.page-content .bs-popover-auto[x-placement^="right"] .arrow::after {
    border-right-color: #1A1A1A;
}
.page-content .bs-popover-right .arrow::before,
.page-content .bs-popover-auto[x-placement^="right"] .arrow::before {
    border-right-color: #5c5c5c;
}

.page-content .modal-content{
    background-color: #1A1A1A;
}
.page-content .close{
    color: #eee;
}
.page-content .modal-header, .page-content .modal-footer{
    background-color: #262626;
}
.page-content .modal-header{
    border-color: #5c5c5c;
}
.page-content .modal-footer{
    border-color: #5c5c5c;
}
.page-content .modal-body .cont-message-icon,
.page-content .cont-message-icon-theme{
    color: #444444;
}

.page-content .card{
    border-color: #5c5c5c;
    background-color: #1A1A1A;
}
.page-content .card-body{
    background-color: #1A1A1A;
}
.page-content .card-header,
.page-content .card-footer{
    background-color: #262626;
}
.page-content .card-header{
    border-color: #5c5c5c;
}
.page-content .card-footer{
    border-color: #5c5c5c;
}
.page-content .card .subtitle, .subtitle{
    color: #999;
}
.page-content a.subtitle:hover{
    color: #eee;
}

.page-content .accordion .card-header,
.page-content .dropdown-header,
.page-content .collapse-header-btn{
    color: #eee;
}
.page-content .accordion .card-header:hover,
.page-content .accordion .card-header:focus,
.page-content .dropdown-header:hover,
.page-content .dropdown-header:focus,
.page-content .collapse-header-btn:hover,
.page-content .collapse-header-btn:focus{
    background-color: #383838;
}

.page-content .nav-responsive,
.page-content .nav-tabs{
    border-color: #5c5c5c;
}
.page-content .nav-tabs .nav-link{
    color: #999;
}
.page-content .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus,
.page-content .nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{
    color: #eee;
    border-color: var(--secondary);
}

.page-link {
    color: #eee;
    background-color: #1A1A1A;
    border-color: #5c5c5c;
}
.page-link:hover,.page-link:focus {
    color: #eee;
    background-color: #383838;
    border-color: #5c5c5c;
}

.page-content .form-control,
.page-content .input-group .input-group-counter-text{
    color:#eee;
    background-color:#383838;
    border-color: #444444;
}
.page-content .form-control:focus{
    border-color: var(--secondary);
}
.page-content .form-control:disabled, .page-content.form-control[readonly],
.page-content .form-control.disabled{
    background-color: #1a1a1a;
    color:#5c5c5c;
}
.page-content .form-control.in-header,
.page-content .form-control.in-header ~ .input-group-counter-text{
    color:#eee;
    background-color: #1a1a1a;
    border-color: #444444;
}
.page-content .form-control.in-header:disabled, .page-content.form-control.in-header[readonly],
.page-content .form-control.in-header.disabled{
    color:#5c5c5c;
    background-color:#383838;
}
.page-content .custom-control-label::before{
    background-color: #383838;
    border-color: #444444;
}
.page-content .custom-control-input:hover ~ .custom-control-label::before{
    background-color: #5c5c5c;
    border-color: #444444;
}
.page-content .custom-control-input:disabled ~ .custom-control-label::before {
    background-color: #383838;
    border-color: #444444;
}
.page-content .input-group-text {
    color: #eee;
    background-color: #1A1A1A;
    border-color: #444444;
}

.carousel-control-prev, .carousel-control-next{
    color: var(--secondary);
}
.carousel-control-prev:hover, .carousel-control-next:hover{
    color: var(--primary);
    opacity: 1;
}

.page-content .well {
    background-color: rgba(0, 0, 0, .25);
    border-color: #444444;
}
.page-content .progress{
    background-color: #383838;
}


@media (max-width: 448px) {/*mi*/
}
@media (min-width: 448px) {/*xs*/
}
@media (min-width: 576px) {/*sm*/
}
@media (min-width: 768px) {/*md*/
}
@media (min-width: 992px) {/*lg*/

}
@media (min-width: 1200px) { }/*xl*/
=======
@charset "utf-8";.table th,form p,h2,h3,h4,h5,h6{text-transform:uppercase}.alert-sm,.alert-sm .alert-close{line-height:.875rem}.card .card-header h3,.card .card-header h4,.card .card-header h5,h2,ul{margin:0}.accordion .card-header .subtitle,.accordion .card-header span,.text-ellipsis{text-overflow:ellipsis;white-space:nowrap}.cont-multi-slider .multi-slider-ctrls button:hover,.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover,.scroll-up,.table th>i,.table-btn,button{cursor:pointer}@font-face{font-family:'Concertone Regular';src:url('../font/concertone-regular.woff2') format('woff2'),url('../font/concertone-regular.woff') format('woff'),url('../font/concertone-regular.svg#concert_oneregular') format('svg'),url('../font/concertone-Regular.ttf') format('truetype');font-weight:400;font-style:normal}body,html{scroll-behavior:smooth;font-family:sans-serif;color:#eee;background-color:#1e1e1e;overflow-x:hidden!important;display:flex;flex-direction:column;height:100%}.note-image-input.upload-file-container,.table th,h2,h3,h4,h5,h6{font-family:Arial,sans-serif}h2,h3,h4,h5,h6{font-weight:700}ul{padding:.5rem}ul.list-alpha{list-style-type:lower-alpha;padding-left:2rem}a{-webkit-transition:.3s;transition:.3s}button ::selection{background:0 0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-touch-callout:none;user-select:none}form p{margin:.5rem 0 .2rem;font-size:.75rem;font-weight:400}form small.form-text{margin-top:-.5rem;font-size:.75rem;text-align:center;line-height:.75rem}.default-bg{background-color:#006635!important}.danger-bg{background-color:#f2dede!important}.warning-bg{background-color:#fcf8e3!important}.info-bg{background-color:#d9edf7!important}.success-bg{background-color:#dff0d8!important}.white-bg{background-color:#fff!important}.color-info{color:#31708f!important}.color-danger{color:#a94442!important}.color-warning{color:#8a6d3b!important}.color-success{color:#3c763d!important}.border-red2{border:1px solid red}.border-green2{border:1px solid #0f0}.border-blue2{border:1px solid #00f}.border-ss{border-color:#d93235!important}.header-module{font-size:2.6rem;color:#fff;margin-top:4rem;padding:1.5rem}.body-module{padding:2rem 1rem 1rem}.footer-module{margin-bottom:4rem;padding:2rem}.disabled{pointer-events:none!important}.disabled:focus{outline:0!important;-webkit-box-shadow:none!important;-moz-box-shadow:none!important;box-shadow:none!important}.text-ellipsis{overflow:hidden}.text-inverted{-moz-transform:scaleX(-1);-o-transform:scaleX(-1);-webkit-transform:scaleX(-1);transform:scaleX(-1)}.dropdown-icon{-webkit-transition:.3s ease-in-out;-moz-transition:.3s ease-in-out;-o-transition:.3s ease-in-out;transition:.3s ease-in-out}.alert,.table-btn{-webkit-transition:.3s ease-in-out;-moz-transition:.3s ease-in-out;-o-transition:.3s ease-in-out}.dropdown-icon.open{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}[data-toggle=popover]{cursor:pointer;outline:0}.no-corners-sm{clip-path:polygon(10px 0%,calc(100% - 10px) 0%,100% 10px,100% calc(100% - 10px),calc(100% - 10px) 100%,10px 100%,0% calc(100% - 10px),0% 10px)}.no-corners-md{clip-path:polygon(20px 0%,calc(100% - 20px) 0%,100% 20px,100% calc(100% - 20px),calc(100% - 20px) 100%,20px 100%,0% calc(100% - 20px),0% 20px)}.no-corners-lg{clip-path:polygon(2rem 0%,calc(100% - 2rem) 0%,100% 2rem,100% calc(100% - 2rem),calc(100% - 2rem) 100%,2rem 100%,0% calc(100% - 2rem),0% 2rem)}.class-height-f-100{display:flex;flex-direction:column;height:100%}.min-circle{display:inline-block;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%}.min-circle-green{background-color:#3c763d}.min-circle-yellow{background-color:#e6b900}.min-circle-red{background-color:#c32035}.min-circle-blue{background-color:#42a4ac}.min-circle-gray{background-color:#999}.min-circle-sm{width:1rem;height:1rem}.media-aspectratio-16-9,.media-aspectratio-3-4{-webkit-border-radius:.25rem;-moz-border-radius:.25rem;border-radius:.25rem}.media-aspectratio-1-1{-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%}.table td,.table th{border-top:1px solid #444;vertical-align:bottom!important;font-size:.875rem}.table th{letter-spacing:1px;font-weight:400;border-bottom:2px solid #3e3e3e!important;color:#fff}.table th>i{margin-top:.25rem}.table td{vertical-align:middle!important}.table-btn{background:0 0;border:0;padding:.25rem;font-size:1.125rem;color:#eee;-webkit-border-radius:.25rem;-moz-border-radius:.25rem;border-radius:.25rem;transition:.3s ease-in-out}.table-btn+.table-btn{margin:0 .25rem}.table-btn:focus,.table-btn:hover{color:#eee;background-color:rgba(255,255,255,.14);outline:0}.table-col-static{position:sticky;left:0}.page-content .container-layout-table .container-layout-body .container-layout-row:nth-of-type(odd),.page-content .table-striped .container-trow:nth-of-type(odd),.page-content .table-striped tbody tr:nth-of-type(odd),.page-content .table-striped tbody tr:nth-of-type(odd) td.col-static{background-color:#282828}.page-content .container-layout .container-layout-body .container-layout-row:hover,.page-content .table-hover tbody tr:hover,.page-content .table-striped .container-trow:nth-of-type(2n):hover,.page-content .table-striped .container-trow:nth-of-type(odd):hover,.page-content .table-striped tbody tr:nth-of-type(2n):hover td.col-static,.page-content .table-striped tbody tr:nth-of-type(odd):hover td.col-static{background-color:#2e2e2e}.dropdown-menu,.page-content .card-body,.page-content .modal-content,.page-content .table-striped .container-trow:nth-of-type(2n),.page-content .table-striped tbody tr:nth-of-type(2n) td.col-static,.page-content .table-striped th.col-static{background-color:#1a1a1a}.dropdown-menu{margin-left:.5rem;padding:0;color:#eee}.page-content .dropdown-item.disabled,.page-content .dropdown-item:disabled{opacity:.5}.dropdown-menu ::selection{background:0 0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-touch-callout:none;user-select:none}.input-group{margin-bottom:.75rem}.input-group .input-group-text i{width:1rem}.input-group .input-group-counter{padding:0;border:0!important;position:relative;flex:1 1 auto;width:1%}.input-group .input-group-counter-text{padding-right:.5rem;text-align:right;font-size:.875rem;font-family:Arial,sans-serif;border:1px solid #ced4da;border-top:0}.input-group .form-control:disabled+.input-group-counter-text{display:none}.input-group .input-group-text .custom-control{padding-left:1rem;margin-top:-.25rem;min-height:1rem}.custom-control-indicator{border:1px solid #999}.navbar-toggler{padding:.25rem .5rem}.table-responsive>.table td,.table-responsive>.table th{white-space:nowrap}.alert{display:flex;padding:1rem;text-align:justify;transition:.3s ease-in-out}.alert:focus{outline:0}.alert-sm{font-size:.875rem;padding:.625rem}.alert .alert-icon{font-size:1.313rem;margin:auto .5rem auto 0}.alert .alert-content{width:100%;margin:auto .5rem auto 0}.alert .alert-content .alert-content-details{width:100%;overflow:auto}.alert .alert-close{margin:.25rem 0 auto auto;color:#000!important}.alert-danger .well{border-color:#f5c6cb}.alert-warning .well{border-color:#ffeeba}.alert-success .well{border-color:#c3e6cb}.alert-info .well{border-color:#bee5eb}.badge{margin-left:-.5rem;-webkit-border-radius:1rem 1rem 1rem 0;-moz-border-radius:1rem 1rem 1rem 0;border-radius:1rem 1rem 1rem 0;color:#fff;font-size:.75rem;line-height:1rem;padding:.2rem .5rem}.nav-tabs,.tab-pane{padding:0 1rem}.modal-header ::selection{background:0 0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-touch-callout:none;user-select:none}.modal-footer{-webkit-border-radius:0 0 .3rem .3rem;-moz-border-radius:0 0 .3rem .3rem;border-radius:0 0 .3rem .3rem}@media (max-width:575px){.modal-xl{max-width:96%!important}}@media (min-width:576px){.modal-xl{max-width:90%!important}}.carousel-control-next,.carousel-control-prev{font-size:2rem;opacity:.7}.nav-responsive{overflow-x:auto}.nav-responsive .nav{flex-flow:nowrap}.nav-tabs ::selection{background:0 0;-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;-ms-user-select:none}.nav-tabs .nav-link{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;outline:0;border-bottom:3px solid transparent;-webkit-transition:.3s ease-in-out;-moz-transition:.3s ease-in-out;-o-transition:.3s ease-in-out;transition:.3s ease-in-out}.tab-content{margin-top:1rem}.tab-pane{outline:0}.card .card-header .close{margin-left:auto}.card>.card-body:first-child{border-top-left-radius:.125rem;border-top-right-radius:.125rem;-moz-border-radius-topleft:.125rem;-moz-border-radius-topright:.125rem;-webkit-border-top-left-radius:.125rem;-webkit-border-top-right-radius:.125rem}.accordion .card+.card,.accordion .card+.card .card-header{border-top-left-radius:0;border-top-right-radius:0}.card>.card-body:last-child{border-bottom-left-radius:.125rem;border-bottom-right-radius:.125rem;-moz-border-radius-bottomleft:.125rem;-moz-border-radius-bottomright:.125rem;-webkit-border-bottom-left-radius:.125rem;-webkit-border-bottom-right-radius:.125rem}.card .subtitle{margin-bottom:1rem}.tooltip{font-size:.75rem}.accordion .card+.card{border-top:0}.accordion .card-header,.accordion .card-header h5{align-items:center;display:flex;outline:0}.accordion .card-header:focus,.accordion .card-header:hover{background-color:#2d2d2d}.accordion .card-header h5{width:100%}.accordion .card-header.collapsed{border-bottom:0}.accordion .card-header .card-icon{margin-right:.75rem}.accordion .card-header .card-icon.card-icon-sm{width:3rem;height:2.5rem;text-align:center}.accordion .card-header .card-icon.card-icon-sm i{font-size:2.5rem;line-height:2.5rem}.accordion .card-header .card-icon.card-icon-sm i.ss{font-size:2rem}.accordion .card-header .subtitle{margin:0;width:100%;overflow:hidden}.accordion .card-header span{overflow:hidden;margin-right:1rem;line-height:1.75rem}.accordion .card-header .dropdown-icon{font-size:1rem;width:1.25rem;text-align:center}.scroll-up{width:2.5rem;height:2.5rem;position:fixed;bottom:1rem;right:1rem;z-index:40;display:none;opacity:.75}.scroll-up:hover{opacity:1}.dg-wrapper .dg-item.dg-center div,.scroll-up.scroll-up-active{display:block}.scrollbar-custom::-webkit-scrollbar{background-color:rgba(255,255,255,.1)}.scrollbar-custom::-webkit-scrollbar-thumb{background-color:rgba(255,255,255,.15)}.scrollbar-custom::-webkit-scrollbar-thumb:active,.scrollbar-custom::-webkit-scrollbar-thumb:hover{background-color:rgba(255,255,255,.25)}.scrollbar-custom.scrollbar-xs::-webkit-scrollbar{width:.5rem}.scrollbar-custom.scrollbar-xs::-webkit-scrollbar:horizontal{height:.5rem}.scrollbar-custom.scrollbar-sm::-webkit-scrollbar{width:.675rem}.scrollbar-custom.scrollbar-sm::-webkit-scrollbar:horizontal{height:.675rem}.scrollbar-custom.scrollbar-md::-webkit-scrollbar{width:.75rem}.scrollbar-custom.scrollbar-md::-webkit-scrollbar:horizontal{height:.75rem}.scrollbar-y{overflow-y:auto!important;overflow-x:hidden!important}.scrollbar-auto{overflow-y:auto!important;overflow-x:auto!important}.not-scollbar{overflow:hidden!important}.cont-message-icon{width:100%;height:100%;z-index:2;overflow:hidden;display:flex;flex-direction:column;align-items:center;justify-content:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-touch-callout:none;user-select:none}.loading-panel,.page-loading-panel{flex-direction:column;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-touch-callout:none;display:flex;height:100%;width:100%;overflow:hidden}.cont-message-icon i{margin-top:.5rem;font-size:15rem;line-height:15rem}.cont-message-icon p{margin-top:1rem;margin-bottom:.5rem;font-size:1.5rem;text-align:center!important}.cont-message-icon-gray{margin:auto;color:#bbb}@media (max-width:576px){.cont-message-icon i{margin-top:.5rem;font-size:12rem;line-height:12rem}}.loading-panel{color:#eee;background:#2b2b2b;position:absolute;top:0;left:0;z-index:100000;align-items:center;justify-content:center;user-select:none}.page-loading-panel{align-items:center;justify-content:center;user-select:none}.ds-workspace-nf{color:#767676;width:100%;height:100%;z-index:2;overflow:hidden;display:flex;flex-direction:column;align-items:center;justify-content:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-touch-callout:none;user-select:none}.ds-workspace-nf .ds-workspace-nf-cont{display:flex;align-items:center;flex-direction:column}.ds-workspace-nf .ds-workspace-nf-cont i{width:12rem;height:12rem;font-size:12rem;margin-right:.5rem}.ds-workspace-nf .ds-workspace-nf-cont h6{font-size:4rem;line-height:4rem;margin:0}@media (max-width:448px){.alert .alert-content{overflow:auto}.card .card-body{padding-left:.75rem;padding-right:.75rem}.ds-workspace-nf .ds-workspace-nf-cont i{width:10rem;height:10rem;font-size:10rem;margin-right:.5rem}.ds-workspace-nf .ds-workspace-nf-cont h6{font-size:3rem;line-height:3rem}}.cont-multi-slider,.cont-multi-slider .multi-slider-ctrls,.form-group-range{display:flex}.form-group-range .btn{border-radius:50%}.cont-multi-slider .multi-slider-ctrls button,.dg-container nav button{border:none;font-size:2rem;outline:0;background:0 0}.cont-multi-slider .multi-slider-inner{overflow:hidden;white-space:nowrap;flex-grow:1;padding:0;margin:.25rem;width:25rem}.cont-multi-slider .multi-slider-inner .item{display:inline-block;height:100%;overflow:hidden;position:relative;vertical-align:top;border-right:none;width:20%}@media (max-width:767px){.cont-multi-slider .multi-slider-inner .item{width:50%}.cont-multi-slider .multi-slider-ctrls button{font-size:1.5rem}}@media (min-width:992px){.cont-message-icon i{margin-top:.5rem;font-size:15rem;line-height:15rem}.cont-multi-slider .multi-slider-inner .item{width:33.3333%}}@media (min-width:1200px){.cont-multi-slider .multi-slider-inner .item{width:25%}}.dg-container{width:100%;position:relative;display:flex}.dg-wrapper{width:30rem;height:19.75rem;margin:0 auto;position:relative;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-o-transform-style:preserve-3d;-ms-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-perspective:62.5rem;-moz-perspective:62.5rem;-o-perspective:62.5rem;-ms-perspective:62.5rem;perspective:62.5rem}.dg-wrapper .dg-item,.dg-wrapper .dg-item:not(.dg-current){width:100%;height:19.75rem;display:flex;position:absolute;left:0;top:0;text-decoration:none}.dg-wrapper .dg-item.dg-transition{-webkit-transition:.5s ease-in-out;-moz-transition:.5s ease-in-out;-o-transition:.5s ease-in-out;-ms-transition:.5s ease-in-out;transition:.5s ease-in-out}.dg-container nav{display:flex;z-index:2}.dg-container nav button{width:5rem;color:#fff}@media (max-width:767px){.dg-container nav button{width:2rem;font-size:1.5rem}}.note-editor .note-editing-area p{text-transform:none;font-size:inherit;font-weight:400;font-family:'Source Sans Pro','Helvetica Neue',Helvetica,Arial,sans-serif}.note-editor .note-toolbar,.popover-content{padding:0!important}.note-editor .note-toolbar .note-btn,.popover-content .note-btn{border-radius:0;background:0 0;color:#1b1b1b;border:0!important}.note-editor .note-toolbar .note-btn:hover,.popover-content .note-btn:hover{color:#fff;background-color:#006635}.note-popover .popover-content .note-btn-group,.note-toolbar .note-btn-group{border:0!important;margin:0!important}.note-popover .popover-content>.note-btn-group,.note-toolbar>.note-btn-group{border-left:1px solid #cecece!important}.note-popover .popover-content .note-btn{color:#000;background:#fff}.note-popover .popover-content .dropdown-menu.note-check a i,.note-toolbar .dropdown-menu.note-check a i{color:#006635}.icon-note-media-embed{transform:rotate(90deg)}.iframe-msg-warning{width:100%;top:0;font-size:.75rem;padding:.5rem;line-height:.875rem;display:flex;text-align:justify;position:absolute;border:1px solid #ffeeba;border-left:5px solid #8a6d3b;border-radius:.25rem;color:#8a6d3b!important;background-color:#fcf8e3!important}.iframe-msg-warning::after{content:"El contenido dentro de este recuadro no está alojado en nuestro servicio, no ingrese ningún dato importante."}.iframe-msg-warning~iframe{margin-top:3rem}.cont-bnr{margin:1rem auto;width:100%;padding:0;overflow:hidden;text-align:center}.cont-bnr>small{color:#aaa;width:100%;display:block}.cont-bnr .item-banner{display:flex;align-content:center;justify-content:center;margin:0 auto;overflow:hidden}.cont-bnr-300-250>.item-banner{height:250px;width:100%;max-width:300px}.cont-bnr-336-280>.item-banner{height:280px;width:336px}.cont-bnr-728-90>.item-banner{height:90px;width:728px}.cont-bnr-320-100>.item-banner{height:100px;width:100%;max-width:320px}.cont-bn-300-600>.item-banner{height:600px;width:300px}.page-content .text-muted{color:#5c5c5c!important}.page-content .dropdown-item,.page-content .dropdown-menu{background-color:#1e1e1e;color:#eee}.page-content .dropdown-menu.scrollbar-custom::-webkit-scrollbar{background-color:#313131}.page-content .dropdown-item.active,.page-content .dropdown-item:focus,.page-content .dropdown-item:hover{background-color:rgba(255,255,255,.1)}.page-content .dropdown-divider,.page-content .nav-responsive,.page-content .nav-tabs{border-color:#5c5c5c}.page-content .dropdown-menu,.page-content .popover{background-color:#1a1a1a;border-color:#5c5c5c}.page-content .dropdown-menu .dropdown-header,.page-content .popover .popover-header{border-color:#5c5c5c;background-color:#262626;color:#eee}.page-content .dropdown-menu .dropdown-footer{border-color:#5c5c5c;background-color:#262626}.page-content .dropdown-bubble.dropdown-menu-right:before,.page-content .dropdown-bubble:before{border-bottom-color:#5c5c5c}.page-content .dropdown-bubble.dropdown-menu-right:after,.page-content .dropdown-bubble:after{border-bottom-color:#1a1a1a}.tooltip-inner{color:#eee;background-color:#5c5c5c}.page-content .bs-tooltip-auto[x-placement^=top] .arrow::before,.page-content .bs-tooltip-top .arrow::before,.tooltip.top .tooltip-arrow{border-top-color:#5c5c5c}.page-content .accordion .card-header,.page-content .close,.page-content .collapse-header-btn,.page-content .dropdown-header,.page-content .popover .popover-body,.page-content a.subtitle:hover{color:#eee}.page-content .bs-popover-left .arrow::after,.page-content .bs-popover-left .bs-popover-auto[x-placement^=left] .arrow::after{border-left-color:#1a1a1a}.page-content .bs-popover-auto[x-placement^=left] .arrow::before,.page-content .bs-popover-left .arrow::before{border-left-color:#5c5c5c}.page-content .bs-popover-auto[x-placement^=right] .arrow::after,.page-content .bs-popover-right .arrow::after{border-right-color:#1a1a1a}.page-content .bs-popover-auto[x-placement^=right] .arrow::before,.page-content .bs-popover-right .arrow::before{border-right-color:#5c5c5c}.page-content .card-footer,.page-content .card-header,.page-content .modal-footer,.page-content .modal-header{background-color:#262626;border-color:#5c5c5c}.page-content .card,.page-link{background-color:#1a1a1a;border-color:#5c5c5c}.page-content .cont-message-icon-theme,.page-content .modal-body .cont-message-icon{color:#444}.page-content .card .subtitle,.page-content .nav-tabs .nav-link,.subtitle{color:#999}.page-content .accordion .card-header:focus,.page-content .accordion .card-header:hover,.page-content .collapse-header-btn:focus,.page-content .collapse-header-btn:hover,.page-content .dropdown-header:focus,.page-content .dropdown-header:hover,.page-content .progress{background-color:#383838}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link:focus,.page-content .nav-tabs .nav-link.active,.page-content .nav-tabs .nav-link:hover{color:#eee;border-color:var(--secondary)}.page-link{color:#eee}.page-link:focus,.page-link:hover{color:#eee;background-color:#383838;border-color:#5c5c5c}.page-content .form-control,.page-content .input-group .input-group-counter-text{color:#eee;background-color:#383838;border-color:#444}.page-content .form-control:focus{border-color:var(--secondary)}.page-content .form-control.disabled,.page-content .form-control:disabled,.page-content.form-control[readonly]{background-color:#1a1a1a;color:#5c5c5c}.page-content .form-control.in-header,.page-content .form-control.in-header~.input-group-counter-text,.page-content .input-group-text{color:#eee;background-color:#1a1a1a;border-color:#444}.page-content .form-control.in-header.disabled,.page-content .form-control.in-header:disabled,.page-content.form-control.in-header[readonly]{color:#5c5c5c;background-color:#383838}.page-content .custom-control-input:disabled~.custom-control-label::before,.page-content .custom-control-label::before{background-color:#383838;border-color:#444}.page-content .custom-control-input:hover~.custom-control-label::before{background-color:#5c5c5c;border-color:#444}.carousel-control-next,.carousel-control-prev{color:var(--secondary)}.carousel-control-next:hover,.carousel-control-prev:hover{color:var(--primary);opacity:1}.page-content .well{background-color:rgba(0,0,0,.25);border-color:#444}
>>>>>>> Stashed changes
