@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/*@import url(//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);*/

/*Scroll*/
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 0px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #f5f5f5;
    border-radius: 0px;
}

::-webkit-scrollbar-thumb {
    border-radius: 0px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #3699ff;
}

/*Animation*/
@-moz-keyframes spinPulse {
    0% {
        -moz-transform: rotate(160deg);
        opacity: 0;
        box-shadow: 0 0 1px #2187e7;
    }

    50% {
        -moz-transform: rotate(145deg);
        opacity: 1;
    }

    100% {
        -moz-transform: rotate(-320deg);
        opacity: 0;
    }
}

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

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

@-webkit-keyframes spinPulse {
    0% {
        -webkit-transform: rotate(160deg);
        opacity: 0;
        box-shadow: 0 0 1px #2187e7;
    }

    50% {
        -webkit-transform: rotate(145deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: rotate(-320deg);
        opacity: 0;
    }
}

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

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


html {
    /*    zoom: 80%;*/
}

body {
    font-family: "Montserrat", sans-serif !important;
    background-color: #f1f1f1;
    padding-bottom: 0px;
    min-height: calc(100vh);
    font-size: 12px;
}

.row {
    margin-right: -8px;
    margin-left: -8px;
}
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    padding-left: 8px;
    padding-right: 8px;
}

.font-secondary, .h1, .h2, .h3, .h4, .h5, .h6, .label, h1, h2, h3, h4, h5, h6, strong, a, b, p{
    font-family: "Montserrat", sans-serif;
}



/*Table*/
.table-bordered {
    border-color: #f1f1f1;
}

table{
    border-radius: 5px;
}

table thead th { 
    text-transform: capitalize;
}
table thead th:first-child{
    border-top-left-radius: 5px;
}
table thead th:last-child{
    border-top-right-radius: 5px;
}
table td:first-child{
    border-bottom-left-radius: 5px;
}
table td:last-child{
    border-bottom-right-radius: 5px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f9f9f92e;
}
.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
    padding: 5px 10px;
    font-size: 11px;
}
table.dataTable {
    width: 100% !important;
}


/*Looder */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f3f3f3;
    z-index: 9999999;
    opacity: 0.7;
}

.circle {
    background-color: rgba(0, 0, 0, 0);
    border: 5px solid rgba(62, 214, 37, 0.9);
    opacity: 0.9;
    border-right: 5px solid rgba(0, 0, 0, 0);
    border-left: 5px solid rgba(0, 0, 0, 0);
    border-radius: 50px;
    box-shadow: 0 0 35px #37df1b;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    -moz-animation: spinPulse 1s infinite ease-in-out;
    -webkit-animation: spinPulse 1s infinite linear;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999;
}

.circle1 {
    background-color: rgba(0, 0, 0, 0);
    border: 5px solid rgba(54, 230, 26, 0.9);
    opacity: 0.9;
    border-left: 5px solid rgba(0, 0, 0, 0);
    border-right: 5px solid rgba(0, 0, 0, 0);
    border-radius: 50px;
    box-shadow: 0 0 15px #36e11a;
    width: 30px;
    height: 30px;
    /*margin: 0 auto;*/
    margin: 10px;
    margin-top: 10px;
    position: fixed;
    top: -50px;
    -moz-animation: spinoffPulse 1s infinite linear;
    -webkit-animation: spinoffPulse 1s infinite linear;
    z-index: 9999;
    top: 50%;
    left: 50%;
}

.spinner-wrapper::after {
    background: inherit;
    border-radius: 50%;
    width: 3em;
    height: 3em;
    position: absolute;
    top: 0.5em;
    left: 0.5em;
}

.loadermain {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    text-align: center;
    display: table;
}

.loadermain div {
    vertical-align: middle;
    display: table-cell;
    width: 200px;
}


/*Form*/
.form-group {
    margin-bottom: 8px;
}
.input-group {    
    display: flex;
    gap: 10px;
}

.form-group label {
    margin-bottom: 2px;
}

.form-control, .select2-container--default .select2-selection--single {
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    min-height: 35px;
    height: 35px;
}

.form-control:focus {
    border: 1px solid #1e1e2d;
    box-shadow: none;
    outline: 0 !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 8px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 6px !important;
    right: 6px !important;
}

input[type="color"], input[type="color" i]::-webkit-color-swatch-wrapper {
    padding: 0px;
    border-radius: 5px;
}
input[type="color" i]::-webkit-color-swatch {
    border: none;
    border-radius: 5px;
    border: 1px solid #f1f1f1;
}
.input-group-addon {
    border: 1px solid #d7d7d7;
    border-radius: 5px;
}

.checkbox label::before {
    background-color: #ebedf3;
    border-radius: 0.42rem;
}
.checkbox-success input[type="checkbox"]:checked + label::before {
    background-color: #3699ff;
    border-color: #3699ff;
}



/*.new-form-group {
    background-color: #f1f1f1;
    border-color: #f1f1f1;
    transition: color 0.2s ease;
    min-height: calc(1.5em + 1.65rem + 2px);
    padding: 0.825rem 1.5rem;
    font-size: 16px;
    border-radius: 0.625rem;
    font-weight: 500;
    line-height: 1.5;
    margin-right: 2px;
}

.new-form-group:focus {
    background-color: #ffffff;
    border-color: #69b3ff;
    color: #4b5675;
    transition: color 0.2s ease;
    box-shadow: none;
}
*/




fieldset, label {
    margin: 0;
    padding: 0;
}

input[switch] + label {
    width: fit-content;
    display: flex !important;
    padding: 5px 5px;
    align-items: center;
    gap: 5px;
    flex-direction: row-reverse;
    justify-content: space-around;
    height: auto;
}
input[switch]:checked + label {
    flex-direction: row;
}

input[switch] + label:before {
    position: static;
    margin: 0;
    text-decoration: none;
    line-height: inherit;
}

input[switch] + label:after {
    position: static;
    width: 15px;
    height: 15px;
}
input[switch]:checked + label:after {
    left: inherit;
}





.copy-input {
    width: 100%;
    cursor: pointer;
    background-color: #eaeaeb;
    border: none;
    color: #6c6c6c;
    font-size: 14px;
    border-radius: 5px;
    padding: 10px;
    min-height: 44px;
    font-family: "Montserrat", sans-serif;
}

.copy-input:focus {
    outline: none;
}

.copy-btn {
    width: 40px;
    background-color: #fff;
    font-size: 18px;
    padding: 6px 9px;
    border-radius: 5px;
    border: none;
    color: #000;
    margin-left: 5px;
    transition: all 0.4s;
}

.copy-btn:hover {
    /*    transform: scale(1.3);*/
    color: #1a1a1a;
    cursor: pointer;
}

.copy-btn:focus {
    outline: none;
}

.copied {
    font-family: "Montserrat", sans-serif;
    opacity: 0;
    position: absolute;
    bottom: 0px;
    top: -14%;
    right: 50%;
    /* margin: auto; */
    color: #fff;
    padding: 15px 15px;
    background-color: #000;
    border-radius: 5px;
    transition: 0.4s opacity;
    height: max-content;
}



/*Button*/
.btn {
    background: transparent;
    padding: 8px 10px;
    border-radius: 5px;
    font-size: 12px;
    text-decoration: none;
}
.btn:hover {
    box-shadow: none;
}
.btn-group-sm > .btn, .btn-sm {
    padding: 3px 5px !important;
}
.btn-primary, .btn-success {
    background: #4bb2f1 !important;
    border: 1px solid #4bb2f1 !important;
}
.btn-primary:hover {
    /*background: #4bb2f1 !important;
    border: 1px solid #4bb2f1 !important;*/
}
.btn-secondary, .btn-default, .theme-btn {
    background: #f1f1f1;
    border: 1px solid #f1f1f1;
    color: #000;
}
.btn-secondary:hover, .btn-default:hover {
    background: #666 !important;
    border: 1px solid #666 !important;
    color: #fff;
}
.btn-blue {
    background-color: #3699ff;
    border: 1px solid #2782e1;
    color: #fff;
}
.btn-dark {
    background-color: #1e1e2d;
    color: #fff;
}
.btn-dark:hover {
    background-color: #313a46;
    color: #fff;
}
.btn-white {
    color: #fff;
    background: #748ea6;
    border: 1px solid #e7eaec;
    padding: 8px;
    margin-bottom: 5px;
}
.btn-white:hover {
    color: #dff;
    border: 1px solid #d2d2d2;
    background-color: #384c5e;
}



ul {
    padding-left: 15px;
}
.data.address {
    word-break: break-word;
}

.text-bold {
    font-weight: bold;
}
.error {
    color: #ff0000;
    font-weight: normal;
}





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

.login-screen.center-box {
    min-width: 320px;
}

.center-box {
    max-width: 20vw;
    z-index: 100;
    margin: 0 auto;
    padding-top: 40px;
}


/*Card box*/
.card-box {
    box-shadow: 0px 0px 30px 0px rgba(82, 63, 105, 0.05);
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 16px;
}

.card-body {
    flex: 1 1 auto;
    padding: 1.25rem;
    min-height: 205px;
    margin-bottom: 4px;
    display: flex;
    flex-wrap: nowrap;
    align-content: space-around;
    flex-direction: column;
    justify-content: space-around;
}

.card-title {
    margin: -5px -10px 10px -10px;
    padding: 5px 10px;
    border-bottom: 1px solid #f1f1f1;
    min-height: 40px;
}

.card-title h4 a, .card-title h4 {
    margin: 0px;
    font-weight: 700;
    text-decoration: underline;
    font-size: 14px ;
    color: #4c4c4c ;
}

.card-title h4 {
    margin: 0px;
    font-weight: 700;
    text-decoration: none;
}
.card-title h4 span {
    display: inline-block;
    vertical-align: middle;
}

.card-title a {
    font-weight: 500;
}



/*card*/
.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}

.card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-text:last-child {
    margin-bottom: 0;
}

 




 

/*Tabs */
.nav-tabs > li > a { 
    border: none !important; 
    border-radius: 5px 5px 0px 0px;
    font-weight: 500;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover, .nav-tabs > li > a:hover {
    color: #f1f1f1;
    background: #1e1e2d; 
}

.tab-content {
    padding: 10px 0;
    background: transparent;
    border: none;
}

ul.nav.nav-pills {
    border-bottom: 1px solid #f1f1f1;
}
.nav-pills > li > a {
    border-radius: 5px 5px 0px 0px;
    border: none;
}
.nav-pills > li.active > a, .nav-pills > li > a:hover, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
    /*    background-color: #1e1e2d ;*/
    /*    color: #fff;        */
}


/*responsive vide*/
.video-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    border-radius: 8px;
}

.video-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 8px;
}





























.g-color {
    color: #3f4254;
}
.panel {
    border: 0;
    margin-bottom: 20px;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(82, 63, 105, 0.05);
    box-shadow: 0px 0px 30px 0px rgba(82, 63, 105, 0.05);
}
.swal-modal-width {
    width: 600px;
}
.swal-modal-width-lg {
    width: 800px;
}
.navbar-default {
    /*    background: #1e1e2d ;*/
}

.navbar {
    min-height: 61px;
}







/*dashlist*/
.dashlist .productbox {
    display: inline-block;
    min-height: 255px;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    border: 1px solid #f1f1f1;
    margin-bottom: 10px;
    color: #666;
}

.dashlist .productbox img {
    border: 1px solid #f1f1f1;
    height: 180px;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.dashlist .productbox .product__title {
    display: inline-block;
    width: 100%;
    margin: 0;
    /*    color: #1e1e2d;*/
    margin-top: 15px;
}

.dashlist .productbox p {
    margin-bottom: 5px;
}










.mark-as-completed-btn {
    width: 100%;
}

.mark-completed-btn {
    width: 100%;
}




.border-secondary {
    border-color: #6c757d;
}
.text-secondary {
    color: #6c757d;
}





/* Tabbed Styles */
.tabbed {
    width: 100%;
    min-width: 400px;
    margin: 0 auto;
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f1f1;
    overflow: hidden;
    transition: border 250ms ease;
}

.tabbed ul {
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    float: left;
    /*    padding-left: 48px;*/
    list-style-type: none;
}
 
.tabbed ul li {
    display: block;
    float: right;
    padding: 10px 24px;
    background-color: #fff;
    margin-right: 2px;
    z-index: 2;
    position: relative;
    cursor: pointer;
    color: #666;
    /*    text-transform: uppercase;*/
    transition: all 250ms ease;
    height: 100%;
    border-radius: 5px 5px 0px 0px;
}

.tabbed ul li .badge {
    font-size: 9px;
}

.tabbed ul li:before, .tabbed ul li:after {
    display: block;
    /*    content: " ";*/
    position: absolute;
    top: 0;
    height: 100%;
    width: 44px;
    background-color: #fff;
    transition: all 250ms ease;
}

.tabbed ul li:before {
    right: -24px;
    transform: skew(30deg, 0deg);
    box-shadow: rgba(0, 0, 0, 0.1) 3px 2px 5px, inset rgba(255, 255, 255, 0.09) -1px 0;
}

.tabbed ul li:after {
    left: -24px;
    transform: skew(-30deg, 0deg);
    box-shadow: rgba(0, 0, 0, 0.1) -3px 2px 5px, inset rgba(255, 255, 255, 0.09) 1px 0;
}

.tabbed ul li:hover, .tabbed ul li:hover:before, .tabbed ul li:hover:after {
    background-color: #1e1e2d;
    color: #fff;
}

.tabbed ul li.active {
    z-index: 3;
}

.tabbed ul li.active, .tabbed ul li.active:before, .tabbed ul li.active:after {
    background-color: #1e1e2d;
    color: #fff;
}

/* Round Tabs */
.tabbed.round ul li {
    border-radius: 8px 8px 0 0;
}

.tabbed.round ul li:before {
    border-radius: 0 8px 0 0;
}

.tabbed.round ul li:after {
    border-radius: 8px 0 0 0;
}

/* Skins */
.tabbed[class*="skin-"] ul li {
    color: #fff;
    text-shadow: rgba(0, 0, 0, 0.1) 0 1px;
}

.tabbed.skin-turquoise {
    border-bottom-color: #1abc9c;
}

.tabbed.skin-turquoise ul li, .tabbed.skin-turquoise ul li:before, .tabbed.skin-turquoise ul li:after {
    background-color: #34d6b6;
}

.tabbed.skin-turquoise ul li:hover, .tabbed.skin-turquoise ul li:hover:before, .tabbed.skin-turquoise ul li:hover:after {
    background-color: #40e2c2;
}

.tabbed.skin-turquoise ul li.active, .tabbed.skin-turquoise ul li.active:before, .tabbed.skin-turquoise ul li.active:after {
    background-color: #1abc9c;
}

.tabbed.skin-emerald {
    border-bottom-color: #2ecc71;
}

.tabbed.skin-emerald ul li, .tabbed.skin-emerald ul li:before, .tabbed.skin-emerald ul li:after {
    background-color: #48e68b;
}

.tabbed.skin-emerald ul li:hover, .tabbed.skin-emerald ul li:hover:before, .tabbed.skin-emerald ul li:hover:after {
    background-color: #54f297;
}

.tabbed.skin-emerald ul li.active, .tabbed.skin-emerald ul li.active:before, .tabbed.skin-emerald ul li.active:after {
    background-color: #2ecc71;
}

.tabbed.skin-peter-river {
    border-bottom-color: #3498db;
}

.tabbed.skin-peter-river ul li, .tabbed.skin-peter-river ul li:before, .tabbed.skin-peter-river ul li:after {
    background-color: #4eb2f5;
}

.tabbed.skin-peter-river ul li:hover, .tabbed.skin-peter-river ul li:hover:before, .tabbed.skin-peter-river ul li:hover:after {
    background-color: #5abeff;
}

.tabbed.skin-peter-river ul li.active, .tabbed.skin-peter-river ul li.active:before, .tabbed.skin-peter-river ul li.active:after {
    background-color: #3498db;
}

.tabbed.skin-amethyst {
    border-bottom-color: #9b59b6;
}

.tabbed.skin-amethyst ul li, .tabbed.skin-amethyst ul li:before, .tabbed.skin-amethyst ul li:after {
    background-color: #b573d0;
}

.tabbed.skin-amethyst ul li:hover, .tabbed.skin-amethyst ul li:hover:before, .tabbed.skin-amethyst ul li:hover:after {
    background-color: #c17fdc;
}

.tabbed.skin-amethyst ul li.active, .tabbed.skin-amethyst ul li.active:before, .tabbed.skin-amethyst ul li.active:after {
    background-color: #9b59b6;
}

.tabbed.skin-wet-asphalt {
    border-bottom-color: #34495e;
}

.tabbed.skin-wet-asphalt ul li, .tabbed.skin-wet-asphalt ul li:before, .tabbed.skin-wet-asphalt ul li:after {
    background-color: #4e6378;
}

.tabbed.skin-wet-asphalt ul li:hover, .tabbed.skin-wet-asphalt ul li:hover:before, .tabbed.skin-wet-asphalt ul li:hover:after {
    background-color: #5a6f84;
}

.tabbed.skin-wet-asphalt ul li.active, .tabbed.skin-wet-asphalt ul li.active:before, .tabbed.skin-wet-asphalt ul li.active:after {
    background-color: #34495e;
}

.tabbed.skin-sun-flower {
    border-bottom-color: #f1c40f;
}

.tabbed.skin-sun-flower ul li, .tabbed.skin-sun-flower ul li:before, .tabbed.skin-sun-flower ul li:after {
    background-color: #ffde29;
    color: #0a0;
}

.tabbed.skin-sun-flower ul li:hover, .tabbed.skin-sun-flower ul li:hover:before, .tabbed.skin-sun-flower ul li:hover:after {
    background-color: #ffea35;
}

.tabbed.skin-sun-flower ul li.active, .tabbed.skin-sun-flower ul li.active:before, .tabbed.skin-sun-flower ul li.active:after {
    background-color: #f1c40f;
    color: #fff;
}

.tabbed.skin-carrot {
    border-bottom-color: #e67e22;
}

.tabbed.skin-carrot ul li, .tabbed.skin-carrot ul li:before, .tabbed.skin-carrot ul li:after {
    background-color: #ff983c;
}

.tabbed.skin-carrot ul li:hover, .tabbed.skin-carrot ul li:hover:before, .tabbed.skin-carrot ul li:hover:after {
    background-color: #ffa448;
}

.tabbed.skin-carrot ul li.active, .tabbed.skin-carrot ul li.active:before, .tabbed.skin-carrot ul li.active:after {
    background-color: #e67e22;
}

.tabbed.skin-alizarin {
    border-bottom-color: #e74c3c;
}

.tabbed.skin-alizarin ul li, .tabbed.skin-alizarin ul li:before, .tabbed.skin-alizarin ul li:after {
    background-color: #ff6656;
}

.tabbed.skin-alizarin ul li:hover, .tabbed.skin-alizarin ul li:hover:before, .tabbed.skin-alizarin ul li:hover:after {
    background-color: #ff7262;
}

.tabbed.skin-alizarin ul li.active, .tabbed.skin-alizarin ul li.active:before, .tabbed.skin-alizarin ul li.active:after {
    background-color: #e74c3c;
}

.tabbed.skin-graphite {
    border-bottom-color: #454545;
}

.tabbed.skin-graphite ul li, .tabbed.skin-graphite ul li:before, .tabbed.skin-graphite ul li:after {
    background-color: #5f5f5f;
}

.tabbed.skin-graphite ul li:hover, .tabbed.skin-graphite ul li:hover:before, .tabbed.skin-graphite ul li:hover:after {
    background-color: #6b6b6b;
}

.tabbed.skin-graphite ul li.active, .tabbed.skin-graphite ul li.active:before, .tabbed.skin-graphite ul li.active:after {
    background-color: #454545;
}

.tabbed.skin-concrete {
    border-bottom-color: #95a5a6;
}

.tabbed.skin-concrete ul li, .tabbed.skin-concrete ul li:before, .tabbed.skin-concrete ul li:after {
    background-color: #afbfc0;
}

.tabbed.skin-concrete ul li:hover, .tabbed.skin-concrete ul li:hover:before, .tabbed.skin-concrete ul li:hover:after {
    background-color: #bbcbcc;
}

.tabbed.skin-concrete ul li.active, .tabbed.skin-concrete ul li.active:before, .tabbed.skin-concrete ul li.active:after {
    background-color: #95a5a6;
}

.tabbed.skin-green-sea {
    border-bottom-color: #16a085;
}

.tabbed.skin-green-sea ul li, .tabbed.skin-green-sea ul li:before, .tabbed.skin-green-sea ul li:after {
    background-color: #30ba9f;
}

.tabbed.skin-green-sea ul li:hover, .tabbed.skin-green-sea ul li:hover:before, .tabbed.skin-green-sea ul li:hover:after {
    background-color: #3cc6ab;
}

.tabbed.skin-green-sea ul li.active, .tabbed.skin-green-sea ul li.active:before, .tabbed.skin-green-sea ul li.active:after {
    background-color: #16a085;
}

.tabbed.skin-nephritis {
    border-bottom-color: #27ae60;
}

.tabbed.skin-nephritis ul li, .tabbed.skin-nephritis ul li:before, .tabbed.skin-nephritis ul li:after {
    background-color: #41c87a;
}

.tabbed.skin-nephritis ul li:hover, .tabbed.skin-nephritis ul li:hover:before, .tabbed.skin-nephritis ul li:hover:after {
    background-color: #4dd486;
}

.tabbed.skin-nephritis ul li.active, .tabbed.skin-nephritis ul li.active:before, .tabbed.skin-nephritis ul li.active:after {
    background-color: #27ae60;
}

.tabbed.skin-belize-hole {
    border-bottom-color: #2980b9;
}

.tabbed.skin-belize-hole ul li, .tabbed.skin-belize-hole ul li:before, .tabbed.skin-belize-hole ul li:after {
    background-color: #439ad3;
}

.tabbed.skin-belize-hole ul li:hover, .tabbed.skin-belize-hole ul li:hover:before, .tabbed.skin-belize-hole ul li:hover:after {
    background-color: #4fa6df;
}

.tabbed.skin-belize-hole ul li.active, .tabbed.skin-belize-hole ul li.active:before, .tabbed.skin-belize-hole ul li.active:after {
    background-color: #2980b9;
}

.tabbed.skin-wisteria {
    border-bottom-color: #8e44ad;
}

.tabbed.skin-wisteria ul li, .tabbed.skin-wisteria ul li:before, .tabbed.skin-wisteria ul li:after {
    background-color: #a85ec7;
}

.tabbed.skin-wisteria ul li:hover, .tabbed.skin-wisteria ul li:hover:before, .tabbed.skin-wisteria ul li:hover:after {
    background-color: #b46ad3;
}

.tabbed.skin-wisteria ul li.active, .tabbed.skin-wisteria ul li.active:before, .tabbed.skin-wisteria ul li.active:after {
    background-color: #8e44ad;
}

.tabbed.skin-midnight-blue {
    border-bottom-color: #2c3e50;
}

.tabbed.skin-midnight-blue ul li, .tabbed.skin-midnight-blue ul li:before, .tabbed.skin-midnight-blue ul li:after {
    background-color: #46586a;
}

.tabbed.skin-midnight-blue ul li:hover, .tabbed.skin-midnight-blue ul li:hover:before, .tabbed.skin-midnight-blue ul li:hover:after {
    background-color: #526476;
}

.tabbed.skin-midnight-blue ul li.active, .tabbed.skin-midnight-blue ul li.active:before, .tabbed.skin-midnight-blue ul li.active:after {
    background-color: #2c3e50;
}

.tabbed.skin-orange {
    border-bottom-color: #f39c12;
}

.tabbed.skin-orange ul li, .tabbed.skin-orange ul li:before, .tabbed.skin-orange ul li:after {
    background-color: #ffb62c;
}

.tabbed.skin-orange ul li:hover, .tabbed.skin-orange ul li:hover:before, .tabbed.skin-orange ul li:hover:after {
    background-color: #ffc238;
}

.tabbed.skin-orange ul li.active, .tabbed.skin-orange ul li.active:before, .tabbed.skin-orange ul li.active:after {
    background-color: #f39c12;
}

.tabbed.skin-pumpkin {
    border-bottom-color: #d35400;
}

.tabbed.skin-pumpkin ul li, .tabbed.skin-pumpkin ul li:before, .tabbed.skin-pumpkin ul li:after {
    background-color: #ed6e1a;
}

.tabbed.skin-pumpkin ul li:hover, .tabbed.skin-pumpkin ul li:hover:before, .tabbed.skin-pumpkin ul li:hover:after {
    background-color: #f97a26;
}

.tabbed.skin-pumpkin ul li.active, .tabbed.skin-pumpkin ul li.active:before, .tabbed.skin-pumpkin ul li.active:after {
    background-color: #d35400;
}

.tabbed.skin-pomegranate {
    border-bottom-color: #c0392b;
}

.tabbed.skin-pomegranate ul li, .tabbed.skin-pomegranate ul li:before, .tabbed.skin-pomegranate ul li:after {
    background-color: #da5345;
}

.tabbed.skin-pomegranate ul li:hover, .tabbed.skin-pomegranate ul li:hover:before, .tabbed.skin-pomegranate ul li:hover:after {
    background-color: #e65f51;
}

.tabbed.skin-pomegranate ul li.active, .tabbed.skin-pomegranate ul li.active:before, .tabbed.skin-pomegranate ul li.active:after {
    background-color: #c0392b;
}

.tabbed.skin-silver {
    border-bottom-color: #bdc3c7;
}

.tabbed.skin-silver ul li, .tabbed.skin-silver ul li:before, .tabbed.skin-silver ul li:after {
    background-color: #d7dde1;
    color: #666;
}

.tabbed.skin-silver ul li:hover, .tabbed.skin-silver ul li:hover:before, .tabbed.skin-silver ul li:hover:after {
    background-color: #e3e9ed;
}

.tabbed.skin-silver ul li.active, .tabbed.skin-silver ul li.active:before, .tabbed.skin-silver ul li.active:after {
    background-color: #bdc3c7;
    color: #fff;
}

.tabbed.skin-asbestos {
    border-bottom-color: #7f8c8d;
}

.tabbed.skin-asbestos ul li, .tabbed.skin-asbestos ul li:before, .tabbed.skin-asbestos ul li:after {
    background-color: #99a6a7;
}

.tabbed.skin-asbestos ul li:hover, .tabbed.skin-asbestos ul li:hover:before, .tabbed.skin-asbestos ul li:hover:after {
    background-color: #a5b2b3;
}

.tabbed.skin-asbestos ul li.active, .tabbed.skin-asbestos ul li.active:before, .tabbed.skin-asbestos ul li.active:after {
    background-color: #7f8c8d;
}

.tabbed.skin-dodgerblue {
    border-bottom-color: dodgerblue;
}

.tabbed.skin-dodgerblue ul li, .tabbed.skin-dodgerblue ul li:before, .tabbed.skin-dodgerblue ul li:after {
    background-color: deepskyblue;
}

.tabbed.skin-dodgerblue ul li:hover, .tabbed.skin-dodgerblue ul li:hover:before, .tabbed.skin-dodgerblue ul li:hover:after {
    background-color: #33ccff;
}

.tabbed.skin-dodgerblue ul li.active, .tabbed.skin-dodgerblue ul li.active:before, .tabbed.skin-dodgerblue ul li.active:after {
    background-color: dodgerblue;
}

.tabbed.skin-gray-black {
    border-bottom-color: #28343b;
}

.tabbed.skin-gray-black, .tabbed.skin-gray-black ul li, .tabbed.skin-gray-black ul li:before, .tabbed.skin-gray-black ul li:after {
    transition: none;
}

.tabbed.skin-gray-black ul li, .tabbed.skin-gray-black ul li:before, .tabbed.skin-gray-black ul li:after {
    background-color: #68737b;
}

.tabbed.skin-gray-black ul li:hover, .tabbed.skin-gray-black ul li:hover:before, .tabbed.skin-gray-black ul li:hover:after {
    background-color: #707a83;
}

.tabbed.skin-gray-black ul li.active, .tabbed.skin-gray-black ul li.active:before, .tabbed.skin-black-glass {
    border-bottom-color: #0a0809;
}

.tabbed.skin-black-glass, .tabbed.skin-black-glass ul li, .tabbed.skin-black-glass ul li:before, .tabbed.skin-black-glass ul li:after {
    transition: none;
}

.tabbed.skin-black-glass ul li, .tabbed.skin-black-glass ul li:before, .tabbed.skin-black-glass ul li:after {
    background-color: #333;
}

.tabbed.skin-black-glass ul li:hover, .tabbed.skin-black-glass ul li:hover:before, .tabbed.skin-black-glass ul li:hover:after {
    background-color: #444;
}

.tabbed.skin-black-glass ul li.active, .tabbed.skin-black-glass ul li.active:before, .loginpage .ibox-content {
    background-color: #ffffff;
    color: #999;
    padding: 15px 20px 20px 20px;
    border-color: #e7eaec;
    border-image: none;
    border-style: solid solid none;
    border: none;
    border-radius: 8px;
    /*    box-shadow: 0.5rem 0.5rem 1rem #eee;*/
}


















.rowbox {
    width: 100%;
    display: flex;
}
.mapbox {
    height: 20px;
    width: 20px;
    float: left;
    margin: 5px;
    border: 1px solid #222;
}
.mapboxtitle {
    font-size: 14px;
    padding-top: 5px;
}
.installer svg {
    width: 100%;
}
.installer #map {
    width: 100%;
    height: 500px;
}
.installer #map_puerto_rico {
    width: 100%;
    height: 300px;
}
.inallerrow {
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 100%;
    padding-bottom: 22px;
}
#preview-frame {
    width: 100%;
    height: 902px;
}
.bill-add, .bill-del {
    margin-top: 25px;
}
.vkvk .row {
    pointer-events: none;
    background: #dddddd2b;
}
.vkvk:hover {
    cursor: help;
}
.pro_title {
    color: #3699ff;
}
.product__title {
    /*    color: #3699FF;*/
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /*    max-width: 200px;*/
    /*    margin: 15px 0;*/
}
.progress {
    margin-bottom: 5px;
}
.product_desc {
    height: 41px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    /*    color: #666;*/
}





















/*rating*/
.rating {
    border: none;
    float: left;
}
.rating > input {
    display: none;
}
.rating > label:before {
    margin: 5px;
    font-size: 1.25em;
    font-family: FontAwesome;
    display: inline-block;
    content: "\f005";
}
.rating > .half:before {
    content: "\f089";
    position: absolute;
}
.rating > label {
    color: #ddd;
    float: right;
}
.rating>input:checked~label, /* show gold star when clicked */
.rating:not(:checked)>label:hover, /* hover current star */
.rating:not(:checked)>label:hover~label {
    color: #ffd700;
} 
.rating>input:checked+label:hover, /* hover current star when changing rating */
.rating>input:checked~label:hover, .rating>label:hover~input:checked~label, /* lighten current selection */
.rating>input:checked~label:hover~label {
    color: #ffed85;
}







/*Folder */
.folderbox {
    background-color: #f1f1f1;
    width: 100%;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 8px;
    color: #000;
}
.folderbox:hover {
    background-color: #f2f6fc;
}
.folderbox-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.folderbox-name > span {
    /*    font-size: 14px;*/
    color: #746c6c;
    width: 100%;
    display: inline-block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.folderbox span i {
    padding-right: 5px;
}
.folderbox img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}





.typename {
    margin: 20px 0;
    color: #000;
    font-size: 16px;
}

.three-dots:after {
    cursor: pointer;
    color: #444;
    content: "\2807";
    font-size: 16px;
    padding: 0px;
    float: right;
}

.file-view-box {
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}

.clipboard {
    display: flex;
    align-items: center;
    gap: 10px;
}
.radiolabel {
    padding: 0px 41px 0 5px;
}

.direct-insert {
    /*    color: #0070e3;*/
}













/*figure*/
figure.snip1193 {
    color: #fff;
    position: relative;
    overflow: hidden;
    /*  margin: 10px;*/
    /*min-width: 220px;
  max-width: 310px;
  max-height: 220px;*/
    width: 100%;
    background: #000000;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}
figure.snip1193 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
figure.snip1193 img {
    opacity: 1;
    width: 100%;
    display: block;
    height: 245px;
    object-fit: cover;
}
figure.snip1193 figcaption {
    /*  position: absolute;*/
}
figure.snip1193 h4, figure.snip1193 i {
    color: #ffffff;
}
figure.snip1193 h4 {
    position: absolute;
    bottom: 0;
    font-weight: 400;
    left: 0;
    width: 100%;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #1e1e2d85;
    padding: 10px;
}
figure.snip1193 i {
    font-size: 22px;
}
figure.snip1193 a {
    text-decoration: none;
}
figure.snip1193 .bottom-left, figure.snip1193 .bottom-right {
    position: absolute;
    bottom: 5px;
    opacity: 0;
}
figure.snip1193 .bottom-left {
    left: 5px;
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
}
figure.snip1193 .bottom-right {
    right: 5px;
    -webkit-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
}
figure.snip1193:hover img, figure.snip1193.hover img {
    opacity: 0.6;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
figure.snip1193:hover figcaption .bottom-left, figure.snip1193.hover figcaption .bottom-left, figure.snip1193:hover figcaption .bottom-right, figure.snip1193.hover figcaption .bottom-right {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
}






/*badge*/

.badge-icon {
    position: absolute;
    background: #fff;
    border-radius: 0px 0px 0px 5px;
    right: 0px;
    width: 40px;
    height: 40px;
    top: 0px;
    padding: 5px;
}
.badge-icon img {
    height: auto !important;
}
.badge-icon-left {
    position: absolute;
    background: #ff0000;
    border-radius: 0 0 0 0;
    right: 5px;
    width: 35px;
    height: 30px;
    top: 10px;
    padding: 5px;
    left: 20px;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    color: #fff;
}








.rowView {
    cursor: pointer;
}






.progress_main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #4e4747;
    z-index: 9999999;
    opacity: 0.7;
    display: none;
}
#progress-wrp {
    border: 1px solid #ffffff;
    padding: 3px;
    position: fixed;
    border-radius: 3px;
    text-align: center;

    box-shadow: inset 1px 3px 6px rgba(0, 0, 0, 0.12);
    top: 50%;
    z-index: 999;
    width: 100%;
}
#progress-wrp .progress-bar-custom {
    height: 30px;
    border-radius: 3px;
    background-color: #256a4b;
    width: 0;
    box-shadow: inset 1px 1px 10px rgba(0, 0, 0, 0.11);
}
#progress-wrp .status {
    top: 4px;
    left: 47%;
    position: absolute;
    display: inline-block;
    color: #ffffff;
    font-size: 19px;
    font-family: monospace;
    letter-spacing: 2px;
    font-weight: 600;
}




.emaillist span {
    padding: 8px 10px 1px 7px;
    margin: 0px 0px 3px 0px;
    display: inline-block;
}
.emaillist label {
    background-color: #939393;
    cursor: pointer;
    padding: 4px;
    border-radius: 10px;
}


.param-feature ul {
    padding: 0;
}
.param-feature ul li {
    text-align: left;
    font-size: 12px;
    padding: 5px 0;
}





.font-14 {
    font-size: 14px;
    border-bottom: 1px solid #ddd;
    line-height: 17px;
    padding-bottom: 5px;
}



/*accordion*/
.special-ui ul.accordion-list {
    position: relative;
    display: block;
    width: 100%;
    padding-left: 0;
}
.accordion {
    border-radius: 5px;
    margin-bottom: 10px;
}
.accordion .btn {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    text-align: left;
    background-color: #fff;
    cursor: pointer;
    /*    font-weight: 700;*/
    /*    font-size: 15px;*/
    letter-spacing: 0.01em;
    color: #1e1e2d;
    word-wrap: break-word;
    white-space: wrap;
    padding-right: 30px;
    border-radius: 5px;
}
.accordion .card {
    margin-bottom: 10px;
    border-radius: 5px;
}
.accordion .card-body {
    min-height: auto;
}
.accordion .btn:after {
    content: "+";
    font-family: "material-design-iconic-font";
    transform: rotate(45deg);
    position: absolute;
    right: 16px;
    top: 0px;
    color: #1e1e2d;
    transition: all 0.3s ease-in-out;
    font-size: 22px;
}
.accordion .btn.collapsed:after {
    transform: rotate(0deg);
}




.btn-primary-forgot {
    background-color: #241b4d;
    border-color: #957dff;
    color: #ffffff;
}

.btn-primary-forgot:hover {
    background-color: #673ab7;
    border-color: #673ab7;
    color: #ffffff;
}


.forgot-pass-canvas {
    position: absolute;
    z-index: 0;
    top: 0px;
    left: 0px;
    width: 1920px;
    height: auto;
}

.row.video_container {
    margin-bottom: 5px;
}

.downloadFileDelete {
    cursor: pointer;
}

.form-group-box {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    padding: 25px;
    border-radius: 10px;
}

.star-rating::before {
    content: "⭐⭐⭐⭐⭐";
}

.star-rating {
    display: inline-block;
    background-clip: text;
    -webkit-background-clip: text;
    color: rgba(0, 0, 0, 0.3);
}







.zoompage fieldset {
    display: block;
    margin-left: 2px;
    margin-right: 2px;
    padding-top: 0.35em;
    padding-bottom: 0.625em;
    padding-left: 0.75em;
    padding-right: 0.75em;
    border: 2px groove (internal value);
}
.zoompage fieldset {
    background-color: #f1f1f1;
}
.zoompage legend {
    background-color: gray;
    color: white;
    padding: 5px 10px;
}
.zoompage input {
    margin: 5px;
}



.reorder {
    cursor: move;
}

.icon-box {
    /*    border-radius: 10px;*/
    border: 1px solid #f1f1f1;
    padding: 10px;
    margin-top: 10px;
}
.icon-box label {
    margin-bottom: 10px;
}
.icons {
    font-size: 20px;
}
.icons > div {
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    text-align: center;
    position: relative;
    color: #666;
}
.icons input {
    font-size: 1em;
    cursor: pointer;
    width: 2em;
    height: 2em;
    top: 0;
    left: 0;
    margin: 0;
    display: block;
    position: absolute;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 8px;
    transition: 0.3s;
    border: 2px solid #1e1e2d;
    opacity: 0;
}
.icons input:checked {
    opacity: 1;
}






.scrollbar {
    overflow-x: hidden;
}

  







.shomore-description .text-more {
    /*   width: 660px;  */
    margin-bottom: 5px;
    padding: 0 15px;
    position: relative;
    font-size: 14px;
    display: block;
    padding-top: 10px;
}
.shomore-description .show-more {
    /*   width: 690px;  */
    color: #fff;
    position: relative;
    font-size: 12px;
    padding-top: 5px;
    height: 20px;
    text-align: center;
    /*      background: #f1f1f1; */
    cursor: pointer;
}
.shomore-description .show-more:hover {
    color: #000;
}
.shomore-description .show-more-height {
    height: 65px;
    overflow: hidden;
    padding-top: 10px;
}





.meeting_list_row hr {
    margin-top: 10px;
    margin-bottom: 10px;
}


.one_list_text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

input.mustfill {
    background-color: #fbe7dc;
    border: 1.5px solid #ed9b5f;
    background-color: #fbe7dc;
    border: 1.5px solid #ed9b5f;
}
input.mustfill:focus {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ed9b5f;
}



.label-arrow {
    display: table-cell;
    vertical-align: middle;
    color: #333;
    opacity: 0.5;
}





.float a:hover {
    color: #000;
}
.float {
    position: fixed;
    width: 50px;
    height: 50px;
    line-height: 50px;
    bottom: 10px;
    right: 10px;
    background-color: #1e1e2d;
    color: #fff;
    z-index: 999;
    border-radius: 50px;
    text-align: center;
    font-size: 18px;
}
.float:hover {
    background: #000;
    color: #fff;
}
a.float + div.label-container {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s ease;
}
a.float:hover + div.label-container {
    visibility: visible;
    opacity: 1;
}







.center-notfication-msg {
    width: 50%;
    height: 50%;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.notification.icon {
    position: absolute;
    background-color: #d54634;
    border: 4px solid rgba(0, 0, 0, 0);
    border-radius: 50%;
    height: 100px;
    width: 100px;
    padding-top: 20px;
    text-align: center;
    font-size: 3em;
    color: #fff;
    transform: translate(-50%, -50%);
}

.float .notification-number {
    position: absolute;
    right: -5px;
    top: 0px;
    z-index: 1;
    background: #cc2311;
    border: 3px solid #fff;
    border-radius: 50%;
    padding-top: 5px;
    height: 25px;
    width: 25px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    line-height: 10px;
    color: #fff;
    -webkit-animation: bounce 1s infinite;
}




@-webkit-keyframes bounce {
    0%,     100%,     20%,     53%,     80% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%,     43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        -ms-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        -ms-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        -ms-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

.module_disable {
    pointer-events: none;
    opacity: 0.3;
}

.section-announcement {
    background-color: #2a7acf;
    color: white;
    margin: 0 -5px;
}

.section-announcement div {
    /*display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 100%;*/
}

.section-announcement div .news-message {
    /*display: flex;
    flex-shrink: 0;
    height: 50px;
    align-items: end;
    animation: slide-left 20s linear infinite;
    width: 100%;
    text-align: right;
    justify-content: flex-end;*/
}

.section-announcement div .news-message span {
    font-size: 18px;
    padding: 5px 80px;
    margin: 0;
    padding-top: 10px;
    display: inline-block;
}

@keyframes slide-left {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@-webkit-keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.ticker-wrap {
    /*  position: fixed;*/
    bottom: 0;
    width: 100%;
    overflow: hidden;
    padding: 8px;
    /*    background-color: var(--left_bar_icon_color);*/
    background: #d2eaff;
    padding-left: 100%;
    box-sizing: content-box;
    border-radius: 10px;
    margin-top: 15px;
    margin-right: 8px;
    position: relative;
    z-index: 1;
}

.ticker-wrap .ticker {
    display: inline-block;
    white-space: nowrap;
    padding-right: 100%;
    box-sizing: content-box;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-name: ticker;
    animation-name: ticker;
    -webkit-animation-duration: 30s;
    animation-duration: 30s;
}

.ticker-wrap .ticker__item {
    display: inline-block;
    padding: 0 15px;
    font-size: 12px;
    color: #1e1e2d;
    font-weight: 500;
}

.dropdown-menu {
    padding: 5px;
    border-radius: 5px !important;
    box-shadow: 0 2px 6px 5px rgb(110 110 110 / 53%);
}

.dropdown-item {
    padding: 5px 10px;
    border-radius: 5px;
    margin: 0;
    display: block;
}

.dropdown-menu > li > .dropdown-item:focus, .dropdown-menu > li > .dropdown-item:hover {
    /*    background-color: #f3f3f3;*/
}

.navbar-nav .open .dropdown-menu .dropdown-header, .navbar-nav .open .dropdown-menu > li > a {
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}
.dropdown-menu > li > a {
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.footer {
    position: relative;
    left: 0;
    padding: 10px 20px;
    background: #4bb2f1;
    border: 0;
    color: #fff;
    border-radius: 5px;
    margin: 14px;
}

.panel-border.panel-purple .panel-heading {
    border-color: #1e1e2d;
    color: #1e1e2d;
}





.modal .modal-dialog .modal-content {
    border-radius: 5px;
    padding: 15px;
}

@media screen (min-width:768px){
    .row.align-items-center {
        display: flex;
        align-items: center;
    }
}

.panel-title {
    text-transform: capitalize;
    color: #1e1e2d;
}

.img-thumbnail-box {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    align-items: center;
}

.modal.fade .modal-dialog {
    /*     transform: translate(0, -50%);*/
    /*     top: 47%;*/
}

.page-title-box-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.q-icon {
    position: absolute;
    z-index: 99;
    right: 30px;
    top: 75px;
    /*    background: #fff;*/
    padding: 5px 10px;
    border-radius: 5px;
}

.q-icon a {
    /*    color: #fff;*/
}

@media screen and (max-width: 768px) {
    .page-title-box-2 {
        flex-direction: column;
        gap: 10px;
        align-items: start;
    }
}

.sn-checkbox-open-in-new-window, .sn-checkbox-use-protocol {
    display: none;
}

#sidebar-menu .whitelabel-menu a, #sidebar-menu .whitelabel-menu a:hover {
/*    background: #fff !important;*/
/*    color: #000 !important;*/
}


.fc th.fc-widget-header {
    background: #fcf8e336;
}

.fc-day {
    background: #fcf8e336;
}

.fc-day-grid-event .fc-content {
    padding: 5px;
}

.fc-unthemed .fc-today {
    background: #b5b2a32e !important;
}

.fc-today.fc-state-highlight {
    background: transparent !important;
}

.fc button {
    background: #000000bd;
    color: #fff;
    box-shadow: none;
    text-shadow: none;
}

.fc button .fc-icon {
    color: #fff;
}

.note-editor .note-editing-area .note-editable, .note-editor .note-editing-area .note-editable p, .note-editor .note-editing-area .note-editable span {
    color: #000 !important;
}

.btn-info span {
    color: #fff !important;
}

.theme-img-halloween, .theme-img-christmas {
    display: none;
}
.dropdown-menu .dropdown-item {
    color: #fff !important;
}
.dropdown-item a, .chat-messages ul li .dropdown-item {
    color: #fff !important;
    font-weight: normal;
}

.chatbot-header .bot-name h5 a {
    color: #fff !important;
}
.board-column .footer input[type="text"] {
    color: #000;
}








.note-btn-group .btn {
    background: transparent !important;
    color: #000 !important;
    border: none !important;
}
.note-btn-group .btn span.note-current-fontsize, .note-btn-group .note-icon-caret {
    color: #000;
}



.bootstrap-timepicker-widget table td input {
    color: #000;
}

.fc-day-grid-event .fc-content span {
    color: #fff !important;
}
.fc-unthemed .fc-popover span {
    color: #000 !important;
}
.fc-day-grid-event .fc-content span {
    color: #fff !important;
    word-wrap: normal;
    white-space: normal;
}


/*popup*/
.modal-header:after, .modal-header:before{
    display: none;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    min-width: 100%;
    align-items: center;
}
.modal-title{
    line-height: inherit;
}
.modal .modal-dialog .modal-content .modal-body{
    padding-top: 20px;
    padding-bottom: 0;
}








/*chat*/

.chat-bord-box .sidebar .nav li a {
    color: #fff !important;
}

.btn-custom, 
.btn-custom span, 
.btn-custom i, 
.btn-primary, 
.btn-primary span, 
.btn-primary i, 
.btn-success, 
.btn-success span, 
.btn-success i, 
.btn-info, 
.btn-info span, 
.btn-info i, 
.btn-warning, 
.btn-warning span, 
.btn-warning i, 
.btn-danger, 
.btn-danger span, 
.btn-danger i, 
.btn-inverse, 
.btn-inverse span, 
.btn-inverse i, 
.btn-purple, 
.btn-purple span, 
.btn-purple i, 
.btn-pink, 
.btn-pink span, 
.btn-pink i, 
.btn-orange, 
.btn-orange span, 
.btn-orange i, 
.btn-brown, 
.btn-brown span, 
.btn-brown i, 
.btn-teal, 
.btn-teal span, 
.btn-teal i,
.btn-blue,
.btn-blue i{
    color: #fff !important;
}

/* chat popup  */
.chat-mess p {
    color: #333 !important;
}
.chat-box .input-group input {
    border-radius: 10px !important;
    margin-right: 5px;
}
.chatbot-header .bot-name h5 {
    margin-top: 0;
}
.chat-box .chat-bord .chat-mess .mess-time-user {
    color: #666;
}
/* chat popup  */
.datepicker.datepicker-dropdown.dropdown-menu.datepicker-orient-left.datepicker-orient-top {
    background: #fff !important;
}
.content span.badge {
    color: #fff !important;
}



@media screen and (max-width: 1366px) {
    .card-box {
        padding: 10px;
        border-radius: 5px;
        margin-bottom: 10px;
    } 
    .card-title {
        margin: -10px;
        margin-bottom: 10px;
        padding: 10px 10px;
    }

    .card-title h4 {
        font-size: 14px;
    }

    .dashboard .card-box a {
        font-size: 12px;
    }

    .form-control, .select2-container--default .select2-selection--single {
        min-height: 34px;
        height: 34px;
        font-size: 12px;
    }


    .btn{
        padding: 4px 8px;
/*        min-height: 34px;*/
    }


    .accordion .btn:after{
        right: 6px;
        top: 1px;
        font-size: 16px;
    }
}
@media only screen and (max-width: 768px) {
    figure.snip1193 h4 {
        font-size: 10px;
    }
    .footer{
        margin: 5px;
    }
}

@media screen and (max-width: 419px) { 
    .button-menu-mobile {
        position: inherit;
        top: 0px;
        left: 0px;
    } 
    .nav > li > a.user-link {
        padding: 0px;
    }
    .page-title-box .breadcrumb {
        display: block;
    }
    .user-img {
        width: 50px;
    }
}


@media screen and (min-width: 1367px) {
    body {
        font-size: 14px;
    }
    .card-title h4 a, .card-title h4{
        font-size: 16px;
    }
    .table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
        padding: 8px 10px;
        font-size: 14px;
    }
}


.lds-dual-ring {
    display: none;
}
.lds-dual-ring,
.lds-dual-ring:after {
    box-sizing: border-box;
}
.lds-dual-ring {
    /* display: inline-block; */
    width: 80px;
    height: 80px;
    margin: 0 auto;
}
.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6.4px solid currentColor;
    border-color: currentColor transparent currentColor transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

