/*
========================================================================

Yanyx UI: style.css ( Main Theme CSS file )

Theme Name: Yanyx UI Bootstrap 4 Admin Template
Version: 1.0
Author: Vizz Studio
Author URI: http://themeforest.net/user/vizzstudio
If you having trouble in editing js. please send a mail to hq8055@gmail.com

This is the file you need to edit to change the look of the theme.
========================================================================

- // TABLE OF CONTENTS // -

================================================
 # Admin Dashboard
 ===============================================
 => General Style
 => Global Style
 => Functions
 => Typography
 => Sidebar
 => Header
 => Notification Menu
 => Alert
 => Accordions
 => Buttons
 => Cards
 => List
 => Modals
 => Pagination
 => Tabs
 => Grid
 => Icons
 => Table
 => Toastr
 => Sweet Alert
 => Image Cropper
 => Css Loaders
 => App Tour
 => Ladda Button
 => Dropzone
 => Forms
 => Mail Box
 => Gallery
 => Session
 => Error Pages
 => Invoice
 => Home
*/


/* ========================================= */


/* 		   		General Styling	 			 */


/* ========================================= */

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    background: transparent;
    box-sizing: border-box;
}

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

*:focus {
    outline: 0;
}

html {
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

ol,
ul {
    list-style: none;
}

:focus {
    outline: 0;
}

.clear {
    clear: both;
    line-height: 0;
    font-size: 0;
}

.clearfix:after {
    clear: both;
    content: '.';
    display: block;
    visibility: hidden;
    height: 0;
}

.clearfix:after .test {
    color: red;
}

.clearfix {
    display: inline-block;
}

* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}

header,
nav,
section,
article,
aside,
footer {
    display: block;
}


/* ============================ */


/*            Preloader         */


/* ============================ */

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
}

.spinner {
    width: 40px;
    height: 40px;
    position: relative;
    top: 50%;
    transform: translate(0, -50%);
    margin: 0 auto;
}

.double-bounce1,
.double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
    0%,
    100% {
        -webkit-transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
    }
}

@keyframes sk-bounce {
    0%,
    100% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }
    50% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}


/* End Preloader */

img {
    margin: 0;
}


/* links */

a,
a:visited {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    outline: 0;
    font-family: 'Poppins', sans-serif;
}

a:hover {
    text-decoration: none;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

p a,
p a:visited {
    line-height: inherit;
    outline: 0;
}


/* list */

ul,
ol {
    margin-bottom: 0px;
    margin-top: 0px;
    padding: 0;
}

ul {
    margin: 0;
    list-style-type: none;
}

ol {
    list-style: decimal;
}

ol,
ul.square,
ul.circle,
ul.disc {
    margin-left: 0px;
}

ul.square {
    list-style: square outside;
}

ul.circle {
    list-style: circle outside;
}

ul.disc {
    list-style: disc outside;
}

ul ul,
ul ol,
ol ol,
ol ul {
    margin: 0;
}

ul ul li,
ul ol li,
ol ol li,
ol ul li {
    margin-bottom: 0px;
}

button {
    cursor: pointer;
    outline: none !important;
    letter-spacing: 0;
}


/*------------------------- 1. Core Css -------------------*/

.page-container {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    padding-left: 250px;
    -webkit-transition: padding-left 0.3s ease 0s;
    transition: padding-left 0.3s ease 0s;
    background: #fafafa;
}

.sidebar_collapsed.page-container {
    padding-left: 0;
}

.main-content-inner,
.content-wrapper {
    padding: 40px 0;
}

@media (max-width: 992px) {
    .main-content-inner,
    .content-wrapper {
        padding: 40px 15px;
    }
}

.page-content .main-content-inner {
    padding: 40px;
    padding-top: 10px;
}

@media (max-width: 992px) {
    .page-content .main-content-inner {
        padding: 40px 15px;
    }
}

.main-content {
    width: 100%;
    background: #fafafa;
    padding-top: 18px;
}

@media (max-width: 991.98px) {
    .main-content {
        padding-top: 18px;
    }
}


/*------------------------- END Core Css -------------------*/

.footer-area {
    text-align: center;
    padding: 23px 0 19px;
    background: #fff;
}

.footer-area p {
    color: #676666;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .d_block_lg {
        display: block !important;
    }
    .d_none_lg {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .d_none_sm {
        display: none !important;
    }
    .d_block_sm {
        display: block !important;
    }
}


/*Medium Desktop Device*/

@media screen and (min-width: 1200px) and (max-width: 1440px) {
    .col-ml-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-ml-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .col-ml-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-ml-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (max-width: 1370px) {
    .page-container,
    .sidebar_collapsed.page-container {
        padding-left: 0;
    }
}


/* ============================= */


/*           Fancy Box           */


/* ============================= */

.fancybox-next span,
.fancybox-prev span {
    background-image: none !important;
    width: 44px !important;
    height: 44px !important;
    line-height: 44px !important;
    text-align: center;
}

.fancybox-next span:before,
.fancybox-prev span:before {
    content: '';
    position: absolute;
    font-family: 'FontAwesome';
    left: 0px;
    top: 0px;
    font-size: 12px;
    width: 44px !important;
    height: 44px !important;
    line-height: 44px !important;
    background-color: rgba(28, 28, 28, 0.4) !important;
    color: #ffffff;
    visibility: visible;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
}

.fancybox-next span:before {
    content: '\f178';
}

.fancybox-prev span:before {
    content: '\f177';
}

.fancybox-next:hover span:before,
.fancybox-prev:hover span:before {
    background: #212529 !important;
    color: #FFFFFF;
}

.fancybox-type-image .fancybox-close {
    right: 0px;
    top: 0px;
    width: 45px;
    height: 45px;
    background: url(../images/icon-cross.png) center center no-repeat;
    background-color: #212529 !important;
}

.fancybox-type-image .fancybox-close:hover {
    background-color: #000000 !important;
}

.fancybox-type-image .fancybox-skin {
    padding: 0px !important;
}

.section_heading {
    font-size: 40px;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

@media only screen and (max-width: 480px) {
    .section_heading {
        font-size: 25px !important;
    }
}

.section_heading .heading_bg {
    top: 30px;
    color: #666;
    font-size: 70px;
    width: 100%;
    display: block;
    position: relative;
    opacity: 0.1;
}

@media only screen and (max-width: 767px) {
    .section_heading .heading_bg {
        font-size: 50px;
    }
}

@media only screen and (max-width: 480px) {
    .section_heading .heading_bg {
        font-size: 25px;
    }
}


/* ============================ */


/*            Card              */


/* ============================ */

.card {
    border-radius: 2px !important;
    background-color: #fff;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border: none;
    box-shadow: -8px 12px 18px 0 rgba(15, 32, 60, 0.1);
}

.card .card-body {
    padding: 25px;
}

.card .card_title {
    margin-bottom: 24px;
    text-transform: uppercase;
    color: #212529;
    font-weight: 700;
    font-size: 14px;
    line-height: 28px;
}

.card .card-footer {
    border-top: 1px solid #e6e6f2;
    background: #fff;
}

.h-full {
    height: 100%;
}

.arrow-none:after {
    display: none !important;
}

.stretched_card {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: stretch;
    align-items: stretch;
    justify-content: stretch;
}

.stretched_card>.card {
    width: 100%;
    min-width: 100%;
}

.chart_container {
    height: 350px;
}

.sparklines-full {
    margin-left: -10px;
    transform: translateX(5px) translateY(5px);
}

.jqstooltip {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    background: #fff !important;
    color: #444 !important;
    border-radius: 4px;
}

.jqstooltip span {
    color: #444 !important;
}

.jqsfield {
    font-size: 10px !important;
    color: black !important;
    /*set the text color here */
}

.carousel img {
    width: 100%;
}


/* Ace Editor */

.ace_editor {
    margin: auto;
    height: 300px;
    width: 100%;
}

.ace_editor .ace_content {
    font-size: 14px;
}

.card_dropdown .dropdown-menu {
    font-size: 14px;
    text-align: right;
    text-transform: initial;
}

#morris_line {
    font-family: 'Montserrat' !important;
}

.h-2p {
    height: 3px !important;
}

@media screen and (max-width: 767px) {
    .mb-xs-mob-4 {
        margin-bottom: 1.5rem;
    }
}

@media screen and (max-width: 991px) {
    .d-block-mob {
        display: block !important;
    }
    .mt-mob-0 {
        margin-top: 0 !important;
    }
    .mt-mob-1 {
        margin-top: 0.25rem !important;
    }
    .mt-mob-2 {
        margin-top: 0.5rem !important;
    }
    .mt-mob-3 {
        margin-top: 1rem !important;
    }
    .mt-mob-4 {
        margin-top: 1.5rem !important;
    }
    .mt-mob-5 {
        margin-top: 3rem !important;
    }
    .mr-mob-0 {
        margin-right: 0 !important;
    }
    .mr-mob-1 {
        margin-right: 0.25rem !important;
    }
    .mr-mob-2 {
        margin-right: 0.5rem !important;
    }
    .mr-mob-3 {
        margin-right: 1rem !important;
    }
    .mr-mob-4 {
        margin-right: 1.5rem !important;
    }
    .mr-mob-5 {
        margin-right: 3rem !important;
    }
    .mb-mob-0 {
        margin-bottom: 0 !important;
    }
    .mb-mob-1 {
        margin-bottom: 0.25rem !important;
    }
    .mb-mob-2 {
        margin-bottom: 0.5rem !important;
    }
    .mb-mob-3 {
        margin-bottom: 1rem !important;
    }
    .mb-mob-4 {
        margin-bottom: 1.5rem !important;
    }
    .mb-mob-5 {
        margin-bottom: 3rem !important;
    }
    .ml-mob-0 {
        margin-left: 0 !important;
    }
    .ml-mob-1 {
        margin-left: 0.25rem !important;
    }
    .ml-mob-2 {
        margin-left: 0.5rem !important;
    }
    .ml-mob-3 {
        margin-left: 1rem !important;
    }
    .ml-mob-4 {
        margin-left: 1.5rem !important;
    }
    .ml-mob-5 {
        margin-left: 3rem !important;
    }
    .pt-mob-0 {
        padding-top: 0 !important;
    }
    .pt-mob-1 {
        padding-top: 0.25rem !important;
    }
    .pt-mob-2 {
        padding-top: 0.5rem !important;
    }
    .pt-mob-3 {
        padding-top: 1rem !important;
    }
    .pt-mob-4 {
        padding-top: 1.5rem !important;
    }
    .pt-mob-5 {
        padding-top: 3rem !important;
    }
    .pr-mob-0 {
        padding-right: 0 !important;
    }
    .pr-mob-1 {
        padding-right: 0.25rem !important;
    }
    .pr-mob-2 {
        padding-right: 0.5rem !important;
    }
    .pr-mob-3 {
        padding-right: 1rem !important;
    }
    .pr-mob-4 {
        padding-right: 1.5rem !important;
    }
    .pr-mob-5 {
        padding-right: 3rem !important;
    }
    .pb-mob-0 {
        padding-bottom: 0 !important;
    }
    .pb-mob-1 {
        padding-bottom: 0.25rem !important;
    }
    .pb-mob-2 {
        padding-bottom: 0.5rem !important;
    }
    .pb-mob-3 {
        padding-bottom: 1rem !important;
    }
    .pb-mob-4 {
        padding-bottom: 1.5rem !important;
    }
    .pb-mob-5 {
        padding-bottom: 3rem !important;
    }
    .pl-mob-0 {
        padding-left: 0 !important;
    }
    .pl-mob-1 {
        padding-left: 0.25rem !important;
    }
    .pl-mob-2 {
        padding-left: 0.5rem !important;
    }
    .pl-mob-3 {
        padding-left: 1rem !important;
    }
    .pl-mob-4 {
        padding-left: 1.5rem !important;
    }
    .pl-mob-5 {
        padding-left: 3rem !important;
    }
}

@media screen and (max-width: 767px) {
    .pull-left-mob {
        float: left !important;
    }
}

.social-sales-icon-circle {
    height: 40px;
    width: 40px;
    line-height: 1;
    text-align: center;
    border-radius: 100%;
    padding: 12px 13px;
    display: inline-block;
}

.social-sales-count {
    float: right;
    line-height: 2.9;
}

.facebook-bgcolor {
    background-color: #3b5898;
    color: #fff;
}

.twitter-bgcolor {
    background-color: #1ea2f2;
    color: #fff;
}

.instagram-bgcolor {
    background-color: #9361fa;
    color: #fff;
}

.pinterest-bgcolor {
    background-color: #3E1152;
    color: #fff;
}

.googleplus-bgcolor {
    background-color: #3E1152;
    color: #fff;
}


/* ========================================= */


/* 		   			LAYOUT 					 */


/* ========================================= */


/* ============================ */


/*          Typography          */


/* ============================ */

* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: "Overpass", sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: "Overpass", sans-serif;
    line-height: normal;
    color: #444;
    font-weight: 600;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
}

a {
    color: #FFF2B2;
}

a:hover {
    color: #FFF2B2;    
}

ul li {
    font-size: 14px;
    font-weight: 400;
}

blockquote {
    font-size: 16px !important;
    font-weight: 300;
    border: none;
    line-height: 30px;
    color: #202020;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    margin-top: 40px;
    padding: 60px 30px 40px;
    text-align: center;
}

@media only screen and (max-width: 640px) {
    blockquote {
        padding: 30px 25px 30px 70px;
    }
}

@media only screen and (max-width: 480px) {
    blockquote {
        padding: 32px 20px;
    }
}

blockquote:before {
    content: "\e67f";
    font-family: themify;
    font-size: 45px;
    color: #e7e6e6;
    left: 50%;
    position: absolute;
    top: 3px;
    transform: translate(-50%, 0px);
}

@media only screen and (max-width: 480px) {
    blockquote:before {
        opacity: 0.2;
    }
}

blockquote span {
    position: relative;
    padding-left: 20px;
}

blockquote span:before {
    content: '';
    width: 12px;
    height: 1px;
    background: #202020;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -2px;
}

.text-primary {
    color: #3E1152 !important;
}

.text-secondary {
    color: #74829c !important;
}

.text-success {
    color: #3fb504 !important;
}

.text-danger {
    color: #ec0877 !important;
}

.text-warning {
    color: #f39a51 !important;
}

.text-dark {
    color: #444 !important;
}

.text-light {
    color: #d2ddeb !important;
}

.text-grey {
    color: #8392a5 !important;
}


/* ============================ */


/*        Sidebar Menu          */


/* ============================ */

.sidebar-menu {
    position: fixed;
    left: 20px;
    top: 16px;
    z-index: 99;
    height: 95vh;
    width: 250px;
    overflow: hidden;
    background: #3E1152;
    box-shadow: 2px 0 32px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border-radius: 10px;
}

@media (min-width: 992px) and (max-width: 1364px) {
    .sidebar-menu {
        position: fixed;
        left: -90%;
        top: 0;
        height: 100vh;
        width: 365px;
    }
}

@media only screen and (max-width: 991px) {
    .sidebar-menu {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        width: 306px;
    }
}

.sidebar-menu.light-sidebar {
    background: #fff;
}

.sidebar-menu.light-sidebar .metismenu>li:hover>a,
.sidebar-menu.light-sidebar .metismenu>li.active>a i,
.sidebar-menu.light-sidebar .metismenu>li.active>a {
    color: #3E1152;
    background: #F7F7FA;
}

.sidebar-menu.light-sidebar .metismenu li a {
    color: #8d97ad;
}

.sidebar-menu.light-sidebar .metismenu li a:after {
    color: #8d97ad;
}

.sidebar-menu.light-sidebar i {
    color: #444;
}

.sidebar-menu.light-sidebar .metismenu li:hover>a i,
.sidebar-menu.light-sidebar .metismenu li:hover>a,
.sidebar-menu.light-sidebar .metismenu li.active>a,
.sidebar-menu.light-sidebar .metismenu li.active>a i {
    color: #3E1152;
}

.sidebar-menu.light-sidebar .sidebar-header {
    padding: 19px 32px 20px;
    background: #fff;
    border-bottom: 1px solid #eaeaea;
}

.sidebar-menu svg {
    color: #fff;
    fill: #1e1d2f;
    width: 18px;
    vertical-align: text-bottom;
    height: 18px;
}

.sidebar-menu .logo {
    text-align: center;
}

.sidebar-menu .logo a {
    display: inline-block;
    max-width: 120px;
}

@media (min-width: 768px) and (max-width: 1364px) {
    .sidebar-menu .logo a span {
        display: block;
    }
}

.sidebar-menu .main-menu {
    height: calc(100% - 100px);
    overflow: hidden;
    padding: 20px 10px 0 10px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.sidebar-menu .main-menu .menu-inner {
    overflow-y: scroll;
    height: 100%;
}

.sidebar-menu .sidebar-header {
    padding: 19px 32px 20px;
    background: #3E1152;
    border-bottom: 1px solid #fff;
}

.slimScrollBar {
    background: #3E1152 !important;
    opacity: 0.1 !important;
}


/* ============================ */


/*        Sidebar Collapsed     */


/* ============================ */

@media (max-width: 1364px) {
    .sidebar_collapsed .header-area.light-header .nav-btn {
        background: #6F4183;
    }
}

.sidebar_collapsed .sidebar-menu {
    left: -280px;
}

@media (max-width: 1364px) {
    .sidebar_collapsed .sidebar-menu {
        width: 305px;
        left: 0;
    }
}

@media (max-width: 991px) {
    .sidebar_collapsed .sidebar-menu {
        left: auto !important;
        right: 0 !important;
    }
}

@media only screen and (max-width: 480px) {
    .sidebar_collapsed .sidebar-menu {
        width: 255px;
    }
}

@media (min-width: 991px) and (max-width: 1364px) {
    .sidebar_collapsed .nav-btn {
        position: fixed;
        z-index: 99;
        left: 304px;
        padding: 14px;
        top: 9px;
        margin: 0;
        padding-top: 11px !important;
        padding-right: 6px !important;
        background: #6F4183;
    }
}

@media only screen and (max-width: 991px) {
    .sidebar_collapsed .nav-btn {
        position: fixed;
        z-index: 99;
        background: #6F4183;
        height: 50px !important;
        width: 50px !important;
        left: auto !important;
        right: 250px !important;
        padding-top: 17px !important;
        padding-left: 6px !important;
        margin-top: 10px !important;
        top: 0 !important;
        transform: initial !important;
        margin-right: 0 !important;
    }
}

@media only screen and (max-width: 767px) {
    .sidebar_collapsed .nav-btn {
        right: 263px !important;
    }
}

@media only screen and (max-width: 480px) {
    .sidebar_collapsed .nav-btn {
        right: 247px !important;
    }
}

@media (max-width: 1364px) {
    .sidebar_collapsed .nav-btn span {
        background: #fffbfb !important;
    }
}


/* ============================ */


/*        Metis Menu            */


/* ============================ */

.metismenu li a {
    position: relative;
    display: block;
    color: #fff;
    font-size: 13px;
    text-transform: capitalize;
    padding: 10px;
    letter-spacing: 0;
    font-weight: 400;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    margin-bottom: 2px;
}

.metismenu li a span {
    margin-left: 7px;
}

.metismenu li a:after {
    position: absolute;
    content: '\f107';
    font-family: fontawesome;
    right: 15px;
    top: 11px;
    color: #fff;
    font-size: 14px;
}

.metismenu li a i {
    color: #fff;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    font-size: 14px;
}

.metismenu li.active>a:after {
    content: '\f106';
}

.metismenu li a:only-child::after {
    content: "";
}

.metismenu>li>a {
    padding-left: 22px !important;
}

.metismenu li.active>a,
.metismenu li:hover>a {
    color: #fff;
}

.metismenu li li a {
    padding: 8px 20px;
}

.metismenu li ul {
    padding-left: 28px;
}

.metismenu>li:hover>a,
.metismenu>li.active>a svg,
.metismenu>li.active>a {
    color: #fff;
    background: #FFF2B2;
}

.metismenu li:hover>a,
.metismenu li.active>a {
    color: #3E1152;
    background: #FFF2B2;
}

.metismenu li:hover>a i,
.metismenu li.active>a i {
    color: #3E1152;

}

.metismenu li li a:after {
    top: 6px;
}


/* ============================ */


/*        End Sidebar Menu      */


/* ============================ */


/*============================ */


/*            Header            */


/* ============================ */

.rt_nav_header {
    box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
    padding-bottom: 20px !important;
}

@media (max-width: 991px) {
    .rt_nav_header {
        padding-bottom: 0px !important;
    }
}

.rt_nav_header.horizontal-layout {
    font-family: "Overpass", sans-serif;
}

.rt_nav_header.horizontal-layout .flex-grow-1,
.rt_nav_header.horizontal-layout .flex-grow {
    flex-grow: 1 !important;
}

.rt_nav_header.horizontal-layout .dropdownAnimation,
.rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav .nav-item.dropdown .navbar-dropdown,
.rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item .submenu {
    animation-name: dropdownAnimation;
    -webkit-animation-duration: 0.25s;
    -moz-animation-duration: 0.25s;
    -ms-animation-duration: 0.25s;
    -o-animation-duration: 0.25s;
    animation-duration: 0.25s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

@keyframes dropdownAnimation {
    from {
        opacity: 0;
        transform: translate3d(0, -30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0px, 0);
    }
}

.rt_nav_header.horizontal-layout .view_btn {
    float: right;
    display: inline-block;
    color: white;
    font-size: 12px;
    background:  #3E1152;
    ;
    padding: 7px 15px;
    margin-left: 2.5rem;
    border-radius: 4px;
}

@media only screen and (max-width: 480px) {
    .rt_nav_header.horizontal-layout .view_btn {
        float: none;
        margin-top: 6px;
    }
}

.rt_nav_header.horizontal-layout .menu_icon {
    margin-right: 10px;
    font-size: 1rem;
    color: #565658;
    font-weight: 600;
}

.rtl .rt_nav_header.horizontal-layout .menu_icon {
    margin-right: 0;
    margin-left: 10px;
}

.rt_nav_header.horizontal-layout .rt-notification-list .rt-notification-item .rt-notification-thumbnail {
    color: #fff;
    position: relative;
}

.rt_nav_header.horizontal-layout .rt-notification-list .rt-notification-item .rt-notification-thumbnail img {
    width: 36px;
    height: 36px;
    border-radius: 100%;
}

.rt_nav_header.horizontal-layout .rt-notification-list .rt-notification-item .rt-notification-item-content {
    line-height: 1;
    padding-left: 15px;
}

.rt_nav_header.horizontal-layout .rt-notification-list .rt-notification-item .rt-notification-subject {
    font-family: "Overpass", sans-serif;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 100%;
    white-space: nowrap;
    margin-bottom: 2px;
}

.rt_nav_header.horizontal-layout .rt-notification-list .rt-notification-item .small-text {
    font-size: 12px;
}

.rt_nav_header.horizontal-layout .rt-notification-list .rt-notification-item .rt-notification-item-content p {
    margin-bottom: 10px;
    line-height: 16px;
}

.rt_nav_header.horizontal-layout .top_nav {
    background: #fff;
    height: 70px;
}

.rt_nav_header.horizontal-layout .top_nav .rt_nav_wrapper {
    padding: 0 1rem 0 0;
}

@media (max-width: 767px) {
    .rt_nav_header.horizontal-layout .top_nav .rt_nav_wrapper {
        padding: 0 1rem;
    }
}

.rt_nav_header.horizontal-layout .top_nav .rt_nav_wrapper .nav_logo {
    margin-right: 0;
    padding: 0.25rem 0;
}

.rt_nav_header.horizontal-layout .top_nav .rt_nav_wrapper .nav_logo:active,
.rt_nav_header.horizontal-layout .top_nav .rt_nav_wrapper .nav_logo:focus,
.rt_nav_header.horizontal-layout .top_nav .rt_nav_wrapper .nav_logo:hover {
    color: #5e5e5e;
}

.rt_nav_header.horizontal-layout .top_nav .rt_nav_wrapper .nav_logo img {
    max-width: 100%;
    height: 30px;
    margin: auto;
    vertical-align: middle;
}

.rt_nav_header.horizontal-layout .top_nav .rt_nav_wrapper .nav_logo_mob {
    display: none;
}

.rt_nav_header.horizontal-layout .top_nav .rt_nav_wrapper .nav_logo_mob img {
    width: auto;
    max-width: 100%;
    height: 28px;
    margin-left: 0;
}

@media (max-width: 576px) {
    .rt_nav_header.horizontal-layout .top_nav .rt_nav_wrapper {
        width: 70px;
    }
    .rt_nav_header.horizontal-layout .top_nav .rt_nav_wrapper .nav_logo {
        display: none;
    }
    .rt_nav_header.horizontal-layout .top_nav .rt_nav_wrapper .nav_logo_mob {
        display: block;
    }
}

.rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main {
    color: #FFFFFF;
    padding: 0 0 0 1rem;
}

.rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav {
    flex-direction: row !important;
    align-items: center !important;
}

.rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav .nav-item {
    margin-left: 1rem;
    margin-right: 1rem;
    line-height: 1;
}

.rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav .nav-item .nav-link {
    color: #FFFFFF;
    font-size: 14px;
    vertical-align: middle;
}

.rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav .nav-item .nav-link.count-indicator {
    position: relative;
    text-align: center;
}

.rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav .nav-item .nav-link.count-indicator i {
    color: #444;
    vertical-align: middle;
}

.rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav .nav-item .nav-link.count-indicator .count {
    position: absolute;
    left: 10px;
    width: 15px;
    height: 15px;
    line-height: 15px;
    border-radius: 100%;
    background: #3E1152;
    top: -5px;
    font-size: .5625rem;
    color: #fff;
    text-align: center;
    font-weight: bold;
}

.rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav .nav-item .nav-link.count-indicator:after {
    display: none;
}

.rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav .nav-item .nav-link i {
    font-size: 1rem;
    vertical-align: middle;
    line-height: 1.2;
}

.rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav .nav-item.dropdown .navbar-dropdown {
    font-size: 0.9rem;
    margin-top: 0;
    position: absolute !important;
    top: calc(60px - 6px) !important;
    right: 0 !important;
    left: auto !important;
    border: 0;
    padding: 0 0 20px;
    min-width: 100%;
    border-radius: 10px;
    box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

@media (max-width: 992px) {
    .rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav .nav-item.dropdown .navbar-dropdown {
        top: calc(75px - 6px) !important;
    }
}

.rtl .rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav .nav-item.dropdown .navbar-dropdown {
    right: auto;
    left: 0;
}

.rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav .nav-item.dropdown .navbar-dropdown.dropdown-left {
    left: 0;
    right: auto;
}

.rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav .nav-item.dropdown .navbar-dropdown .badge {
    margin-left: 2.5rem;
}

.rtl .rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav .nav-item.dropdown .navbar-dropdown .badge {
    margin-left: 0;
    margin-right: 1.25rem;
}

.rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav .nav-item.dropdown .navbar-dropdown a.dropdown-item:hover {
    cursor: pointer;
}

.rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav .nav-item.dropdown .navbar-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding: 10px 25px;
}

.rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav .nav-item.dropdown .navbar-dropdown .dropdown-item:active {
    background: transparent;
}

.rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav .nav-item.dropdown .navbar-dropdown .dropdown-item i {
    font-size: 17px;
}

.rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav .nav-item.dropdown .navbar-dropdown .dropdown-item .rt-notification-subject {
    font-family: "Overpass", sans-serif;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 100%;
    white-space: nowrap;
}

.rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav .nav-item.dropdown .navbar-dropdown .dropdown-item .rt-notification-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav .nav-item.dropdown .navbar-dropdown .dropdown-item .small-text {
    font-size: 12px;
}

.rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav .nav-item.dropdown .navbar-dropdown .dropdown-divider {
    margin: 0;
}

@media (max-width: 768px) {
    .rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav .nav-item.dropdown {
        position: static;
    }
    .rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav .nav-item.dropdown .navbar-dropdown {
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
        min-width: auto;
    }
}

.rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav.navbar-nav-right .nav-item.nav-profile .nav-link {
    padding: 0;
}

.rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav.navbar-nav-right .nav-item.nav-profile .nav-link:after {
    display: none;
}

.rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav.navbar-nav-right .nav-item.nav-profile img {
    width: 35px;
    height: 35px;
    border-radius: 50px;
    margin-left: 10px;
}

.rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav.navbar-nav-right .nav-item.nav-profile .profile_name {
    vertical-align: middle;
    color: #444;
    margin-left: .25rem;
}

@media (max-width: 767px) {
    .rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav.navbar-nav-right .nav-item.nav-profile .profile_name {
        display: none;
    }
}

.rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav.navbar-nav-right .nav-item.nav-language .dropdown-toggle {
    border: 1px solid #7b7b7b;
    color: #c7c7c7;
    padding: .35rem .81rem;
}

.rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-nav.navbar-nav-right .nav-item:last-child {
    margin-right: 0;
}

.rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-toggler {
    display: none;
}

@media (max-width: 991px) {
    .rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-toggler {
        display: block;
        padding-right: 0;
    }
}

.rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main .navbar-toggler span {
    color: #3E1152 !important;
}

@media (max-width: 576px) {
    .rt_nav_header.horizontal-layout .top_nav .nav_wrapper_main {
        width: calc(100% - 70px);
    }
}

.rt_nav_header.horizontal-layout .nav-bottom {
    background: #FFFFFF;
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    transition-duration: 3s;
    -webkit-transition-property: position, left, right, top, z-index;
    -moz-transition-property: position, left, right, top, z-index;
    -ms-transition-property: position, left, right, top, z-index;
    -o-transition-property: position, left, right, top, z-index;
    transition-property: position, left, right, top, z-index;
}

@media (max-width: 991px) {
    .rt_nav_header.horizontal-layout .nav-bottom {
        display: none;
        background: #f9f9f9;
    }
    .rt_nav_header.horizontal-layout .nav-bottom.header-toggled {
        display: block;
        max-height: calc(100vh - 60px);
        overflow: auto;
    }
}

.rt_nav_header.horizontal-layout .nav-bottom .page-navigation {
    position: relative;
    width: 100%;
    z-index: 99;
    justify-content: space-between;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-property: background, box-shadow;
    transition-property: background, box-shadow;
    background: #f9f9f9;
    border-radius: 6px;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .rt_nav_header.horizontal-layout .nav-bottom .page-navigation {
        border: none;
    }
}

.rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item {
    line-height: 1;
    text-align: left;
}

@media (max-width: 991px) {
    .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item {
        display: block;
        width: 100%;
        border-right: none;
    }
}

.rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item>.nav-link {
    color: #242425;
    padding: 22px 10px;
    line-height: 1;
    font-weight: 600;
}

.rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item>.nav-link .menu-title {
    font-size: .875rem;
    font-weight: 500;
}

.rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item>.nav-link .menu-arrow {
    margin-left: 5px;
    font-size: 15px;
    display: inline-block;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    moz-transform-origin: center;
    -o-transform-origin: center;
    -ms-transform-origin: center;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition-duration: 0.25s;
    -moz-transition-duration: 0.25s;
    -ms-transition-duration: 0.25s;
    -o-transition-duration: 0.25s;
    transition-duration: 0.25s;
}

.rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item>.nav-link .menu-arrow:before {
    font-family: 'ionicons';
    content: "\f3d0";
    speak: none;
    font-size: .625rem;
    font-style: normal;
    font-weight: 600;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 768px) {
    .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item:hover .submenu {
        display: block;
    }
    .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item:hover .submenu .menu_icon {
        font-size: 0.75rem;
    }
    .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item:hover>.nav-link {
        background: transparent;
    }
    .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item:hover>.nav-link i,
    .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item:hover>.nav-link .menu-title {
        color: #3E1152;
        transition: color 1s ease;
    }
    .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item:hover>.nav-link .menu-arrow {
        transform: rotate(-180deg);
    }
}

@media (max-width: 768px) {
    .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item.show-submenu .submenu {
        display: block;
    }
    .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item.show-submenu>.nav-link {
        background: transparent;
    }
    .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item.show-submenu>.nav-link i,
    .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item.show-submenu>.nav-link .menu-title {
        color: #3E1152;
        transition: color 1s ease;
    }
    .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item.show-submenu>.nav-link .menu-arrow {
        transform: rotate(-180deg);
    }
}

.rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item.active>.nav-link {
    position: relative;
}

.rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item.active>.nav-link .menu-title,
.rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item.active>.nav-link i,
.rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item.active>.nav-link .menu-arrow {
    color: #3E1152;
}

.rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item .submenu {
    display: none;
}

.rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item .submenu ul {
    list-style-type: none;
    padding-left: 0;
}

.rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item .submenu ul li {
    display: block;
    line-height: 20px;
}

.rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item .submenu ul li a {
    display: block;
    padding: 5px 10px;
    font-weight: 400;
    color: #242425;
    text-decoration: none;
    text-align: left;
    margin: 4px 0;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 100%;
    white-space: nowrap;
    transition-duration: 0.2s;
    transition-property: background;
    border-radius: 6px;
}

.rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item .submenu ul li a:hover {
    color: #3E1152;
    transition: color .1s linear;
}

.rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item .submenu ul li a:hover i {
    color: #3E1152;
    transition: color .1s linear;
}

.rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item .submenu ul li a:hover:before {
    background: #3E1152;
}

.rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item .submenu ul li.active a {
    color: #3E1152;
}

.rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item .submenu ul li.active a:before {
    background: #3E1152;
}

.rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item:not(.mega-menu) {
    position: relative;
}

.rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item:not(.mega-menu) .submenu {
    left: 0;
}

@media (min-width: 768px) {
    .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item:not(.mega-menu) .submenu {
        position: absolute;
        top: 61px;
        z-index: 999;
        background: #FFFFFF;
        border-top: none;
        border-radius: 4px;
        box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
        -webkit-box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
    }
    .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item:not(.mega-menu) .submenu li a {
        position: relative;
        padding-left: 2px;
    }
}

@media (max-width: 768px) {
    .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item:not(.mega-menu) .submenu {
        position: relative;
        top: 0;
        box-shadow: none;
    }
}

@media (max-width: 768px) {
    .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item:not(.mega-menu) .submenu {
        top: 0;
    }
}

.rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item:not(.mega-menu) .submenu ul {
    width: auto;
    padding: 25px;
}

@media (max-width: 768px) {
    .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item:not(.mega-menu) .submenu ul {
        padding: 0 23px;
    }
}

.rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item.mega-menu .submenu {
    width: 100%;
    left: 0;
    right: 0;
    padding: 25px;
}

@media (min-width: 768px) {
    .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item.mega-menu .submenu {
        position: absolute;
        top: 61px;
        z-index: 999;
        background: #FFFFFF;
        border-top: none;
        border-radius: 4px;
        box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
        -webkit-box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
    }
    .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item.mega-menu .submenu li a {
        position: relative;
    }
}

@media (max-width: 991px) {
    .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item.mega-menu .submenu {
        position: relative;
        top: 0;
        box-shadow: none;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item.mega-menu .submenu .col-md-4 {
        width: 100%;
        flex: 100%;
        max-width: 100%;
    }
}

.rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item.mega-menu .submenu .category-heading {
    font-size: .875rem;
    font-weight: 500;
    text-align: left;
    color: #3E1152;
    padding: 1rem 0;
    margin-bottom: 0;
}

.rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item.mega-menu .submenu .col-group-wrapper {
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item.mega-menu .submenu {
        padding: 0 32px;
    }
    .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item.mega-menu .submenu .col-group-wrapper {
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }
    .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item.mega-menu .submenu .col-group-wrapper .col-group {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 20px;
    }
    .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item.mega-menu .submenu .col-group-wrapper .col-group .category-heading:after {
        display: none;
    }
}

.rt_nav_header.horizontal-layout.fixed-on-scroll .nav-bottom {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    border-bottom: 1px solid #f2f2f2;
    background: #f9f9f9;
    box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 991px) {
    .rt_nav_header.horizontal-layout {
        position: fixed;
        z-index: 1030;
        top: 0;
        left: 0;
        right: 0;
    }
    .rt_nav_header.horizontal-layout .top_nav {
        border-bottom: 1px solid #f2f2f2;
    }
}

.header-area {
    padding: 10px 20px 10px 20px;
    position: relative;
    background: #fff;
    width: 93%;
    margin-left: 41px;
    border-radius: 10px;
    box-shadow: -8px 12px 18px 0 rgba(15, 32, 60, 0.1);
}

@media (max-width: 1030px) {
    .header-area {
        background: #fff;
        width: 94%;
        border-radius: 10px;
        margin: 0 auto;
    }
}

@media (max-width: 991px) {
    .header-area .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.header-area.light-header .nav-btn {
    background: #F7F7FA;
}

.header-area.light-header .nav-btn span {
    background: #000;
}

.header-area .mobile-logo {
    left: 30px;
    position: absolute;
    top: 50%;
    transform: translate(0px, -50%);
    width: 25px;
    z-index: 1;
}

.header-area .search-box {
    border: 1px solid #e0e6f5;
    padding-left: 20px;
    border-radius: 50px;
}

.header-area .nav-btn {
    margin-right: 15px;
    margin-top: 0;
    cursor: pointer;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 30px;
    padding-top: 12px;
    border-radius: 10px;
    background: #1e1d2f;
}

@media (max-width: 991px) {
    .header-area .nav-btn {
        height: 40px;
        line-height: 30px;
        margin-right: 0;
        margin-top: -6px !important;
        padding-top: 12px;
        position: absolute;
        right: 0;
        top: 13px;
        width: 40px;
        -webkit-transform: translate(-350%, 0);
        -moz-transform: translate(-350%, 0);
        -ms-transform: translate(-350%, 0);
        -o-transform: translate(-350%, 0);
        transform: translate(-350%, 0);
    }
}

.header-area .nav-btn span {
    width: 18px;
    height: 1px;
    background: #cdd4e0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    text-align: center;
    display: block;
    margin: 0 auto 6px;
}

.header-area .nav-btn span:nth-child(3) {
    margin-bottom: 0;
}

.header-area .nav-btn span:nth-child(3),
.header-area .nav-btn span:nth-child(1) {
    width: 18px;
}

.header-area .search-box form {
    position: relative;
}

.header-area .search-box form input {
    width: 270px;
    padding-right: 11px;
    border-radius: 33px;
    border: none;
    height: 40px;
    padding-left: 40px;
    letter-spacing: 0;
    font-size: 14px;
    font-weight: 500;
}

.header-area .search-box form input::-webkit-input-placeholder {
    color: #b1a7a7;
}

.header-area .search-box form input::-moz-placeholder {
    color: #b1a7a7;
}

.header-area .search-box form input:-ms-input-placeholder {
    color: #b1a7a7;
}

.header-area .search-box form i {
    position: absolute;
    left: 6px;
    top: 10px;
    font-size: 22px;
    color: #b1a7a7;
}

.sidebar_collapsed .nav-btn span:nth-child(2) {
    opacity: 0;
}

.sidebar_collapsed .nav-btn span:first-child {
    -webkit-transform: rotate(90deg) translate(8px, 4px);
    transform: rotate(90deg) translate(8px, 4px);
}

.sidebar_collapsed .nav-btn span:last-child {
    -webkit-transform: rotate(90deg) translate(-6px, -3px);
    transform: rotate(90deg) translate(-6px, -3px);
}


/* notification-area */

.notification-area {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    z-index: 2;
}

.notification-area li {
    display: inline-block;
    margin-left: 20px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media only screen and (max-width: 480px) {
    .notification-area .bell-notify-box.notify-box {
        right: -120px !important;
        width: 280px;
    }
}

@media only screen and (max-width: 480px) {
    .notification-area .nt-enveloper-box.notify-box {
        right: -78px !important;
        width: 280px;
    }
}

.notification-area .user-dropdown {
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 10px;
    position: relative;
}

.notification-area .user-dropdown:before {
    width: 10px;
    height: 10px;
    content: '';
    background: #3fb504;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    border-radius: 50px;
}

.notification-area .user-dropdown .btn {
    padding: 0;
    margin: 0 auto;
    border-radius: 0;
    font-size: 13px;
    color: #b1a7a7;
    box-shadow: none;
    background: transparent;
    border: none;
}

.notification-area .user-dropdown .btn.dropdown-toggle:after {
    position: absolute;
    top: 26px;
    right: 70px;
    font-size: 15px;
}

.notification-area .user-dropdown .btn span,
.notification-area .user-dropdown .btn img {
    display: inline-block;
    vertical-align: middle;
}

.notification-area .user-dropdown .btn img {
    border-radius: 50px;
    width: 45px;
}

.notification-area .user-dropdown .btn span {
    padding: 0 8px 0 15px;
}

.notification-area .user-dropdown .btn span i {
    font-size: 10px;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 2px;
    width: 20px;
    height: 20px;
    display: inline-block;
    line-height: 20px;
    text-align: center;
    background: #3E1152;
    ;
    border-radius: 50%;
    color: #fff;
}

.notification-area .user-dropdown .dropdown-menu.show {
    top: 58px !important;
}

.notification-area .user-dropdown .dropdown-menu .divider {
    margin: 10px 0;
    display: block;
    border: 0.5px solid #f5f4f4;
}

.notification-area .user-dropdown .dropdown-menu a {
    font-size: 14px;
    color: #8a8a8a;
    letter-spacing: 0;
    font-weight: 500;
    padding: 10px 70px 10px 25px;
}

.notification-area .user-dropdown .dropdown-menu a i {
    margin-right: 10px;
    vertical-align: baseline;
}

.divider {
    margin: 10px 0;
    display: block;
    border: 0.5px solid #f5f4f4;
}

.notification-area li>i {
    font-size: 18px;
    color: #bdbcbc;
    vertical-align: middle;
    -webkit-transition: color 0.3s ease 0s;
    transition: color 0.3s ease 0s;
}

.notification-area li i>span {
    position: absolute;
    right: -5px;
    top: -7px;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    background: #d81616;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    padding-left: 2px;
}

.notify-box {
    width: 350px;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.notify-box .notify-title {
    background: #d81616;
    display: block;
    padding: 18px 30px;
    color: #fff;
    font-size: 15px;
    letter-spacing: 0;
    overflow: hidden;
}

.notify-box .notify-title a {
    float: right;
    display: inline-block;
    color: #d81616;
    font-size: 13px;
    background: #fff;
    padding: 2px 8px;
    border-radius: 4px;
}

@media only screen and (max-width: 480px) {
    .notify-box .notify-title a {
        float: none;
        margin-top: 6px;
    }
}

.nt-enveloper-box .nofity-list a {
    padding: 10px 20px;
    display: block;
    border-bottom: 1px solid #f5f2f2;
    height: auto;
}

@media only screen and (max-width: 480px) {
    .nt-enveloper-box .nofity-list a {
        padding: 20px 15px;
    }
}

.nt-enveloper-box .nofity-list a:hover {
    background: #cdd4e0;
}

.nt-enveloper-box .nofity-list a:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.nt-enveloper-box .nofity-list .notify-thumb {
    float: left;
    margin-right: 20px;
}

@media only screen and (max-width: 480px) {
    .nt-enveloper-box .nofity-list .notify-thumb {
        margin-right: 15px;
    }
}

.nt-enveloper-box .nofity-list .notify-thumb i {
    height: 50px;
    width: 50px;
    line-height: 50px;
    display: block;
    border-radius: 50%;
    text-align: center;
    font-size: 23px;
    border: 1px solid;
}

@media only screen and (max-width: 480px) {
    .nt-enveloper-box .nofity-list .notify-thumb i {
        font-size: 18px;
        height: 40px;
        line-height: 40px;
        width: 40px;
    }
}

.nt-enveloper-box .nofity-list .notify-thumb img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-top: 4px;
}

@media only screen and (max-width: 480px) {
    .nt-enveloper-box .nofity-list .notify-thumb img {
        width: 50px;
        height: 50px;
    }
}

.nt-enveloper-box .nofity-list .notify-text {
    overflow: hidden;
    padding: 0;
}

.nt-enveloper-box .nofity-list .notify-text h3 {
    color: #666;
    font-size: 15px;
    margin-bottom: 0;
    line-height: 24px;
}

.nt-enveloper-box .nofity-list .notify-text p {
    font-size: 14px;
    color: #4e4e4e;
    line-height: 22px;
    margin-bottom: 4px;
}

.nt-enveloper-box .nofity-list .notify-text span {
    letter-spacing: 0;
    color: #6d6c6c;
    font-size: 11px;
    font-weight: 300;
}

.nt-enveloper-box .nofity-list .notify-text span.msg {
    display: block;
    font-size: 12px;
    color: #4e4e4e;
    line-height: 22px;
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 400;
}

.nofity-list a {
    padding: 0 30px;
    display: block;
    border-bottom: 1px solid #f5f2f2;
    padding-left: 0;
    height: 70px;
}

@media only screen and (max-width: 480px) {
    .nofity-list a {
        padding: 20px 15px;
    }
}

.nofity-list a:hover {
    background: #cdd4e0;
}

.nofity-list a:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.nofity-list .notify-thumb {
    float: left;
    margin-right: 20px;
}

@media only screen and (max-width: 480px) {
    .nofity-list .notify-thumb {
        margin-right: 15px;
    }
}

.nofity-list .notify-thumb i {
    height: 70px;
    width: 50px;
    line-height: 70px;
    display: block;
    border-radius: 0;
    text-align: center;
    font-size: 23px;
    border: 1px solid;
}

@media only screen and (max-width: 480px) {
    .nofity-list .notify-thumb i {
        font-size: 18px;
        height: 40px;
        line-height: 40px;
        width: 40px;
    }
}

.nofity-list .notify-thumb img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-top: 4px;
}

@media only screen and (max-width: 480px) {
    .nofity-list .notify-thumb img {
        width: 50px;
        height: 50px;
    }
}

.nofity-list .notify-text {
    overflow: hidden;
    padding: 10px 0px;
}

@media only screen and (max-width: 991px) {
    .nofity-list .notify-text {
        padding: 0;
    }
}

.nofity-list .notify-text h3 {
    color: #666;
    font-size: 15px;
    margin-bottom: 0;
    line-height: 24px;
}

.nofity-list .notify-text p {
    font-size: 14px;
    color: #4e4e4e;
    line-height: 22px;
    margin-bottom: 4px;
}

.nofity-list .notify-text span {
    letter-spacing: 0;
    color: #6d6c6c;
    font-size: 11px;
    font-weight: 300;
}

.nofity-list .notify-text span.msg {
    display: block;
    font-size: 12px;
    color: #4e4e4e;
    line-height: 22px;
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 400;
}


/* notify envelope */

.expanded .notification-area li#full-view-exit {
    display: inline-block;
}

.notification-area li#full-view-exit {
    display: none;
}

.expanded .notification-area li#full-view {
    display: none;
}

.notification-area li#full-view {
    display: inline-block;
}

.nt-enveloper-box .notify-text p {
    margin-bottom: 0;
}

.notification-area .dropdown-toggle,
.user-name.dropdown-toggle {
    position: relative;
}

.notification-area .dropdown-toggle:after,
.user-name.dropdown-toggle:after {
    display: none;
}

.notification-area .dropdown-menu,
.user-profile .dropdown-menu {
    background: #fff;
    border: none;
    -webkit-transform: none !important;
    transform: none !important;
    top: 130% !important;
    right: -20px !important;
    left: auto !important;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    display: block !important;
    visibility: hidden;
    opacity: 0;
    cursor: initial;
}

.notification-area .dropdown-menu.show {
    top: 48px !important;
}

.notification-area .dropdown-menu.show,
.user-profile .dropdown-menu.show {
    visibility: visible;
    opacity: 1;
    box-shadow: 0 0 45px 0 rgba(131, 23, 254, 0.06);
}

.language_dropdown {
    border: 1px solid #e0e6f5;
    border-radius: 50px;
    margin-left: 15px;
}

.language_dropdown.nav-link {
    padding: 0 !important;
    color: #b1a7a7;
}

.language_dropdown .navbar-dropdown {
    font-size: 0.9rem;
    margin-top: 0;
    position: absolute !important;
    top: calc(9px - 6px) !important;
    border: 0;
    padding: 0 0 20px;
    border-radius: 10px;
    box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.language_dropdown .navbar-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding: 10px 25px;
    font-size: 12px;
    justify-content: space-between;
}

.language_dropdown .navbar-dropdown .dropdown-item i {
    font-size: 17px;
    vertical-align: middle;
    line-height: 1.2;
}

.language_dropdown.dropdown .dropdown-item {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding: 10px 25px;
    justify-content: space-between;
}

.language_dropdown.dropdown .btn {
    padding: 8px 15px !important;
}

.dropdown_user .user_bio .name {
    color: #000;
    line-height: 15px;
}

.dropdown_user .user_img img {
    border-radius: 50%;
    width: 90px;
    height: 90px;
}


/* ============================ */


/*          End Header          */


/* ============================ */


/* ============================ */


/*        Offset Menu           */


/* ============================ */

.offset-area {
    position: fixed;
    right: -320px;
    top: 0;
    height: 100vh;
    width: 320px;
    background: #1e1d2f;
    z-index: 998;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.05);
    -webkit-transition: right 0.3s cubic-bezier(0.62, -0.01, 0.2, 0.83) 0s;
    transition: right 0.3s cubic-bezier(0.62, -0.01, 0.2, 0.83) 0s;
}

.offset-area .timeline_title h4,
.offset-area .timeline-task p,
.offset-area .timeline_title i,
.offset-area .timeline_title span {
    color: #fff !important;
}

.offset-area .offset-close {
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 13px;
    height: 40px;
    width: 40px;
    cursor: pointer;
    text-align: center;
    line-height: 40px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    z-index: 1;
    color: #fff;
}

.offset-area .offset-close:hover {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.offset-area .offset-menu-tab {
    padding: 20px 20px;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 20px;
}

.offset-area .offset-menu-tab li {
    display: inline-block;
    width: 50%;
    text-align: center;
}

.offset-area .offset-menu-tab li a {
    display: block;
    font-size: 16px;
    color: #fff;
    position: relative;
}

.offset-area .offset-menu-tab li a:before {
    left: 100%;
}

.offset-area .offset-menu-tab li a.active:before {
    left: 0;
}

.show_hide.offset-area {
    right: 0;
}

.offset-menu-tab li a.active,
.offset-menu-tab li a:hover {
    color: #02bbe0;
}

.offset-menu-tab li:last-child a:before {
    display: none !important;
}

.offset-content {
    padding: 15px;
    color: #fff;
}

.recent-activity {
    padding-top: 7px;
    padding-left: 53px;
}

.offset-settings h4 {
    font-family: 'lato', sans-serif;
    font-size: 18px;
    letter-spacing: 0;
    font-weight: 600;
    color: #fff;
    margin-bottom: 23px;
}

.ui_switch input[type=checkbox] {
    height: 0;
    width: 0;
    visibility: hidden;
    position: absolute;
}

.ui_switch label {
    cursor: pointer;
    text-indent: -9999px;
    width: 40px;
    height: 23px;
    background: #02bbe0;
    display: block;
    border-radius: 100px;
    position: relative;
    margin: 0;
}

.ui_switch label:after {
    content: '';
    position: absolute;
    top: 4px;
    left: 5px;
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 90px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.ui_switch input:checked+label {
    background: #eaeaea;
}

.ui_switch input:checked+label:after {
    left: calc(100% - 5px);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.ui_switch label:active:after {
    width: 40px;
}

.settings_sec {
    margin-bottom: 30px;
}

.settings_sec p {
    color: #f9f9f9;
    font-size: 14px;
}

.settings_sec .setting_list_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

.settings_sec .setting_list_title h5 {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}


/* ============================ */


/*         TimeLine             */


/* ============================ */

.timeline_title {
    margin-bottom: 6px;
}

.timeline_title h4 {
    font-size: 15px;
    letter-spacing: 0;
    color: #333;
    margin-bottom: 2px;
}

.timeline_title span.time {
    color: #8c8a8a;
    font-size: 13px;
}

.timeline_title span.time i {
    margin-right: 5px;
    color: #2c3cb7;
    font-size: 11px;
}

.timeline-area {
    padding-left: 52px;
    padding-top: 6px;
}

.timeline-task {
    position: relative;
    margin-bottom: 35px;
}

.timeline-task p {
    color: #666;
    font-size: 14px;
    line-height: 25px;
    margin-bottom: -10px;
}

.timeline-task:before {
    content: '';
    position: absolute;
    left: -35px;
    top: 0;
    height: calc(100% + 33px);
    width: 2px;
    background: #eaeaea;
}

.timeline-task:last-child {
    margin-bottom: 0;
}

.timeline-task:last-child p {
    margin-bottom: 0;
}

.timeline-task:last-child:before {
    height: 100%;
}

.timeline-task .icon {
    position: absolute;
    left: -52px;
    top: -6px;
    height: 35px;
    width: 35px;
    line-height: 44px;
    border-radius: 50%;
    text-align: center;
    font-size: 12px;
    border: 1px solid;
    background: #f9f9f9;
}

.timeline-task .icon svg {
    width: 18px;
    height: 18px;
}


/* ============================ */


/*        End TimeLine          */


/* ============================ */

.bg_blue {
    border-color: transparent !important;
    color: #017c94;
    background: #e2faff;
}

.bg_success {
    border-color: transparent !important;
    color: #256a02;
    background: #d1fdbb;
}

.bg_secondary {
    border-color: transparent !important;
    color: #74829c;
    background: #ebedf1;
}

.bg_danger {
    border-color: transparent !important;
    color: #bb065e;
    background: #fedcec;
}

.bg_warning {
    border-color: transparent !important;
    color: #f07e21;
    background: #fdede0;
}

.bg_info {
    border-color: transparent !important;
    color: #0291ad;
    background: #e2faff;
}


/* ============================ */


/*        End Offset Menu       */


/* ============================ */


/* ============================ */


/*            Alert             */


/* ============================ */

.alert {
    letter-spacing: 0;
    font-size: 14px;
    border: none;
    padding: 10px 16px;
    font-weight: 600;
}

.alert span {
    font-size: 13px;
}

.alert strong,
.alert-link {
    font-weight: 700;
}

.alert-primary,
.alert-danger,
.alert-warning,
.alert-dark,
.alert-info,
.alert-light,
.alert-success {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    color: #FFFFFF;
}

.alert-primary .alert-link,
.alert-danger .alert-link,
.alert-warning .alert-link,
.alert-info .alert-link,
.alert-success .alert-link {
    color: #fff;
    text-decoration: underline;
}

.alert-primary {
    background-color: #d81616;
    border-left: 4px solid #9178f9;
}

.alert-success {
    border-left: 4px solid #2e8303;
    background-color: #3fb504;
}

.alert-danger {
    border-left: 4px solid #890545;
    background-color: #ec0877;
}

.alert-warning {
    border-left: 4px solid #FFA000;
    background-color: #FFC107;
}

.alert-info {
    border-left: 4px solid #01677b;
    background-color: #02bbe0;
}

.alert-dark {
    border-left: 4px solid #37474F;
    background-color: #607D8B;
}

.alert-light {
    border-left: 4px solid #607D8B;
    background-color: #CFD8DC;
}


/* additional content */

.alert-heading {
    margin-bottom: 7px;
}

.alert-dismiss .alert {
    padding: 13px 15px;
}

.alert-dismiss .alert-dismissible .close {
    top: 4px;
    outline: none;
    font-size: 13px;
}

.alert-primary hr {
    border-top-color: #fff;
}


/* ============================ */


/*            End Alert         */


/* ============================ */


/* ============================ */


/*            Accordions        */


/* ============================ */

.accordion {
    /* Accordion Style 2 */
}

.accordion .card {
    margin-bottom: 20px;
}

.accordion .card:last-child {
    margin-bottom: 0;
}

.accordion .card-header {
    padding: 0;
    border: none;
}

.accordion .card-header a {
    position: relative;
    display: block;
    background: #EFF3F6;
    padding: 16px 15px;
    border-radius: 3px;
    color: #444;
    letter-spacing: 0;
    font-size: 15px;
    font-weight: 500;
}

.accordion .card-body {
    padding: 10px;
    border: 1px solid #eff3f6;
    font-size: 14px;
    letter-spacing: 0;
    color: #444;
    line-height: 27px;
    font-weight: 400;
}

.accordion.accordion-style-2 .card-header a:before {
    content: "\f106";
    font-family: fontawesome;
    position: absolute;
    right: 13px;
    color: #444;
    font-size: 26px;
    top: 50%;
    transform: translate(0, -50%);
}

.accordion.accordion-style-2 .card-header a.collapsed:before {
    content: "\f107";
}

.accordion.primary-bg .card-header a {
    background: #3E1152;
    color: #fff;
}

.accordion.primary-bg .card-header a:before {
    color: #fff;
}


/* Accordion Style 3 */

.accordion-style-3 .card-header a:before {
    content: "\e622";
    font-family: 'themify';
    position: absolute;
    right: 13px;
    color: #444;
    font-size: 15px;
}

.accordion-style-3 .card-header a.collapsed:before {
    content: "\e61a";
}


/* ============================ */


/*         End Accordions
/* ============================ */


/* ============================ */


/*            Buttons           */


/* ============================ */

.btn {
    font-size: 14px;
    font-family: "Overpass", sans-serif;
    font-weight: 500;
    /*====================
   General Buttons
   ====================*/
    /*====================
   Outline Buttons
   ====================*/
    /*====================
   Inverse Buttons
   ====================*/
    /*====================
    Social Buttons
   ====================*/
}

.btn i {
    margin-right: 5px;
    vertical-align: initial;
}

.btn.btn-rounded {
    border-radius: 50px;
}

.btn.btn-fixed-w {
    width: 110px;
}

.btn.btn-xl {
    padding: 19px 24px;
}

.btn.btn-lg {
    padding: 15px 30px;
}

.btn.btn-md {
    padding: 10px 18px;
}

.btn.btn-sm {
    padding: 8px 13px;
}

.btn.btn-xs {
    padding: 8px 12px;
    font-size: 12px;
}

.btn.btn-flat {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.btn.btn-primary {
    background-color:  #6F4183;
    ;
    border-color: #6F4183;
}

.btn.btn-primary:hover {
    background-color: #6F4183;
    border-color: #6F4183;
}

.btn.btn-secondary {
    background-color: #74829c;
    border-color: #74829c;
}

.btn.btn-secondary:hover {
    background-color: #5c6981;
    border-color: #5c6981;
}

.btn.btn-success {
    background-color: #3fb504;
    border-color: #3fb504;
}

.btn.btn-success:hover {
    background-color: #2e8303;
    border-color: #2e8303;
}

.btn.btn-danger {
    background-color: #ec0877;
    border-color: #ec0877;
}

.btn.btn-danger:hover {
    background-color: #bb065e;
    border-color: #bb065e;
}

.btn.btn-warning {
    background-color: #f39a51;
    border-color: #f39a51;
}

.btn.btn-warning:hover {
    background-color: #f07e21;
    border-color: #f07e21;
}

.btn.btn-info {
    background-color: #02bbe0;
    border-color: #02bbe0;
}

.btn.btn-info:hover {
    background-color: #0291ad;
    border-color: #0291ad;
}

.btn.btn-dark {
    background-color: #444;
    border-color: #444;
}

.btn.btn-dark:hover {
    background-color: #5e5e5e;
    border-color: #5e5e5e;
}

.btn.btn-light {
    background-color: #cdd4e0;
    border-color: #cdd4e0;
}

.btn.btn-light:hover {
    background-color: #aeb9cc;
    border-color: #aeb9cc;
}

.btn.btn-outline-primary {
    border-color: #3E1152;
    color: #3E1152;
}

.btn.btn-outline-primary:hover {
    background-color: #3E1152;
    border-color: #3E1152;
    color: #FFFFFF;
}

.btn.btn-outline-secondary {
    border-color: #74829c;
    color: #74829c;
}

.btn.btn-outline-secondary:hover {
    background-color: #74829c;
    border-color: #74829c;
    color: #FFFFFF;
}

.btn.btn-outline-success {
    border-color: #3fb504;
    color: #3fb504;
}

.btn.btn-outline-success:hover {
    background-color: #3fb504;
    border-color: #3fb504;
    color: #FFFFFF;
}

.btn.btn-outline-danger {
    border-color: #ec0877;
    color: #ec0877;
}

.btn.btn-outline-danger:hover {
    background-color: #ec0877;
    border-color: #ec0877;
    color: #FFFFFF;
}

.btn.btn-outline-info {
    border-color: #02bbe0;
    color: #02bbe0;
}

.btn.btn-outline-info:hover {
    background-color: #02bbe0;
    border-color: #02bbe0;
    color: #FFFFFF;
}

.btn.btn-outline-warning {
    border-color: #f39a51;
    color: #f39a51;
}

.btn.btn-outline-warning:hover {
    background-color: #f39a51;
    border-color: #f39a51;
    color: inherit;
}

.btn.btn-outline-dark {
    border-color: #444;
    color: #444;
}

.btn.btn-outline-dark:hover {
    background-color: #444;
    border-color: #444;
    color: #FFFFFF;
}

.btn.btn-outline-light {
    border-color: #cdd4e0;
    color: #566a8b;
}

.btn.btn-outline-light:hover {
    background-color: #cdd4e0;
    border-color: #cdd4e0;
    color: inherit;
}

.btn.btn-inverse-primary {
    background-color: #eeeeff;
    border-color: transparent;
    color: #d81616;
}

.btn.btn-inverse-primary:hover {
    background-color: #d81616;
    border-color: #d81616;
    color: #fff;
}

.btn.btn-inverse-secondary {
    background-color: #fafbfb;
    border-color: transparent;
    color: #74829c;
}

.btn.btn-inverse-secondary:hover {
    background-color: #74829c;
    border-color: #74829c;
    color: #fff;
}

.btn.btn-inverse-success {
    background-color: #affc89;
    border-color: transparent;
    color: #3fb504;
}

.btn.btn-inverse-success:hover {
    background-color: #3fb504;
    border-color: #3fb504;
    color: #fff;
}

.btn.btn-inverse-danger {
    background-color: #fb92c5;
    border-color: transparent;
    color: #ec0877;
}

.btn.btn-inverse-danger:hover {
    background-color: #ec0877;
    border-color: #ec0877;
    color: #fff;
}

.btn.btn-inverse-warning {
    background-color: #fad1b0;
    border-color: transparent;
    color: #f39a51;
}

.btn.btn-inverse-warning:hover {
    background-color: #f39a51;
    border-color: #f39a51;
    color: #fff;
}

.btn.btn-inverse-info {
    background-color: #69e5fe;
    border-color: transparent;
    color: #02bbe0;
}

.btn.btn-inverse-info:hover {
    background-color: #02bbe0;
    border-color: #02bbe0;
    color: #fff;
}

.btn.btn-inverse-dark {
    background-color: #c4c4c4;
    border-color: transparent;
    color: #444;
}

.btn.btn-inverse-dark:hover {
    background-color: #444;
    border-color: #444;
    color: #fff;
}

.btn.btn-inverse-light {
    background-color: transparent;
    border-color: #bdc6d6;
    color: #bdc6d6;
}

.btn.btn-inverse-light:hover {
    background-color: #cdd4e0;
    border-color: #cdd4e0;
    color: #000000;
}

.btn.btn-social {
    padding: 10px 14px;
    font-size: 14px;
}

.btn.btn-social i {
    margin-right: 0;
}

.btn.btn-social-fb {
    background: #3b579d;
    color: #fff;
}

.btn.btn-social-fb:hover {
    background: #375192;
}

.btn.btn-social-tw {
    background: #1da1f2;
    color: #fff;
}

.btn.btn-social-tw:hover {
    background: #0f9bf1;
}

.btn.btn-social-li {
    background: #0177b4;
    color: #fff;
}

.btn.btn-social-li:hover {
    background: #016da5;
}

.btn.btn-social-in {
    background: #fb3958;
    color: #fff;
}

.btn.btn-social-in:hover {
    background: #fb2a4b;
}

.btn.btn-social-pi {
    background: #c8232c;
    color: #fff;
}

.btn.btn-social-pi:hover {
    background: #bb2129;
}

.btn.btn-social-outline-fb {
    border: 1px solid #3b579d;
    color: #3b579d;
}

.btn.btn-social-outline-fb:hover {
    background: #375192;
    color: #fff;
}

.btn.btn-social-outline-tw {
    border: 1px solid #1da1f2;
    color: #1da1f2;
}

.btn.btn-social-outline-tw:hover {
    background: #0f9bf1;
    color: #fff;
}

.btn.btn-social-outline-li {
    border: 1px solid #0177b4;
    color: #0177b4;
}

.btn.btn-social-outline-li:hover {
    background: #016da5;
    color: #fff;
}

.btn.btn-social-outline-in {
    border: 1px solid #fb3958;
    color: #fb3958;
}

.btn.btn-social-outline-in:hover {
    background: #fb2a4b;
    color: #fff;
}

.btn.btn-social-outline-pi {
    border: 1px solid #c8232c;
    color: #c8232c;
}

.btn.btn-social-outline-pi:hover {
    background: #bb2129;
    color: #fff;
}


/* ============================ */


/*            Badges
/* ============================ */

.badge {
    font-size: 14px;
    font-family: "Overpass", sans-serif;
    font-weight: 500;
    /*====================
   General Badges
   ====================*/
}

.badge.badge-pill {
    padding: 8px 12px;
}

.badge.badge-primary {
    background-color: #3E1152;
    border-color: #3E1152;
    padding: 5px 10px;
}

.badge.badge-primary:hover {
    background-color: #4640fa;
    border-color: #4640fa;
}

.badge.badge-secondary {
    background-color: #74829c;
    border-color: #74829c;
    padding: 5px 10px;
}

.badge.badge-secondary:hover {
    background-color: #5c6981;
    border-color: #5c6981;
}

.badge.badge-success {
    background-color: #3fb504;
    border-color: #3fb504;
    padding: 5px 10px;
}

.badge.badge-success:hover {
    background-color: #2e8303;
    border-color: #2e8303;
}

.badge.badge-danger {
    background-color: #ec0877;
    border-color: #ec0877;
    padding: 5px 10px;
}

.badge.badge-danger:hover {
    background-color: #bb065e;
    border-color: #bb065e;
}

.badge.badge-warning {
    background-color: #f39a51;
    border-color: #f39a51;
    padding: 5px 10px;
}

.badge.badge-warning:hover {
    background-color: #f07e21;
    border-color: #f07e21;
}

.badge.badge-info {
    background-color: #02bbe0;
    border-color: #02bbe0;
    padding: 5px 10px;
}

.badge.badge-info:hover {
    background-color: #0291ad;
    border-color: #0291ad;
}

.badge.badge-dark {
    background-color: #444;
    border-color: #444;
    padding: 5px 10px;
}

.badge.badge-dark:hover {
    background-color: #5e5e5e;
    border-color: #5e5e5e;
}

.badge.badge-light {
    background-color: #cdd4e0;
    border-color: #cdd4e0;
    padding: 5px 10px;
}

.badge.badge-light:hover {
    background-color: #aeb9cc;
    border-color: #aeb9cc;
}

.btn .badge {
    padding: .25em .4em;
    border-radius: 50px;
    top: 0;
    right: -4px;
    font-size: 12px;
    background: #fff;
}

.nav-pills .nav-link {
    color: #3E1152;
}

.nav-pills .nav-link.active {
    background-color: #3E1152;
}

.nav-pills .nav-link.disabled {
    color: #6c757d;
}


/* ============================ */


/*            End Badges
/* ============================ */


/* ============================ */


/*            Cards
/* ============================ */

.card_with_image {
    float: left;
    width: 100%;
    background: #fff;
    box-shadow: 0 1px 5px 0 rgba(5, 5, 5, 0.2);
    border-radius: 10px;
    padding-bottom: 0;
}

.card_with_image .rt_post_data {
    padding: 25px;
    float: left;
    width: 100%;
}

.card_with_image .blog_card_image {
    background: #212121;
    display: block;
    text-align: center;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.card_with_image .blog_card_date {
    text-align: center;
    padding-right: 20px;
    padding-left: 0;
    width: 10%;
    float: left;
}

@media only screen and (max-width: 480px) {
    .card_with_image .blog_card_date {
        width: 20%;
    }
}

.card_with_image .blog_card_date h3 {
    line-height: 35px;
    margin-bottom: 0;
}

.card_with_image .blog_card_date p {
    font-size: 14px;
}

.card_with_image .blog_card_date .blog_chat_icon ul {
    padding: 0;
    margin: 0 auto;
    list-style: none;
    display: block;
}

.card_with_image .blog_card_date .blog_chat_icon ul li {
    margin: 0 auto;
    padding-left: 0;
    text-align: center;
    width: 74%;
}

.card_with_image .blog_card_date .blog_chat_icon ul li i {
    font-size: 20px;
}

.card_with_image .blog_card_date .blog_chat_icon span {
    font-size: 16px;
}

.card_with_image .blog_card_description {
    float: left;
    width: 90%;
}

@media only screen and (max-width: 480px) {
    .card_with_image .blog_card_description {
        width: 80%;
    }
}

.card_with_image .blog_card_description .blog_data {
    float: left;
    width: 100%;
}

.card_with_image .blog_card_description .blog_data h3 {
    margin-top: 0;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
}

@media only screen and (max-width: 480px) {
    .card_with_image .blog_card_description .blog_data h3 {
        font-size: 18px;
        line-height: 30px;
    }
}

.card_with_image .blog_card_description .blog_data p {
    color: #656565;
}

.grid-item {
    margin-bottom: 0;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
}

@media only screen and (max-width: 991px) {
    .grid-item {
        width: 100%;
        float: left;
    }
}

.image_card {
    margin-right: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0, 1);
    background-color: #444;
    width: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0px 10px 10px -7px rgba(0, 0, 0, 0.1);
}

.image_card:hover {
    box-shadow: 0px 30px 18px -8px rgba(0, 0, 0, 0.1);
    transform: scale(1.1, 1.1);
}

.image_card:hover .card_author {
    color: #cdd4e0;
}

.image_card:hover .card_img_hover_sec {
    height: 100%;
    opacity: 0.3;
}

.image_card:hover .card__info {
    background-color: transparent;
    position: relative;
}

.image_card:hover .card__info h3,
.image_card:hover .card__info .card_by {
    color: #fff;
}

.image_card:hover .card_img_hover {
    opacity: 1;
}

.image_card .card_clock {
    width: 15px;
    vertical-align: middle;
    fill: #fff;
}

.image_card .card_date {
    font-size: 12px;
    color: #fff;
    vertical-align: middle;
    margin-left: 5px;
}

.image_card .card_info {
    float: right;
}

.image_card .card_img {
    visibility: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 275px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.image_card .card_img_hover {
    position: absolute;
    padding: 16px;
    width: 100%;
    opacity: 0;
    top: 0;
}

.image_card .card_img_hover_sec {
    transition: 0.2s all ease-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    position: absolute;
    height: 275px;
    top: 0;
}

.image_card .card__info {
    z-index: 2;
    background-color: #fff;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 26px 24px 34px 24px;
}

.image_card .card_title {
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 20px;
    line-height: 30px;
}

.image_card .card_by {
    font-size: 11px;
    font-weight: 400;
    padding-bottom: 10px;
    display: inline-block;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.image_card .card_author {
    font-weight: 600;
    text-decoration: none;
    color: #74829c;
}

.team_member {
    background: #fff none repeat scroll 0 0;
    border-radius: 10px;
    margin-bottom: 0;
    padding: 30px 25px;
    position: relative;
    text-align: center;
    -webkit-box-shadow: 3px 4px 9px -6px #cccccc;
    -moz-box-shadow: 3px 4px 9px -6px #cccccc;
    box-shadow: 3px 4px 9px -6px #cccccc;
    border: 1px solid #f9f9f9;
    width: 100%;
}

.team_member img {
    border-radius: 50%;
    margin: 0 auto 15px;
    width: auto;
}

.team_member .member_name {
    margin-bottom: 20px;
}

.team_member .member_name h3 {
    margin-bottom: 2px;
    margin-top: 10px;
    font-size: 20px;
}

@media only screen and (max-width: 640px) {
    .team_member .member_name h3 {
        font-size: 18px;
    }
}

.team_member .member_name span {
    display: block;
    font-size: 12px;
    color: #666666;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.team_member ul li {
    display: inline-block;
    padding-left: 5px;
}

.team_member ul li:before {
    display: none;
}

.team_member ul li:hover {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    transition: all 0.5s ease;
}

.team_member ul li i {
    color: #212529;
    display: inline-block;
    line-height: 30px;
}

@media only screen and (max-width: 1200px) {
    .team_member ul li i {
        line-height: 20px;
        font-size: 11px;
    }
}

@media only screen and (max-width: 991px) {
    .team_member ul li i {
        line-height: 30px;
        font-size: 18px;
    }
}

.team_member ul li i:hover {
    color: #212529;
}

.article_card {
    position: relative;
    float: left;
    overflow: hidden;
    background-color: #ffffff;
    color: #2B2B2B;
    text-align: center;
    font-size: 16px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    margin-bottom: 0 !important;
}

@media only screen and (max-width: 768px) {
    .article_card {
        width: 100%;
    }
}

.article_card * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.article_card img {
    max-width: 100%;
    vertical-align: top;
    position: relative;
    width: 100%;
}

.article_card figcaption {
    padding: 10%;
    padding-bottom: calc(25%);
    background-color: #ffffff;
}

@media only screen and (min-width: 600px) and (max-width: 768px) {
    .article_card figcaption {
        padding: 5% 5% calc(15%);
    }
}

.article_card h3 {
    margin-top: 5px;
    margin-bottom: 0;
}

.article_card h3 a {
    font-size: 18px;
    line-height: 24px;
    color: #444;
    text-transform: uppercase;
    font-weight: 600;
}

.article_card h5 {
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
    color: #888;
    line-height: 18px;
    font-size: 12px;
}

.article_card footer {
    border-top: 1px solid rgba(0, 0, 0, 0.065);
    padding: 0 20px;
    font-size: 13px;
    line-height: 50px;
    text-align: left;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.article_card footer .icons {
    position: absolute;
    right: 20px;
    top: 0;
}

.article_card footer .icons i {
    display: inline-block;
    margin-right: 5px;
    font-size: 1em;
}

.article_card footer .icons>div {
    display: inline-block;
    margin-left: 8px;
}

.bg-card-primary,
.bg-card-success,
.bg-card-danger,
.bg-card-warning,
.bg-card-info,
.bg-card-dark,
.bg-card-secondary {
    color: #fff;
}

.bg-card-primary h4,
.bg-card-success h4,
.bg-card-danger h4,
.bg-card-warning h4,
.bg-card-info h4,
.bg-card-dark h4,
.bg-card-secondary h4 {
    color: #fff;
    line-height: 30px;
}

.bg-card-primary {
    background: #3E1152;
}

.bg-card-secondary {
    background: #74829c;
}

.bg-card-success {
    background: #3fb504;
}

.bg-card-danger {
    background: #ec0877;
}

.bg-card-warning {
    background: #f39a51;
}

.bg-card-info {
    background: #02bbe0;
}

.bg-card-dark {
    background: #444;
}

.bg-card-light {
    background: #cdd4e0;
}

.bg-card-light p {
    color: #444;
}

.bg-card-light hr {
    border-color: #444;
}

.card-icon p {
    color: #757474;
    font-size: 12px;
    margin-bottom: 5px;
}

.card-icon span {
    font-size: 22px;
    color: #d81616;
}

.card-icon i {
    font-size: 30px;
    margin-bottom: 14px;
    display: inline-block;
    color: #d81616;
}

.profile_card .profile_image {
    margin-top: -80px;
    margin-bottom: 20px;
}

.profile_card .profile_image img {
    width: 128px;
    height: 128px;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 100%;
}

.stats_bar {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.bg-primary-gradient {
    background: #3E1152;
    background: linear-gradient(to right, #3E1152 0%, #4A00E0 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#8E2DE2', endColorstr='#4A00E0', GradientType=1);
}

.bg-success-gradient {
    background: #11998e;
    background: linear-gradient(to right, #11998e 0%, #38ef7d 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#11998e', endColorstr='#38ef7d', GradientType=1);
}

.bg-warning-gradient {
    background: #FFD3A5;
    background: linear-gradient(to right, #FFD3A5 0%, #FD6585 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#FFD3A5', endColorstr='#FD6585', GradientType=1);
}

.bg-warning-gradient i {
    color: #FD6585;
}

.bg-danger-gradient {
    background: #bc4e9c;
    background: linear-gradient(to right, #bc4e9c 0%, #f80759 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#f80759', endColorstr='#bc4e9c', GradientType=1);
}

.bg-danger-gradient i {
    color: #f80759;
}

.bg-secondary-gradient {
    background: #EE9AE5;
    background: linear-gradient(to right, #EE9AE5 0%, #5961F9 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#5961F9', endColorstr='#EE9AE5', GradientType=1);
}

.bg-secondary-gradient i {
    color: #5961F9;
}

.bg-primary {
    background-color: #3E1152 !important;
    color: #FFFFFF;
}

.bg-secondary {
    background-color: #74829c !important;
    color: #FFFFFF;
}

.bg-success {
    background-color: #3fb504 !important;
}

.bg-warning {
    background-color: #f39a51 !important;
}

.bg-danger {
    background-color: #ec0877 !important;
    color: #FFFFFF;
}

.bg-info {
    background-color: #02bbe0 !important;
    color: #FFFFFF;
}

.bg-dark {
    background-color: #444 !important;
    color: #FFFFFF;
}


/* ============================ */


/*            End Cards
/* ============================ */


/* ============================ */


/*            Dropdown
/* ============================ */

.dropdown .btn {
    padding: 8px 24px;
}

.dropdown-toggle:after {
    font-family: themify;
    content: "\e64b";
    border: none;
    font-size: 12px;
    vertical-align: middle;
    display: initial;
}

.dropup .dropdown-toggle:after {
    font-family: themify;
    content: "\e648";
    border: none;
    font-size: 12px;
    vertical-align: middle;
    display: initial;
}

.dropright .dropdown-toggle:after {
    font-family: themify;
    content: "\e649";
    border: none;
    font-size: 12px;
    vertical-align: middle;
    display: initial;
}

.dropleft .dropdown-toggle:after {
    font-family: themify;
    content: "\e64a";
    border: none;
    font-size: 12px;
    vertical-align: middle;
    display: initial;
}

.dropleft .dropdown-toggle:before {
    display: none;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    background-color: #4640fa;
    border-color: #4640fa;
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show>.btn-secondary.dropdown-toggle {
    background-color: #5c6981;
    border-color: #5c6981;
}

.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show>.btn-success.dropdown-toggle {
    background-color: #2e8303;
    border-color: #2e8303;
}

.btn-danger:not(:disabled):not(.disabled).active,
.btn-danger:not(:disabled):not(.disabled):active,
.show>.btn-danger.dropdown-toggle {
    background-color: #bb065e;
    border-color: #bb065e;
}

.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active,
.show>.btn-warning.dropdown-toggle {
    background-color: #f07e21;
    border-color: #f07e21;
}

.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active,
.show>.btn-dark.dropdown-toggle {
    background-color: #2b2b2b;
    border-color: #2b2b2b;
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show>.btn-light.dropdown-toggle {
    background-color: #aeb9cc;
    border-color: #aeb9cc;
}

.btn-split .btn {
    padding: 8px 30px;
}

.btn-split .btn.dropdown-toggle {
    padding: 8px 12px;
}

.btn-split .btn.dropdown-toggle.btn-primary {
    border-left: 1px solid #4640fa;
}

.btn-split .btn.dropdown-toggle.btn-secondary {
    border-left: 1px solid #677590;
}

.btn-split .btn.dropdown-toggle.btn-success {
    border-left: 1px solid #369c03;
}

.btn-split .btn.dropdown-toggle.btn-danger {
    border-left: 1px solid #bb065e;
}

.btn-split .btn.dropdown-toggle.btn-warning {
    border-left: 1px solid #f07e21;
}

.btn-split .btn.dropdown-toggle.btn-info {
    border-left: 1px solid #0291ad;
}

.btn-split .btn.dropdown-toggle.btn-dark {
    border-left: 1px solid #2b2b2b;
}

.btn-split .btn.dropdown-toggle.btn-light {
    border-left: 1px solid #aeb9cc;
}


/* ============================ */


/*            End Dropdown
/* ============================ */


/* ============================ */


/*            List Group
/* ============================ */

.list-group-item.active {
    background-color: #d81616;
    border-color: #d81616;
}

.list-group-item.active h3,
.list-group-item.active h4,
.list-group-item.active h5,
.list-group-item.active a,
.list-group-item.active p {
    color: #FFFFFF;
}

.list-group-item h5 {
    margin-bottom: 10px !important;
}

.list-group-item.list-group-item-primary {
    background-color: #d81616;
    border-color: #d81616;
    color: #FFFFFF;
}

.list-group-item.list-group-item-primary:hover {
    color: #FFFFFF;
    background-color: #4640fa;
    border-color: #4640fa;
}

.list-group-item.list-group-item-secondary {
    background-color: #74829c;
    border-color: #74829c;
    color: #FFFFFF;
}

.list-group-item.list-group-item-secondary:hover {
    color: #FFFFFF;
    background-color: #5c6981;
    border-color: #5c6981;
}

.list-group-item.list-group-item-success {
    background-color: #3fb504;
    border-color: #3fb504;
    color: #FFFFFF;
}

.list-group-item.list-group-item-success:hover {
    color: #FFFFFF;
    background-color: #2e8303;
    border-color: #2e8303;
}

.list-group-item.list-group-item-danger {
    background-color: #ec0877;
    border-color: #ec0877;
    color: #FFFFFF;
}

.list-group-item.list-group-item-danger:hover {
    color: #FFFFFF;
    background-color: #bb065e;
    border-color: #bb065e;
}

.list-group-item.list-group-item-warning {
    background-color: #f39a51;
    border-color: #f39a51;
    color: #FFFFFF;
}

.list-group-item.list-group-item-warning:hover {
    color: #FFFFFF;
    background-color: #f07e21;
    border-color: #f07e21;
}

.list-group-item.list-group-item-info {
    background-color: #02bbe0;
    border-color: #02bbe0;
    color: #FFFFFF;
}

.list-group-item.list-group-item-info:hover {
    color: #FFFFFF;
    background-color: #0291ad;
    border-color: #0291ad;
}

.list-group-item.list-group-item-dark {
    background-color: #444;
    border-color: #444;
    color: #FFFFFF;
}

.list-group-item.list-group-item-dark:hover {
    color: #FFFFFF;
    background-color: #2b2b2b;
    border-color: #2b2b2b;
}

.list-group-item.list-group-item-light {
    background-color: #cdd4e0;
    border-color: #cdd4e0;
    color: #000000;
}

.list-group-item.list-group-item-light:hover {
    color: #000000;
    background-color: #aeb9cc;
    border-color: #aeb9cc;
}


/* ============================ */


/*            List Group
/* ============================ */


/* ============================ */


/*            Modal
/* ============================ */

.modal-dialog.modal-xl {
    max-width: 100%;
}


/* ============================ */


/*            End Modal
/* ============================ */


/* ============================ */


/*            Pagination
/* ============================ */

.pagination li a {
    color: #3E1152;
}

.pagination li a:hover {
    color: #3E1152;
}

.pagination li.active .page-link {
    background: #3E1152;
    border-color: #3E1152;
}


/* ============================ */


/*         End Pagination
/* ============================ */


/* ============================ */


/*          ProgressBar
/* ============================ */

.progress-bar {
    background-color: #d81616;
}

.progress-bar.bg-primary {
    background-color: #3E1152;
}

.progress-bar.bg-secondary {
    background-color: #74829c !important;
}

.progress-bar.bg-success {
    background-color: #3fb504 !important;
}

.progress-bar.bg-danger {
    background-color: #ec0877 !important;
}

.progress-bar.bg-warning {
    background-color: #f39a51 !important;
}

.progress-bar.bg-info {
    background-color: #02bbe0 !important;
}

.progress-bar.bg-dark {
    background-color: #444 !important;
}

.progress-bar.bg-light {
    background-color: #cdd4e0 !important;
}


/* ============================ */


/*          End ProgressBar
/* ============================ */


/* ============================ */


/*            Tabs
/* ============================ */

.nav-tabs {
    border-color: #d81616;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: #d81616;
    border-color: #d81616;
    color: #FFFFFF;
}

.nav-tabs .nav-link {
    color: #444;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: #d81616;
    background-color: #d81616;
    color: #fff;
}

.vertical_tabs a {
    text-align: center;
    margin-bottom: 10px;
}

.vertical_tabs a i {
    display: block;
    margin-bottom: 6px;
}


/* ============================ */


/*            End Tabs
/* ============================ */


/* ============================ */


/*            Grid
/* ============================ */

.grid-col {
    padding: 10px 15px;
    background: #f9f9f9;
    margin-bottom: 30px;
    color: #666;
    border: 1px solid #e3e6e8;
}


/* ============================ */


/*            End Grid
/* ============================ */


/* ============================ */


/*            Icons
/* ============================ */

.fw-icons {
    border: 1px solid #eaeaea;
    padding: 10px;
    margin: 0.5%;
    flex: 0 0 24%;
}

@media (max-width: 640px) {
    .fw-icons {
        flex: 0 0 100%;
    }
}

.fw-icons a {
    color: #444;
    margin: 9px 0;
    display: inline-block;
    font-family: 'lato', sans-serif;
}

.fw-icons a:hover {
    color: #d81616;
}

.fw-icons a i {
    width: 30px;
    font-size: 14px;
    color: #d81616;
}

.icon-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.icon-section .icon-container {
    cursor: pointer;
    -ms-flex-preferred-size: calc(100% * (1/4));
    flex-basis: calc(100% * (1/4));
}

@media (max-width: 767px) {
    .icon-section .icon-container {
        flex-basis: 100%;
    }
}

.icon-section .icon-container [class^="ti-"] {
    width: 30px;
    font-size: 14px;
    display: inline-block;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.icon-section .icon-container:hover [class^="ti-"] {
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.icon-section .icon-container:hover span {
    color: #d81616;
}

.icon-section .icon-container:hover span.icon-name {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
}

.icon-section .icon-container span.icon-name {
    color: #444;
    margin: 9px 0;
    display: inline-block;
    font-family: 'lato', sans-serif;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

#icons {
    transition: opacity .2s ease-in-out;
    padding-left: 5px;
    width: 100%;
    list-style: none;
    text-align: left;
    font-size: 1px;
}

#icons li {
    position: relative;
    z-index: 0;
    display: inline-block;
    padding: 22px;
    width: 85px;
    border-radius: 4px;
    list-style: none;
    text-align: center;
    font-weight: normal;
    font-size: 32px;
    cursor: pointer;
}

#icons li:hover {
    color: #d81616;
}

#icons li.active {
    color: #d81616;
}

.et-examples {
    color: #555;
    margin-left: 1px;
    vertical-align: middle;
}

.et-examples .box1 {
    display: block;
    width: 33%;
    float: left;
    padding: 0;
    border: 1px solid #e5e5e5;
    margin: -1px 0 0 -1px;
    font-size: 13px;
}

@media (max-width: 640px) {
    .et-examples .box1 {
        width: 100%;
    }
}

.et-examples .box1 span {
    display: inline-block;
    margin-right: 5px;
    min-width: 70px;
    min-height: 70px;
    border-right: 1px solid #f1f1f1;
    line-height: 70px;
    text-align: center;
    font-size: 32px;
}


/* ============================ */


/*            End Icons
/* ============================ */


/* ============================ */


/*            Maps
/* ============================ */

#animated_chart,
#curved_chart,
#zoom_country_chart,
#pattern_map,
#capitals_map,
#pie_map {
    height: 400px;
}

#google_map,
#rt_cutom_marker {
    height: 600px;
}

.map-marker {
    /* adjusting for the marker dimensions
    so that it is centered on coordinates */
    margin-left: -8px;
    margin-top: -8px;
}

.map-marker.map-clickable {
    cursor: pointer;
}

.pulse {
    width: 10px;
    height: 10px;
    border: 5px solid #d81616;
    border-radius: 30px;
    background-color: #716f42;
    z-index: 10;
    position: absolute;
}

.map-marker .dot {
    border: 10px solid #a6a4fc;
    background: transparent;
    border-radius: 60px;
    height: 50px;
    width: 50px;
    -webkit-animation: pulse 3s ease-out;
    animation: pulse 3s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 1;
    opacity: 0;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0);
        opacity: 0.0;
    }
    25% {
        -webkit-transform: scale(0);
        opacity: 0.1;
    }
    50% {
        -webkit-transform: scale(0.1);
        opacity: 0.3;
    }
    75% {
        -webkit-transform: scale(0.5);
        opacity: 0.5;
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 0.0;
    }
}


/* ============================ */


/*            End Maps
/* ============================ */


/* ============================ */


/*            Table
/* ============================ */

.table {
    font-size: 14px;
}

.table th {
    font-weight: 600;
}

.table i {
    margin-right: 0;
}

table .progress {
    height: 8px;
}

.table-primary,
.table-primary>td,
.table-primary>th {
    background-color: white !important;
    color: #FFFFFF;
}

.table-success,
.table-success>td,
.table-success>th {
    background-color: #8efb57 !important;
}

.table-warning,
.table-warning>td,
.table-warning>th {
    background-color: #fdede0 !important;
}

.table-secondary,
.table-secondary>td,
.table-secondary>th {
    background-color: #cdd2dc !important;
}

.table-danger,
.table-danger>td,
.table-danger>th {
    background-color: #fb92c5 !important;
}

.table-dark,
.table-dark>td,
.table-dark>th {
    background-color: #919191 !important;
    color: #FFFFFF;
}

.table-light,
.table-light>td,
.table-light>th {
    background-color: white !important;
}

.single-table .table {
    margin-bottom: 0;
}

table tr th {
    border-bottom: none;
}

table tr th,
table tr td {
    vertical-align: middle !important;
    padding: 15px 10px !important;
    font-size: 12px;
    font-weight: 500;
}

table tr th .badge,
table tr td .badge {
    font-size: 12px;
}

.table .thead-light th {
    background-color: #f9f9f9 !important;
    border-color: #f9f9f9 !important;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.03);
}

.data-tables table tr th,
.data-tables table tr td {
    border-top: 1px solid rgba(120, 130, 140, 0.13) !important;
}

table tr td [class^="ti-"] {
    cursor: pointer;
}

.table-bordered td,
.table-bordered th {
    border: 1px solid rgba(120, 130, 140, 0.13) !important;
}

.data-tables {
    font-size: 14px;
}

table.dataTable thead th,
table.dataTable thead td {
    border-bottom: 1px solid rgba(120, 130, 140, 0.13) !important;
}

@media screen and (max-width: 767px) {
    table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td:first-child:before,
    table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>th:first-child:before {
        top: 3px !important;
        left: 44% !important;
        height: 10px !important;
        width: 10px !important;
        line-height: 10px !important;
    }
    table.dataTable {
        width: 100%;
    }
}

.dataTables_wrapper .dataTable thead .sorting:before,
.dataTables_wrapper .dataTable thead .sorting_asc:before,
.dataTables_wrapper .dataTable thead .sorting_asc_disabled:before,
.dataTables_wrapper .dataTable thead .sorting_desc:before,
.dataTables_wrapper .dataTable thead .sorting_desc_disabled:before {
    content: "\f3d7";
    right: 17px;
    font-family: Ionicons;
}

.dataTables_wrapper .dataTable thead .sorting:after,
.dataTables_wrapper .dataTable thead .sorting_asc:after,
.dataTables_wrapper .dataTable thead .sorting_asc_disabled:after,
.dataTables_wrapper .dataTable thead .sorting_desc:after,
.dataTables_wrapper .dataTable thead .sorting_desc_disabled:after {
    content: "\f3d4";
    right: 7px !important;
    font-family: Ionicons;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc {
    background-image: none !important;
}

div.dataTables_wrapper div.dataTables_length select {
    width: 76px;
    margin: 0 10px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: transparent !important;
    border-color: transparent !important;
}


/* datatable-primary */

.datatable-primary thead {
    background: #d81616;
    color: #fff;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    border: none;
    background: transparent;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0;
    border: none;
    margin-top: 20px;
}

table.dataTable.no-footer {
    border-bottom: 1px solid rgba(120, 130, 140, 0.13) !important;
}

table.dataTable thead th,
table.dataTable thead td {
    border-bottom-color: transparent;
}

.datatable-primary .dataTables_paginate .page-item.active .page-link,
.datatable-primary .dataTables_paginate .page-item .page-link:hover {
    background-color: #d81616;
    border-color: #d81616;
    color: #fff;
}

.datatable-primary .dataTables_paginate .page-link {
    color: #d81616;
    border: 1px solid #d81616;
}

.datatable-primary .dataTables_paginate .paginate_button.disabled,
.datatable-primary .dataTables_paginate .paginate_button.disabled:hover,
.datatable-primary .dataTables_paginate .paginate_button.disabled:active {
    color: #d81616 !important;
    border: none;
}

.datatable-primary .dataTables_paginate .page-item.disabled .page-link {
    color: #9f98f7;
    background-color: #f9f9f9;
    border-color: #c9c6f5;
}


/* datatable-dark */

.datatable-dark thead {
    background: #444;
    color: #fff;
}

.datatable-dark .dataTables_paginate .page-item.active .page-link,
.datatable-dark .dataTables_paginate .page-item .page-link:hover {
    background-color: #444;
    border-color: #444;
    color: #fff;
}

.datatable-dark .dataTables_paginate .page-link {
    color: #444;
    border: 1px solid #444;
}

.datatable-dark .dataTables_paginate .paginate_button.disabled,
.datatable-dark .dataTables_paginate .paginate_button.disabled:hover,
.datatable-dark .dataTables_paginate .paginate_button.disabled:active {
    color: #444 !important;
    border: none;
}

.datatable-dark .dataTables_paginate .page-item.disabled .page-link {
    color: #999;
    background-color: #f9f9f9;
    border-color: #999;
}

.jsgrid .jsgrid-pager {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 4px;
    line-height: 40px;
}

.jsgrid .jsgrid-pager .page-item .page-link,
.jsgrid .jsgrid-pager .jsgrid-pager-nav-button .page-link,
.jsgrid .jsgrid-pager .jsgrid-pager-page .page-link,
.jsgrid .jsgrid-pager .jsgrid-pager-nav-button a,
.jsgrid .jsgrid-pager .jsgrid-pager-page a {
    border-color: #f2f2f2;
    font-size: 14px;
    font-weight: 400;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.jsgrid .jsgrid-pager .jsgrid-pager-nav-button a,
.jsgrid .jsgrid-pager .jsgrid-pager-page a {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #d81616;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.jsgrid .jsgrid-pager-page,
.jsgrid .jsgrid-pager-nav-button {
    padding-left: 10px !important;
    padding-right: 0 !important;
}

.jsgrid .jsgrid-pager-current-page {
    padding: 9px 15px !important;
    font-weight: initial;
    line-height: initial;
    margin-left: 10px;
    background: #d81616;
    color: #fff;
    height: 35px;
    margin-top: 3px;
    border-radius: 4px;
}

.jsgrid .jsgrid-mode-button {
    background-image: url("../images/js-grid.png") !important;
}

.jsgrid .jsgrid-button {
    background-image: url("../images/js-grid.png") !important;
}

.jsgrid .jsgrid-edit-row input[type='text'],
.jsgrid .jsgrid-edit-row input[type='number'],
.jsgrid .jsgrid-edit-row input[type='password'],
.jsgrid .jsgrid-edit-row input[type='tel'],
.jsgrid .jsgrid-edit-row input[type='email'],
.jsgrid .jsgrid-edit-row select,
.jsgrid .jsgrid-edit-row textarea,
.jsgrid .jsgrid-filter-row input[type='text'],
.jsgrid .jsgrid-filter-row input[type='number'],
.jsgrid .jsgrid-filter-row input[type='password'],
.jsgrid .jsgrid-filter-row input[type='tel'],
.jsgrid .jsgrid-filter-row input[type='email'],
.jsgrid .jsgrid-filter-row select,
.jsgrid .jsgrid-filter-row textarea,
.jsgrid .jsgrid-insert-row input[type='text'],
.jsgrid .jsgrid-insert-row input[type='number'],
.jsgrid .jsgrid-insert-row input[type='password'],
.jsgrid .jsgrid-insert-row input[type='tel'],
.jsgrid .jsgrid-insert-row input[type='email'],
.jsgrid .jsgrid-insert-row select,
.jsgrid .jsgrid-insert-row textarea {
    width: 100%;
    padding: 8px;
    background: #fff;
    border: 1px solid #eaeaea;
}

.jsgrid-header-row>.jsgrid-header-cell {
    font-weight: 600;
}


/* ============================ */


/*            End Table
/* ============================ */


/* ============================ */


/*            Toastr
/* ============================ */

.toast-title {
    font-weight: 700;
}

.toast-message {
    font-size: 14px;
    font-weight: 600;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

.toast-message a,
.toast-message label {
    color: #FFFFFF;
}

.toast-message a:hover {
    color: #CCC;
    text-decoration: none;
}

.toast-close-button {
    position: relative;
    right: -.3em;
    top: -.3em;
    float: right;
    font-size: 20px;
    font-weight: 700;
    color: #FFF;
    -webkit-text-shadow: 0 1px 0 #fff;
    text-shadow: 0 1px 0 #fff;
    opacity: .8;
    filter: alpha(opacity=80);
    line-height: 1;
}

.toast-close-button:focus,
.toast-close-button:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .4;
    filter: alpha(opacity=40);
}

.toast-close-button .rtl .toast-close-button {
    left: -.3em;
    float: left;
    right: .3em;
}

button.toast-close-button {
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none;
}

.toastr_top_center {
    top: 12px;
    right: 12px;
    width: 100%;
}

.toastr_bottom_center {
    bottom: 12px;
    right: 12px;
    width: 100%;
}

.toastr_top_left {
    top: 12px;
    left: 12px;
}

.toastr_top_right {
    top: 12px;
    right: 12px;
}

.toastr_bottom_right {
    right: 12px;
    bottom: 12px;
}

.toastr_bottom_left {
    bottom: 12px;
    left: 12px;
}

#toast-container {
    position: fixed;
    z-index: 999999;
    pointer-events: none;
}

#toast-container * {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#toast-container>div {
    position: relative;
    pointer-events: auto;
    overflow: hidden;
    margin: 0 0 6px;
    padding: 15px 15px 15px 50px;
    width: 300px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-position: 15px center;
    background-repeat: no-repeat;
    -moz-box-shadow: 0 0 12px #999;
    -webkit-box-shadow: 0 0 12px #999;
    box-shadow: 0 0 12px #999;
    color: #FFF;
    opacity: .8;
    filter: alpha(opacity=80);
}

#toastr_top_left,
#toastr_top_right,
#toastr_top_center,
#toastr_bottom_left,
#toastr_bottom_right,
#toastr_bottom_center {
    position: fixed;
    z-index: 999999;
    pointer-events: none;
}

#toastr_top_left>div,
#toastr_top_right>div,
#toastr_top_center>div,
#toastr_bottom_left>div,
#toastr_bottom_right>div,
#toastr_bottom_center>div {
    position: relative;
    pointer-events: auto;
    overflow: hidden;
    margin: 0 0 6px;
    padding: 15px 15px 15px 50px;
    width: 300px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-position: 15px center;
    background-repeat: no-repeat;
    -moz-box-shadow: 0 0 12px #999;
    -webkit-box-shadow: 0 0 12px #999;
    box-shadow: 0 0 12px #999;
    color: #FFF;
    opacity: .8;
    font-size: 14px;
    filter: alpha(opacity=80);
}

#toast-container>div.rtl {
    direction: rtl;
    padding: 15px 50px 15px 15px;
    background-position: right 15px center;
}

#toastr_top_left>div:hover,
#toastr_top_right>div:hover,
#toastr_top_center>div:hover,
#toastr_bottom_left>div:hover,
#toastr_bottom_right>div:hover,
#toastr_bottom_center>div:hover,
#toast-container>div:hover {
    -moz-box-shadow: 0 0 12px #000;
    -webkit-box-shadow: 0 0 12px #000;
    box-shadow: 0 0 12px #000;
    opacity: 1;
    filter: alpha(opacity=100);
    cursor: pointer;
}

#toast-container.toastr_bottom_center>div,
#toast-container.toastr_top_center>div,
#toastr_bottom_center.toastr_bottom_center>div,
#toastr_top_center.toastr_top_center>div {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.toast {
    background-color: #030303;
}

#toastr_bottom_right .toast-success,
#toastr_bottom_center .toast-success,
#toastr_bottom_left .toast-success,
#toast-container .toast-success,
#toastr_top_left .toast-success,
#toastr_top_right .toast-success,
#toastr_top_center .toast-success {
    background-color: #3fb504;
    background-image: none;
    color: #fff;
}

#toastr_bottom_right .toast-error,
#toastr_bottom_center .toast-error,
#toastr_bottom_left .toast-error,
#toastr_top_left .toast-error,
#toastr_top_right .toast-error,
#toastr_top_center .toast-error,
#toast-container .toast-error {
    background-color: #ec0877;
}

#toastr_bottom_right .toast-info,
#toastr_bottom_center .toast-info,
#toastr_bottom_left .toast-info,
#toast-container .toast-info,
#toastr_top_right .toast-info,
#toastr_top_center .toast-info,
#toastr_top_left .toast-info {
    background-color: #d81616;
}

#toastr_bottom_right .toast-warning,
#toastr_bottom_center .toast-warning,
#toastr_bottom_left .toast-warning,
#toast-container .toast-warning,
#toastr_top_left .toast-warning,
#toastr_top_right .toast-warning,
#toastr_top_center .toast-warning {
    background-color: #f39a51;
}

.toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    background-color: #000;
    opacity: .4;
    filter: alpha(opacity=40);
}

@media all and (max-width: 240px) {
    #toast-container>div {
        padding: 8px 8px 8px 50px;
        width: 11em;
    }
    #toast-container>div.rtl {
        padding: 8px 50px 8px 8px;
    }
    #toast-container .toast-close-button {
        right: -.2em;
        top: -.2em;
    }
    #toast-container .rtl .toast-close-button {
        left: -.2em;
        right: .2em;
    }
}

@media all and (min-width: 241px) and (max-width: 480px) {
    #toast-container>div {
        padding: 8px 8px 8px 50px;
        width: 18em;
    }
    #toast-container>div.rtl {
        padding: 8px 50px 8px 8px;
    }
    #toast-container .toast-close-button {
        right: -.2em;
        top: -.2em;
    }
    #toast-container .rtl .toast-close-button {
        left: -.2em;
        right: .2em;
    }
}

@media all and (min-width: 481px) and (max-width: 768px) {
    #toast-container>div {
        padding: 15px 15px 15px 50px;
        width: 25em;
    }
    #toast-container>div.rtl {
        padding: 15px 50px 15px 15px;
    }
}


/* ============================ */


/*            End Toastr
/* ============================ */


/* ============================ */


/*         Sweet Alert
/* ============================ */

.swal2-container .swal2-styled:not(.swal2-cancel) {
    background: #6F4183 !important;
    outline: none;
}

.swal2-popup .swal2-title {
    color: #444 !important;
    font-size: 24px !important;
}


/* ============================ */


/*        End Sweet Alert
/* ============================ */


/* ============================ */


/*            Cropper
/* ============================ */

.img-preview {
    overflow: hidden;
    float: left;
    background-color: #eee;
    width: 100%;
    text-align: center;
    margin-right: 10px;
    margin-bottom: 10px;
}

.preview-lg {
    width: 200px;
    height: 150px;
}

.img-container,
.img-preview {
    background-color: #f7f7f7;
    text-align: center;
    width: 100%;
}

.preview-md {
    width: 150px;
    height: 120px;
}

.preview-sm {
    width: 100px;
    height: 75px;
}


/* ============================ */


/*            End Cropper
/* ============================ */


/* ============================ */


/*            Loaders
/* ============================ */

.ring_loader {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.ring_loader div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 51px;
    height: 51px;
    margin: 4px;
    border-radius: 50%;
    animation: ring_loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.primary_ring_loader div {
    border: 4px solid #d81616;
    border-color: #d81616 transparent transparent transparent;
}

.secondary_ring_loader div {
    border: 4px solid #74829c;
    border-color: #74829c transparent transparent transparent;
}

.success_ring_loader div {
    border: 4px solid #3fb504;
    border-color: #3fb504 transparent transparent transparent;
}

.warning_ring_loader div {
    border: 4px solid #f39a51;
    border-color: #f39a51 transparent transparent transparent;
}

.danger_ring_loader div {
    border: 4px solid #ec0877;
    border-color: #ec0877 transparent transparent transparent;
}

.dark_ring_loader div {
    border: 4px solid #444;
    border-color: #444 transparent transparent transparent;
}

.ring_loader div:nth-child(1) {
    animation-delay: -0.45s;
}

.ring_loader div:nth-child(2) {
    animation-delay: -0.3s;
}

.ring_loader div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes ring_loader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.default_loader {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.default_loader div {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: default_loader 1.2s linear infinite;
}

.default_loader div:nth-child(1) {
    animation-delay: 0s;
    top: 37px;
    left: 66px;
}

.default_loader div:nth-child(2) {
    animation-delay: -0.1s;
    top: 22px;
    left: 62px;
}

.default_loader div:nth-child(3) {
    animation-delay: -0.2s;
    top: 11px;
    left: 52px;
}

.default_loader div:nth-child(4) {
    animation-delay: -0.3s;
    top: 7px;
    left: 37px;
}

.default_loader div:nth-child(5) {
    animation-delay: -0.4s;
    top: 11px;
    left: 22px;
}

.default_loader div:nth-child(6) {
    animation-delay: -0.5s;
    top: 22px;
    left: 11px;
}

.default_loader div:nth-child(7) {
    animation-delay: -0.6s;
    top: 37px;
    left: 7px;
}

.default_loader div:nth-child(8) {
    animation-delay: -0.7s;
    top: 52px;
    left: 11px;
}

.default_loader div:nth-child(9) {
    animation-delay: -0.8s;
    top: 62px;
    left: 22px;
}

.default_loader div:nth-child(10) {
    animation-delay: -0.9s;
    top: 66px;
    left: 37px;
}

.default_loader div:nth-child(11) {
    animation-delay: -1s;
    top: 62px;
    left: 52px;
}

.default_loader div:nth-child(12) {
    animation-delay: -1.1s;
    top: 52px;
    left: 62px;
}

@keyframes default_loader {
    0%,
    20%,
    80%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
}

.loader_dual {
    display: inline-block;
    width: 50px;
    height: 50px;
}

.loader_dual:after {
    content: " ";
    display: block;
    width: 50px;
    height: 50px;
    margin: 8px;
    border-radius: 50%;
    animation: loader_dual 1.2s linear infinite;
}

.primary_dual_loader:after {
    border: 4px solid #d81616;
    border-color: #d81616 transparent #d81616 transparent;
}

.secondary_dual_loader:after {
    border: 4px solid #74829c;
    border-color: #74829c transparent #74829c transparent;
}

.success_dual_loader:after {
    border: 4px solid #3fb504;
    border-color: #3fb504 transparent #3fb504 transparent;
}

.warning_dual_loader:after {
    border: 4px solid #f39a51;
    border-color: #f39a51 transparent #f39a51 transparent;
}

.danger_dual_loader:after {
    border: 4px solid #ec0877;
    border-color: #ec0877 transparent #ec0877 transparent;
}

.dark_dual_loader:after {
    border: 4px solid #444;
    border-color: #444 transparent #444 transparent;
}

@keyframes loader_dual {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.roller_loader {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.roller_loader div {
    animation: roller_loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 32px 32px;
}

.roller_loader div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin: -3px 0 0 -3px;
}

.roller_loader div:nth-child(1) {
    animation-delay: -0.036s;
}

.roller_loader div:nth-child(1):after {
    top: 50px;
    left: 50px;
}

.roller_loader div:nth-child(2) {
    animation-delay: -0.072s;
}

.roller_loader div:nth-child(2):after {
    top: 54px;
    left: 45px;
}

.roller_loader div:nth-child(3) {
    animation-delay: -0.108s;
}

.roller_loader div:nth-child(3):after {
    top: 57px;
    left: 39px;
}

.roller_loader div:nth-child(4) {
    animation-delay: -0.144s;
}

.roller_loader div:nth-child(4):after {
    top: 58px;
    left: 32px;
}

.roller_loader div:nth-child(5) {
    animation-delay: -0.18s;
}

.roller_loader div:nth-child(5):after {
    top: 57px;
    left: 25px;
}

.roller_loader div:nth-child(6) {
    animation-delay: -0.216s;
}

.roller_loader div:nth-child(6):after {
    top: 54px;
    left: 19px;
}

.roller_loader div:nth-child(7) {
    animation-delay: -0.252s;
}

.roller_loader div:nth-child(7):after {
    top: 50px;
    left: 14px;
}

.roller_loader div:nth-child(8) {
    animation-delay: -0.288s;
}

.roller_loader div:nth-child(8):after {
    top: 45px;
    left: 10px;
}

@keyframes roller_loader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.primary_roller_loader div:after {
    background: #d81616;
}

.secondary_roller_loader div:after {
    background: #74829c;
}

.success_roller_loader div:after {
    background: #3fb504;
}

.warning_roller_loader div:after {
    background: #f39a51;
}

.danger_roller_loader div:after {
    background: #ec0877;
}

.dark_roller_loader div:after {
    background: #444;
}

.loader_rippler {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.loader_rippler div {
    position: absolute;
    border: 4px solid;
    opacity: 1;
    border-radius: 50%;
    animation: loader_rippler 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.loader_rippler div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes loader_rippler {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: -1px;
        left: -1px;
        width: 58px;
        height: 58px;
        opacity: 0;
    }
}

.primary_ripple_loader div {
    border-color: #d81616;
}

.secondary_ripple_loader div {
    border-color: #74829c;
}

.success_ripple_loader div {
    border-color: #3fb504;
}

.warning_ripple_loader div {
    border-color: #f39a51;
}

.danger_ripple_loader div {
    border-color: #ec0877;
}

.dark_ripple_loader div {
    border-color: #444;
}

.spinner_loader {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.spinner_loader div {
    transform-origin: 32px 32px;
    animation: spinner_loader 1.2s linear infinite;
}

.spinner_loader div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 29px;
    width: 5px;
    height: 14px;
    border-radius: 20%;
}

.spinner_loader div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}

.spinner_loader div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}

.spinner_loader div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}

.spinner_loader div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}

.spinner_loader div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}

.spinner_loader div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}

.spinner_loader div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}

.spinner_loader div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}

.spinner_loader div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}

.spinner_loader div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}

.spinner_loader div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}

.spinner_loader div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}

@keyframes spinner_loader {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.primary_spinner_loader div:after {
    background: #d81616;
}

.secondary_spinner_loader div:after {
    background: #74829c;
}

.success_spinner_loader div:after {
    background: #3fb504;
}

.warning_spinner_loader div:after {
    background: #f39a51;
}

.danger_spinner_loader div:after {
    background: #ec0877;
}

.dark_spinner_loader div:after {
    background: #444;
}

.dark_spinner_loader div:after {
    background: #444;
}


/* ============================ */


/*            End Loaders
/* ============================ */


/* ============================ */


/*            Tour
/* ============================ */

.hopscotch-bubble {
    background-color: #d81616 !important;
    border: none !important;
    color: #FFFFFF !important;
    font-size: 13px !important;
}

.hopscotch-bubble .hopscotch-bubble-number {
    background: none !important;
    background-color: #fff !important;
    color: #444 !important;
    padding: 0 !important;
    border-radius: 50px !important;
}

.hopscotch-bubble h3 {
    color: #fff !important;
}

.hopscotch-bubble .hopscotch-nav-button.next {
    border-color: #cdd4e0 !important;
    color: #444 !important;
    margin: 0 0 0 10px;
    text-shadow: none !important;
    background-color: #FFFFFF !important;
    background-image: none !important;
}

.hopscotch-bubble .hopscotch-bubble-arrow-container.right {
    right: -33px !important;
}

.hopscotch-bubble .hopscotch-bubble-arrow-container.right .hopscotch-bubble-arrow-border {
    border-left: 17px solid #d81616 !important;
}

.hopscotch-bubble .hopscotch-bubble-arrow-container.right .hopscotch-bubble-arrow {
    border-left: 17px solid #d81616 !important;
    left: -3px !important;
}

.hopscotch-bubble .hopscotch-bubble-arrow-container.down {
    bottom: -33px !important;
}

.hopscotch-bubble .hopscotch-bubble-arrow-container.down .hopscotch-bubble-arrow-border {
    border-top: 17px solid #d81616 !important;
}

.hopscotch-bubble .hopscotch-bubble-arrow-container.down .hopscotch-bubble-arrow {
    border-top: 17px solid #d81616 !important;
}

.hopscotch-bubble .hopscotch-bubble-arrow-container.left {
    left: -15px !important;
}

.hopscotch-bubble .hopscotch-bubble-arrow-container.left .hopscotch-bubble-arrow-border {
    border-right: 17px solid #d81616 !important;
}

.hopscotch-bubble .hopscotch-bubble-arrow-container.left .hopscotch-bubble-arrow {
    border-right: 17px solid #d81616 !important;
}

.hopscotch-bubble .hopscotch-bubble-arrow-container.up {
    top: -15px !important;
}

.hopscotch-bubble .hopscotch-bubble-arrow-container.up .hopscotch-bubble-arrow-border {
    border-bottom: 17px solid #d81616 !important;
}

.hopscotch-bubble .hopscotch-bubble-arrow-container.up .hopscotch-bubble-arrow {
    border-bottom: 17px solid #d81616 !important;
}


/* ============================ */


/*            End Tour
/* ============================ */


/* ============================ */


/*         Ladda Btn
/* ============================ */

.ladda-button[disabled]:hover,
.ladda-button[data-loading]:hover {
    cursor: default !important;
}

.primary-btn.ladda-button[disabled],
.primary-btn.ladda-button[data-loading],
.primary-btn.ladda-button[disabled]:hover,
.primary-btn.ladda-button[data-loading]:hover {
    background-color: #a6a4fc !important;
}

.secondary-btn.ladda-button[disabled],
.secondary-btn.ladda-button[data-loading],
.secondary-btn.ladda-button[disabled]:hover,
.secondary-btn.ladda-button[data-loading]:hover {
    background-color: #929db1 !important;
}

.success-btn.ladda-button[disabled],
.success-btn.ladda-button[data-loading],
.success-btn.ladda-button[disabled]:hover,
.success-btn.ladda-button[data-loading]:hover {
    background-color: #50e705 !important;
}

.warning-btn.ladda-button[disabled],
.warning-btn.ladda-button[data-loading],
.warning-btn.ladda-button[disabled]:hover,
.warning-btn.ladda-button[data-loading]:hover {
    background-color: #f6b681 !important;
}

.danger-btn.ladda-button[disabled],
.danger-btn.ladda-button[data-loading],
.danger-btn.ladda-button[disabled]:hover,
.danger-btn.ladda-button[data-loading]:hover {
    background-color: #f82f91 !important;
}

.dark-btn.ladda-button[disabled],
.dark-btn.ladda-button[data-loading],
.dark-btn.ladda-button[disabled]:hover,
.dark-btn.ladda-button[data-loading]:hover {
    background-color: #5e5e5e !important;
}

.light-btn.ladda-button[disabled],
.light-btn.ladda-button[data-loading],
.light-btn.ladda-button[disabled]:hover,
.light-btn.ladda-button[data-loading]:hover {
    background-color: #eceff4 !important;
}

.ladda-button[data-style=contract] {
    width: auto !important;
}


/* ============================ */


/*        End Ladda Btn
/* ============================ */


/* ============================ */


/*         Dropzone
/* ============================ */

.dropzone {
    cursor: pointer;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.dropzone i {
    font-size: 60px;
}

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

.dropzone.dropzone-primary {
    border: 2px dashed #a6a4fc !important;
}

.dropzone.dropzone-primary i {
    color: #a6a4fc;
    opacity: 0.5;
}

.dropzone.dropzone-secondary {
    border: 2px dashed #929db1 !important;
}

.dropzone.dropzone-secondary i {
    color: #929db1;
    opacity: 0.5;
}

.dropzone.dropzone-success {
    border: 2px dashed #50e705 !important;
}

.dropzone.dropzone-success i {
    color: #50e705;
    opacity: 0.5;
}

.dropzone.dropzone-warning {
    border: 2px dashed #f6b681 !important;
}

.dropzone.dropzone-warning i {
    color: #f6b681;
    opacity: 0.5;
}

.dropzone.dropzone-danger {
    border: 2px dashed #f82f91 !important;
}

.dropzone.dropzone-danger i {
    color: #f82f91;
    opacity: 0.5;
}

.dropzone.dropzone-dark {
    border: 2px dashed #5e5e5e !important;
}

.dropzone.dropzone-dark i {
    color: #5e5e5e;
    opacity: 0.5;
}

.dropzone.dropzone-light {
    border: 2px dashed #cdd4e0 !important;
}

.dropzone.dropzone-light i {
    color: #cdd4e0;
    opacity: 0.5;
}


/* ============================ */


/*        End Dropzone
/* ============================ */


/* ============================ */


/*            Forms
/* ============================ */

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #d81616;
    outline: 0;
    box-shadow: none;
}

.form-control,
.form-control:focus {
    outline: none;
    box-shadow: none;
}

.form-rounded {
    border-radius: 40px;
}

.form-control {
    font-size: 14px;
    border: 1px solid rgba(170, 170, 170, 0.3);
}

label {
    font-weight: 500;
    color: #666;
    display: inline-block;
    margin-bottom: 8px;
}

.font-14 {
    font-size: 14px;
}

.input-rounded {
    border-radius: 50px;
}

.custom-file-label,
.custom-file-input,
.custom-file {
    height: calc(2.25rem + 7px);
    padding: 10.8px 12px;
}

.custom-file-label:after {
    height: calc(calc(2.25rem + 7px) - 1px * 2);
    padding: 10.8px 12px;
}

.grid-col {
    padding: 10px 15px;
    background: #f3f8fb;
    margin-bottom: 30px;
    color: #666;
    border: 1px solid #e3e6e8;
}

.custom-control-label {
    margin-top: 2px;
}

.form-control-feedback {
    font-size: 14px;
    margin-top: 8px;
    font-weight: 500;
    color: #000;
}

.form-check .form-check-label {
    min-height: 18px;
    display: block;
    margin-left: 15px;
    font-size: 14px;
    line-height: 1;
}

.primary-checkbox.custom-checkbox .custom-control-input:checked~.custom-control-label::before,
.primary-radio.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #d81616 !important;
}

.primary-checkbox.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before,
.primary-radio.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: white !important;
}

.primary-checkbox.custom-radio .custom-control-input:checked~.custom-control-label::before,
.primary-radio.custom-radio .custom-control-input:checked~.custom-control-label::before {
    background-color: #d81616 !important;
}

.primary-checkbox.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before,
.primary-radio.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: white !important;
}

.secondary-checkbox.custom-checkbox .custom-control-input:checked~.custom-control-label::before,
.secondary-radio.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #74829c !important;
}

.secondary-checkbox.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before,
.secondary-radio.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: #cdd2dc !important;
}

.secondary-checkbox.custom-radio .custom-control-input:checked~.custom-control-label::before,
.secondary-radio.custom-radio .custom-control-input:checked~.custom-control-label::before {
    background-color: #74829c !important;
}

.secondary-checkbox.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before,
.secondary-radio.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: #cdd2dc !important;
}

.success-checkbox.custom-checkbox .custom-control-input:checked~.custom-control-label::before,
.success-radio.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #3fb504 !important;
}

.success-checkbox.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before,
.success-radio.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: #8efb57 !important;
}

.success-checkbox.custom-radio .custom-control-input:checked~.custom-control-label::before,
.success-radio.custom-radio .custom-control-input:checked~.custom-control-label::before {
    background-color: #3fb504 !important;
}

.success-checkbox.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before,
.success-radio.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: #8efb57 !important;
}

.danger-checkbox.custom-checkbox .custom-control-input:checked~.custom-control-label::before,
.danger-radio.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #ec0877 !important;
}

.danger-checkbox.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before,
.danger-radio.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: #fb92c5 !important;
}

.danger-checkbox.custom-radio .custom-control-input:checked~.custom-control-label::before,
.danger-radio.custom-radio .custom-control-input:checked~.custom-control-label::before {
    background-color: #ec0877 !important;
}

.danger-checkbox.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before,
.danger-radio.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: #fb92c5 !important;
}

.warning-checkbox.custom-checkbox .custom-control-input:checked~.custom-control-label::before,
.warning-radio.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #f39a51 !important;
}

.warning-checkbox.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before,
.warning-radio.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: #fdede0 !important;
}

.warning-checkbox.custom-radio .custom-control-input:checked~.custom-control-label::before,
.warning-radio.custom-radio .custom-control-input:checked~.custom-control-label::before {
    background-color: #f39a51 !important;
}

.warning-checkbox.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before,
.warning-radio.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: #fdede0 !important;
}

.dark-checkbox.custom-checkbox .custom-control-input:checked~.custom-control-label::before,
.dark-radio.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #444 !important;
}

.dark-checkbox.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before,
.dark-radio.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: #919191 !important;
}

.dark-checkbox.custom-radio .custom-control-input:checked~.custom-control-label::before,
.dark-radio.custom-radio .custom-control-input:checked~.custom-control-label::before {
    background-color: #444 !important;
}

.dark-checkbox.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before,
.dark-radio.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: #919191 !important;
}

.input-group-text {
    background-color: #f9f9f9 !important;
    border: 1px solid rgba(170, 170, 170, 0.3) !important;
}

.valid-tooltip {
    background-color: #6cfa25;
}

.custom-select.is-valid,
.form-control.is-valid,
.was-validated .custom-select:valid,
.was-validated .form-control:valid {
    border-color: #3fb504;
}

.custom_checkbox {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 0;
}

.custom_checkbox .custom_check_label {
    min-height: 18px;
    display: block;
    margin-left: 1.75rem;
    font-size: 14px;
    line-height: 1.5;
}

.rtl .custom_checkbox .custom_check_label {
    margin-left: 0;
    margin-right: 1.75rem;
}

.custom_checkbox .custom_check_label input {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    z-index: 1;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}

.rtl .custom_checkbox .custom_check_label input {
    left: auto;
    right: 0;
}

.custom_checkbox .custom_check_label input[type="checkbox"]+.input-helper:before,
.custom_checkbox .custom_check_label input[type="checkbox"]+.input-helper:after {
    position: absolute;
    top: 0;
    left: 0;
}

.rtl .custom_checkbox .custom_check_label input[type="checkbox"]+.input-helper:before,
.rtl .custom_checkbox .custom_check_label input[type="checkbox"]+.input-helper:after {
    left: auto;
    right: 0;
}

.custom_checkbox .custom_check_label input[type="checkbox"]+.input-helper:before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: solid #eaeaea;
    border-width: 2px;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
}

.custom_checkbox .custom_check_label input[type="checkbox"]+.input-helper:after {
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
    font-family: Ionicons;
    font-style: normal;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    content: "\f3fd";
    font-weight: bold;
    color: #FFFFFF;
    left: 4px;
    font-size: 26px;
    top: 1px;
}

.custom_checkbox .custom_check_label input[type="checkbox"]:checked+.input-helper:before {
    background: #d81616;
    border-width: 0;
}

.custom_checkbox .custom_check_label input[type="checkbox"]:checked+.input-helper:after {
    width: 18px;
    opacity: 1;
    line-height: 18px;
    filter: alpha(opacity=100);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.custom_checkbox .custom_check_label input[type="checkbox"]:disabled+.input-helper:before {
    border-color: #eaeaea;
}

.custom_checkbox .custom_check_label input[type="checkbox"]:disabled:checked+.input-helper:after {
    background: #d81616;
    color: #eaeaea;
}

.custom_checkbox .custom_check_label input[type="radio"]+.input-helper:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border: solid #eaeaea;
    border-width: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
}

.rtl .custom_checkbox .custom_check_label input[type="radio"]+.input-helper:before {
    left: auto;
    right: 0;
}

.custom_checkbox .custom_check_label input[type="radio"]+.input-helper:after {
    content: "";
    width: 8px;
    height: 8px;
    color: #FFFFFF;
    background: #d81616;
    border-radius: 50%;
    top: 6px;
    left: 6px;
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    position: absolute;
}

.rtl .custom_checkbox .custom_check_label input[type="radio"]+.input-helper:after {
    left: auto;
    right: 6px;
}

.custom_checkbox .custom_check_label input[type="radio"]:checked+.input-helper:before {
    background: #d81616;
    border: 2px solid #d81616;
}

.custom_checkbox .custom_check_label input[type="radio"]:checked+.input-helper:after {
    opacity: 1;
    line-height: 1.5;
    filter: alpha(opacity=100);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.custom_checkbox .custom_check_label input[type="radio"]:disabled+.input-helper:before {
    border-color: #eaeaea;
}

.custom_checkbox .custom_check_label input[type="radio"]:disabled:checked+.input-helper:before {
    background: #d81616;
}

.custom_checkbox .custom_check_label input[type="radio"]:disabled:checked+.input-helper:after {
    background: #eaeaea;
}


/* ============================ */


/*            End Forms
/* ============================ */


/* ============================ */


/*            Calendar
/* ============================ */

.full_calendar table tr td {
    vertical-align: middle !important;
    padding: initial !important;
}

.full_calendar .fc-event {
    border: none;
    padding: 3px !important;
    text-align: center;
}

.full_calendar a {
    color: #fff !important;
    font-size: 12px;
}

.full_calendar.fc-unthemed .fc-toolbar .fc-button:focus,
.full_calendar.fc-unthemed .fc-toolbar .fc-button:active,
.full_calendar.fc-unthemed .fc-toolbar .fc-button.fc-state-active {
    background: #d81616;
    color: #fff;
    border: 1px solid #d81616;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-shadow: none;
}

.full_calendar.fc-unthemed .fc-toolbar .fc-button {
    color: #a1a8c3;
    background: transparent;
    border: 1px solid #ebedf2;
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.full_calendar.fc-unthemed .fc-toolbar .fc-button:hover {
    background: #f7f8fa;
    border: 1px solid #ebedf2;
    color: #a1a8c3;
}

.full_calendar.fc-unthemed .fc-toolbar .fc-button {
    outline: none !important;
    font-size: 14px;
}

.full_calendar.fc-unthemed .fc-toolbar h2 {
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 0.75rem;
    margin: 0;
}

.external-event {
    padding: 5px 10px;
    font-weight: 500;
    margin-bottom: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    cursor: move;
    text-align: center;
}


/* ============================ */


/*            End Calendar
/* ============================ */


/* ============================ */


/*            Mail Box
/* ============================ */

.mail_content {
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
}

.mail_content .fa.fa-star {
    color: #f39a51;
}

@media screen and (max-width: 991px) {
    .mail_content .mail_list .label-primary,
    .mail_content .mail_list .label-secondary,
    .mail_content .mail_list .label-danger,
    .mail_content .mail_list .label-warning,
    .mail_content .mail_list .label-success {
        display: inline-block;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 991px) {
    .mail_content .all_mails_btn {
        float: none !important;
        margin-top: 20px;
    }
}

.recipient {
    font-size: 13px;
    margin-top: 5px;
    color: #666;
    font-weight: 600;
}

.mailbox-time {
    font-size: 11px;
    color: #868383;
    font-weight: 500;
}

@media screen and (max-width: 991px) {
    .reply_btn {
        float: none !important;
    }
}

.mailbox-attachments li {
    float: left;
    width: 200px;
    border: 1px solid #eee;
    margin-bottom: 10px;
    margin-right: 10px;
}

.mailbox-attachments li .btn-primary {
    position: relative;
    overflow: hidden;
    height: 20px;
    width: 25px;
}

.mailbox-attachments li .btn-primary i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
}

.mailbox-attachments .mailbox-attachment-name {
    font-weight: bold;
    color: #666;
}

.mailbox-attachments .mailbox-attachment-icon,
.mailbox-attachments .mailbox-attachment-info,
.mailbox-attachments .mailbox-attachment-size {
    display: block;
}

.mailbox-attachments .mailbox-attachment-info {
    padding: 10px;
    background: #f4f4f4;
}

.mailbox-attachments .mailbox-attachment-size {
    color: #999;
    font-size: 12px;
}

.mailbox-attachments .mailbox-attachment-icon {
    text-align: center;
    font-size: 65px;
    color: #666;
    padding: 20px 10px;
}

.mailbox-attachments .mailbox-attachment-icon.has-img {
    padding: 0;
}

.mailbox-attachments .mailbox-attachment-icon.has-img>img {
    max-width: 100%;
    height: auto;
}

.label-primary,
.label-secondary,
.label-danger,
.label-warning,
.label-success {
    padding: 5px;
    background: #d81616;
    color: #fff;
    border-radius: 4px;
    text-align: center;
    font-size: 12px;
}

.label-secondary {
    background: #74829c;
}

.label-success {
    background: #3fb504;
}

.label-warning {
    background: #f39a51;
}

.label-danger {
    background: #ec0877;
}

.mail_tabs {
    margin-top: 30px;
    border: 1px solid #eaeaea;
    border-radius: 9px;
    overflow: hidden;
}

.mail_tabs li {
    display: block;
}

.mail_tabs li a {
    display: block;
    color: #555555;
    padding: 10px 15px;
    text-decoration: none;
    background-color: #ffffff;
    margin-bottom: 1px;
}

.mail_tabs li a i {
    font-size: 14px;
    margin-right: 10px;
}

.mail_tabs li.active a,
.mail_tabs li a:hover {
    background-color: #f5f5f5;
    color: #d81616;
}

.inbox_numb {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    margin-left: 5px;
}

.mail_head {
    display: inline-block;
    width: auto;
    float: left;
    margin: 0;
    font-size: 20px;
}

.mail_more_btn,
.mail_nav,
.mail_count_nav {
    margin: 30px 0;
}

.mail_list table tr td:nth-child(4) {
    font-size: 95%;
}

.mail_list table tr td:nth-child(5) {
    font-size: 85%;
}

.mail_list table tr.unread td:nth-child(3) {
    font-weight: 700;
}

.mail_list table tr td:nth-child(3),
.mail_list table tr td:nth-child(4),
.mail_list table tr td:nth-child(5),
.mail_list table .star {
    cursor: pointer;
}


/* ============================ */


/*            End Mailbox
/* ============================ */


/* ============================ */


/*            Gallery
/* ============================ */

#mt_portfolio .portfolio_grid {
    width: calc(33.3333333% - 25px);
    height: auto;
    margin: 12px;
    float: left;
    position: relative;
    max-height: 800px;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    #mt_portfolio .portfolio_grid {
        padding: 0 15px;
        width: 97%;
    }
}

@media only screen and (max-width: 480px) {
    #mt_portfolio .portfolio_grid {
        width: 95%;
    }
}

#mt_portfolio li:after {
    display: none;
}

#mt_portfolio li:before {
    display: none;
}

#mt_portfolio .mt_filter {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
    #mt_portfolio .mt_filter {
        margin-left: 15px;
    }
}

#mt_portfolio .mt_filter ul li {
    margin-right: 15px;
    padding: 0;
    margin-bottom: 17px;
}

@media only screen and (max-width: 640px) {
    #mt_portfolio .mt_filter ul li {
        margin-bottom: 0;
    }
}

#mt_portfolio .mt_filter ul li a {
    color: #666666;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#mt_portfolio .mt_filter ul li a:hover:before {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -o-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform-origin: left top 0;
    -webkit-transform-origin: left top 0;
    -moz-transform-origin: left top 0;
    -o-transform-origin: left top 0;
    -ms-transform-origin: left top 0;
}

#mt_portfolio .mt_filter ul li a:before {
    background-color: #212529;
    content: "";
    height: 0.5px;
    left: 0;
    position: absolute;
    top: 25px;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -o-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform-origin: right top 0;
    -webkit-transform-origin: right top 0;
    -moz-transform-origin: right top 0;
    -o-transform-origin: right top 0;
    -ms-transform-origin: right top 0;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    -moz-transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    -o-transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    -ms-transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    width: 99%;
}

#mt_portfolio .mt_filter li a.active {
    border-bottom: 0.5px solid #212529;
}

#mt_portfolio .portfolio_row {
    margin-top: 30px;
}

#mt_portfolio .grid figure {
    position: relative;
    float: left;
    overflow: hidden;
    width: 100%;
    text-align: center;
    background: #000;
    margin: 0;
}

@media screen and (max-width: 50em) {
    #mt_portfolio .grid figure {
        display: inline-block;
        float: none;
        margin: 10px auto;
        width: 100%;
    }
}

#mt_portfolio .grid figure h2 {
    font-weight: 300;
}

#mt_portfolio .grid figure h2 span {
    font-weight: 800;
}

#mt_portfolio .grid figure h2,
#mt_portfolio .grid figure h3 {
    margin: 0;
}

#mt_portfolio .grid figure h3 {
    color: #fff;
    font-size: 26px;
    font-weight: 500;
}

@media only screen and (max-width: 520px) {
    #mt_portfolio .grid figure h3 {
        font-size: 16px;
    }
}

#mt_portfolio .grid figure h3 .view_proj {
    color: #fff;
    text-transform: initial;
}

#mt_portfolio .grid figure h3 .view_proj:hover,
#mt_portfolio .grid figure h3 .view_proj:focus {
    color: #fff;
    text-decoration: none;
}

#mt_portfolio .grid figure img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
}

#mt_portfolio .grid figure figcaption {
    padding: 1em;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 767px) {
    #mt_portfolio .grid figure figcaption {
        padding: 1em;
    }
}

#mt_portfolio .grid figure figcaption:before,
#mt_portfolio .grid figure figcaption:after {
    pointer-events: none;
}

#mt_portfolio .grid .effect-chico:hover img {
    opacity: 0.3;
    -webkit-transform: scale(1);
    transform: scale(1);
}

#mt_portfolio .grid .effect-chico h2 {
    padding: 20% 0 20px 0;
}

#mt_portfolio .grid .effect-chico h3 {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    text-align: left;
}

#mt_portfolio .grid .effect-chico img {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
}

#mt_portfolio .grid .effect-chico span {
    display: block;
    margin-top: 5px;
}

@media only screen and (max-width: 520px) {
    #mt_portfolio .grid .effect-chico span {
        margin-top: 0;
    }
}

#mt_portfolio .grid .effect-chico span a {
    background: #fff none repeat scroll 0 0;
    border-radius: 50%;
    color: #000;
    display: inline-block;
    height: 40px;
    line-height: 42px;
    text-align: center;
    width: 40px;
}

@media only screen and (max-width: 520px) {
    #mt_portfolio .grid .effect-chico span a {
        height: 30px;
        line-height: 30px;
        width: 30px;
    }
}

#mt_portfolio .grid .effect-chico figcaption:before {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    content: '';
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

#mt_portfolio .grid .effect-chico figcaption::before,
#mt_portfolio .grid .effect-chico h3 {
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

#mt_portfolio figure.effect-chico:hover figcaption::before,
#mt_portfolio figure.effect-chico:hover h3 {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* ============================ */


/*            End Gallery
/* ============================ */


/* ============================ */


/*            Login
/* ============================ */

.login-bg,
.register-bg {
    height: 100vh;
    background: url(../images/login-bg.jpg) no-repeat;
    background-size: cover;
    width: 770px;
    float: left;
    position: relative;
}

.register-bg {
    background: url(../images/register-bg.jpg) no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

@media only screen and (max-width: 767px) {
    .login_txt {
        display: none;
    }
}

.login-overlay {
    height: 100%;
    display: block;
    position: absolute;
    width: 100%;
    background: rgba(29, 29, 38, 0.7);
    top: 0;
    left: 0;
    z-index: 1;
}

.login-left {
    position: absolute;
    top: 50%;
    text-align: center;
    z-index: 2;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.login-left p {
    font-size: 15px;
    color: #fff;
    width: 82%;
    margin: 50px auto;
}

.login-left a {
    display: inline-block;
    border-radius: 30px;
    padding: 10px 30px;
}

.login-form {
    width: calc(100% - 770px);
    float: left;
    position: relative;
}

.login-form form {
    position: absolute;
    top: 50%;
    z-index: 2;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0 18px 37.7px 15.3px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0 18px 37.7px 15.3px rgba(0, 0, 0, 0.07);
    box-shadow: 0 18px 37.7px 15.3px rgba(0, 0, 0, 0.07);
}

.login-form form h2 {
    color: #444;
    font-weight: 500;
}

.login-form form .input-group {
    padding-bottom: 12px;
    border-bottom: solid 1px rgba(0, 0, 0, 0.4);
}

.login-area {
    background: #f9f9f9;
}

.login-form-body {
    padding: 50px;
}

.form-gp {
    margin-bottom: 25px;
    position: relative;
}

.form-gp label {
    position: absolute;
    left: 0;
    top: 0;
    color: #b3b2b2;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    font-size: 12px;
}

.form-gp.focused label {
    top: -15px;
    color: #d81616;
}

.form-gp input {
    width: 100%;
    height: 30px;
    border: none;
    border-bottom: 1px solid #e6e6e6;
    font-size: 12px;
}

.form-gp input::-webkit-input-placeholder {
    color: #dad7d7;
}

.form-gp input::-moz-placeholder {
    color: #dad7d7;
}

.form-gp input:-ms-input-placeholder {
    color: #dad7d7;
}

.form-gp input:-moz-placeholder {
    color: #dad7d7;
}

.form-gp i {
    position: absolute;
    right: 5px;
    bottom: 15px;
    color: #d81616;
    font-size: 16px;
}

.rmber-area {
    font-size: 13px;
}

.submit-btn-area {
    text-align: center;
}

.submit-btn-area button {
    width: 100%;
    height: 50px;
    border-radius: 7px;
    text-transform: uppercase;
    letter-spacing: 0;
    font-weight: 600;
    font-size: 12px;
    box-shadow: 0 0 22px rgba(0, 0, 0, 0.07);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.submit-btn-area button i {
    margin-left: 15px;
    -webkit-transition: margin-left 0.3s ease 0s;
    transition: margin-left 0.3s ease 0s;
}

.submit-btn-area button:hover i {
    margin-left: 20px;
}

.login-other a {
    display: block;
    width: 100%;
    max-width: 250px;
    height: 43px;
    line-height: 43px;
    border-radius: 40px;
    text-transform: capitalize;
    letter-spacing: 0;
    font-weight: 600;
    font-size: 12px;
    box-shadow: 0 0 22px rgba(0, 0, 0, 0.07);
}

.login-other a i {
    margin-left: 5px;
}

.login-other a.fb-login {
    background: #3b5998;
    color: #fff;
}

.login-other a.fb-login:hover {
    box-shadow: 0 5px 15px rgba(44, 113, 218, 0.38);
}

.login-other a.google-login {
    background: #DD4B39;
    color: #fff;
}

.login-other a.google-login:hover {
    box-shadow: 0 5px 15px rgba(251, 87, 87, 0.38);
}

.form-footer a {
    margin-left: 5px;
}

@media only screen and (max-width: 1100px) {
    .login-form {
        float: left;
        width: 100%;
    }
    .login-form form {
        padding: 50px 30px 20px;
        position: static;
        transform: inherit;
        width: 100%;
    }
    .credentials-form form {
        width: 90%;
        padding: 0;
        position: absolute;
        transform: translate(-50%, -50%);
    }
    .login-bg,
    .register-bg {
        width: 100%;
        height: auto;
    }
    .login-left {
        display: block;
        left: 0;
        position: relative;
        right: 0;
        top: 0;
        transform: inherit;
        z-index: 10;
        padding: 30px;
    }
}


/* login-s3 */

.lock-screen {
    background: url(../images/login-bg.jpg) center/cover no-repeat;
    position: relative;
    z-index: 1;
    height: 100vh;
}

.lock-screen .login-form {
    height: 100%;
    margin: 0 auto;
    display: block;
    float: none;
}

.lock-screen:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #272727;
    opacity: 0.7;
}

.lock-form-head {
    text-align: center;
    background: #d81616;
    padding: 40px;
    color: #fff;
    border-radius: 10px 10px 0 0;
}

.lock-form-head h4 {
    color: #fff;
}


/* ============================ */


/*            End Login
/* ============================ */


/* ============================ */


/*            Error
/* ============================ */

#notfound {
    position: relative;
    height: 100vh;
}

#notfound .notfound {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.notfound {
    max-width: 410px;
    width: 100%;
    text-align: center;
}

.notfound .notfound-404 {
    height: 280px;
    position: relative;
    z-index: -1;
}

.notfound .notfound-404 h1 {
    font-size: 230px;
    margin: 0px;
    font-weight: 900;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: url("../images/register-bg.jpg") no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: cover;
    background-position: center;
}

.notfound h2 {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0;
}

.notfound p {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 0px;
}

.notfound a {
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    padding: 15px 30px;
    color: #fff;
    font-weight: 700;
    -webkit-box-shadow: 0px 4px 15px -5px #d81616;
    box-shadow: 0px 4px 15px -5px #d81616;
}

@media only screen and (max-width: 767px) {
    .notfound .notfound-404 {
        height: 142px;
    }
    .notfound .notfound-404 h1 {
        font-size: 112px;
    }
}


/* ============================ */


/*            End Error
/* ============================ */


/* ============================ */


/*            Invoice
/* ============================ */

.invoice-head {
    margin-bottom: 30px;
    border-bottom: 1px solid #efebeb;
    padding-bottom: 20px;
}

.invoice-head .iv-left span {
    color: #444;
}

.invoice-head span {
    font-size: 21px;
    font-weight: 700;
    color: #777;
}

.invoice-address h3 {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.invoice-address h5 {
    font-size: 17px;
    margin-bottom: 10px;
}

.invoice-address p {
    font-size: 15px;
    color: #555;
}

.invoice-date li {
    font-size: 15px;
    color: #555;
    font-weight: 700;
    margin-bottom: 5px;
}

.invoice-table .table-bordered td,
.invoice-table .table-bordered th {
    border: 1px solid rgba(120, 130, 140, 0.13) !important;
    border-left: none !important;
    border-right: none !important;
}

.invoice-table tr td {
    color: #666;
}

.invoice-table tfoot tr td {
    text-transform: uppercase;
    font-weight: 600;
    color: #444;
}

.invoice-buttons a {
    display: inline-block;
    font-size: 15px;
    color: #fff;
    background: #815ef6;
    padding: 12px 19px;
    border-radius: 3px;
    text-transform: capitalize;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-left: 6px;
}

.invoice-buttons a:hover {
    background: #574494;
}


/* ============================ */


/*            End Invoice
/* ============================ */


/* ====================== */


/*        Pricing         */


/* ====================== */

#mt_pricing .main_pricing_conatiner.highlight_pricing {
    background: #d81616;
}

#mt_pricing .main_pricing_conatiner.highlight_pricing:hover a {
    color: #FFFFFF;
    background: #212529 !important;
    transition: all 0.5s ease;
    text-shadow: initial;
    -ms-box-shadow: -1px 4px 36px 0 rgba(0, 0, 0, 0.61);
    -o-box-shadow: -1px 4px 36px 0 rgba(0, 0, 0, 0.61);
    -webkit-box-shadow: -1px 4px 36px 0 rgba(0, 0, 0, 0.61);
    -moz-box-shadow: -1px 4px 36px 0 rgba(0, 0, 0, 0.61);
    box-shadow: -1px 4px 36px 0 rgba(0, 0, 0, 0.61);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#mt_pricing .main_pricing_conatiner.highlight_pricing .price_listing ul li {
    color: #FFFFFF;
}

#mt_pricing .main_pricing_conatiner.highlight_pricing .price_listing ul li:before {
    background: #FFFFFF !important;
}

#mt_pricing .main_pricing_conatiner.highlight_pricing h2 {
    color: #FFFFFF !important;
}

#mt_pricing .main_pricing_conatiner.highlight_pricing h2 .price_icon i {
    color: #FFFFFF !important;
}

#mt_pricing .main_pricing_conatiner.highlight_pricing .price_tag {
    color: #FFFFFF !important;
}

#mt_pricing .main_pricing_conatiner.highlight_pricing .per_month {
    color: #FFFFFF !important;
}

#mt_pricing .main_pricing_conatiner.highlight_pricing .mt_btn_color {
    background: #FFFFFF;
    color: #212529;
}

#mt_pricing .main_pricing_conatiner {
    background: #FFFFFF none repeat scroll 0 0;
    overflow: hidden;
    -webkit-box-shadow: 2px 2px 5px 0 rgba(204, 204, 204, 0.61);
    -moz-box-shadow: 2px 2px 5px 0 rgba(204, 204, 204, 0.61);
    -o-box-shadow: 2px 2px 5px 0 rgba(204, 204, 204, 0.61);
    -ms-box-shadow: 2px 2px 5px 0 rgba(204, 204, 204, 0.61);
    box-shadow: 2px 2px 5px 0 rgba(204, 204, 204, 0.61);
}

@media only screen and (max-width: 991px) {
    #mt_pricing .main_pricing_conatiner {
        margin-bottom: 40px;
    }
}

#mt_pricing .main_pricing_conatiner:hover a {
    color: #f9f9f9;
    background-color: #444444 !important;
    transition: all 0.5s ease;
    text-shadow: initial;
    -ms-box-shadow: -1px 4px 36px 0 rgba(204, 204, 204, 0.61);
    -o-box-shadow: -1px 4px 36px 0 rgba(204, 204, 204, 0.61);
    -webkit-box-shadow: -1px 4px 36px 0 rgba(204, 204, 204, 0.61);
    -moz-box-shadow: -1px 4px 36px 0 rgba(204, 204, 204, 0.61);
    box-shadow: -1px 4px 36px 0 rgba(204, 204, 204, 0.61);
}

#mt_pricing .main_pricing_conatiner .price {
    padding: 35px 0 0;
    text-align: center;
    position: relative;
}

#mt_pricing .main_pricing_conatiner .price h2 {
    font-weight: 500;
    margin-bottom: 5px;
    color: #212529;
}

@media only screen and (max-width: 480px) {
    #mt_pricing .main_pricing_conatiner .price h2 {
        font-size: 24px;
        margin-bottom: 0;
        margin-top: 0;
    }
}

#mt_pricing .main_pricing_conatiner .price h2 .price_icon {
    display: block;
    margin-bottom: 6px;
}

#mt_pricing .main_pricing_conatiner .price h2 .price_icon i {
    color: #212529;
    font-size: 65px;
}

#mt_pricing .main_pricing_conatiner .price .price_tag {
    font-size: 48px;
    font-weight: 500;
    color: #212529;
    position: relative;
}

@media only screen and (max-width: 480px) {
    #mt_pricing .main_pricing_conatiner .price .price_tag {
        font-size: 40px;
    }
}

#mt_pricing .main_pricing_conatiner .price .price_tag .currency {
    font-size: 28px;
    left: -18px;
    position: absolute;
}

#mt_pricing .main_pricing_conatiner .price .per_month {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #212529;
}

#mt_pricing .main_pricing_conatiner .price_listing {
    padding: 25px 40px 8px;
}

#mt_pricing .main_pricing_conatiner .price_listing ul {
    text-align: center;
}

#mt_pricing .main_pricing_conatiner .price_listing ul li {
    margin-bottom: 15px;
}

#mt_pricing .main_pricing_conatiner .price_listing ul li:before {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

@media only screen and (max-width: 480px) {
    #mt_pricing .main_pricing_conatiner .price_listing {
        padding: 30px 10px 25px 10px;
    }
}

#mt_pricing .main_pricing_conatiner .choose_plan_btn {
    text-align: center;
    padding-bottom: 40px;
}

#mt_pricing .main_pricing_conatiner .choose_plan_btn .mt_btn_white {
    background: #f9f9f9;
    height: 55px;
    line-height: 55px;
    padding: 0;
    text-align: center;
    width: 55px;
    border-color: #f9f9f9 !important;
    -webkit-box-shadow: 2px 2px 5px 0 rgba(204, 204, 204, 0.61);
    -moz-box-shadow: 2px 2px 5px 0 rgba(204, 204, 204, 0.61);
    -o-box-shadow: 2px 2px 5px 0 rgba(204, 204, 204, 0.61);
    -ms-box-shadow: 2px 2px 5px 0 rgba(204, 204, 204, 0.61);
    box-shadow: 2px 2px 5px 0 rgba(204, 204, 204, 0.61);
}

#mt_pricing .main_pricing_conatiner .choose_plan_btn .mt_btn_white i {
    font-size: 45px;
}


/* =========================== */


/*        End Pricing          */


/* =========================== */


/* ============================ */


/*            Profile
/* ============================ */

.profile_page .card {
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
}

.card-header {
    padding: 20px 25px;
    background-color: #fff;
}

.rounded-card img,
.user-img img {
    margin: 0 auto;
    display: block;
    width: 100%;
}

.user-img img {
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.follow-btn button:first-child,
.user-about i {
    margin-right: 10px;
}

.card-block {
    padding: 1.25rem;
}

.card-block.user-info {
    position: absolute;
    width: 100%;
}

.profile-bg-img {
    width: 100%;
    height: 195px;
    background-size: cover !important;
    background-position: center center !important;
    position: relative;
}

.profile-bg-img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.user-title {
    position: relative;
    bottom: -50px;
}

.user-title h2 {
    color: #fff;
    text-shadow: 1px 1px 4px #373a3c;
    font-size: 20px;
    margin-bottom: 0;
}

.profile-image img {
    border: 4px solid #fff;
}

.user-info .media-body,
.user-info .media-left {
    display: table-cell;
    vertical-align: middle;
}

.cover-btn {
    bottom: 15px;
    right: 35px;
    position: absolute;
}

.cover-profile .profile-bg-img {
    margin-bottom: 25px;
}

.groups-contact span {
    float: right;
}

.groups-contact span h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
    .wizard>.steps>ul>li {
        float: inherit;
        width: 100%;
    }
    figure.effect-steve h2 {
        margin-top: 0;
    }
    .cover-profile .profile-bg-img {
        height: 305px;
    }
    .cover-btn {
        float: none !important;
    }
    .card-block.user-info {
        position: inherit;
        text-align: center;
        margin-bottom: 20px;
    }
    .user-info .media-left,
    .user-info .media-body {
        display: block;
    }
    .cover-btn {
        position: inherit;
        float: none;
    }
    .cover-btn .btn:first-child {
        margin-right: 10px;
    }
    .user-info .user-title {
        position: initial;
        margin-bottom: 10px;
        margin-top: 10px;
    }
}


/* ============================ */


/*            End Profile
/* ============================ */


/* ============================ */


/*            Home
/* ============================ */

.morris-hover.morris-default-style {
    background: #d81616 !important;
}

.morris-hover.morris-default-style .morris-hover-point {
    background: #d81616 !important;
}

.card .card_icon_right {
    padding: 15px;
}

.card .card_icon_right .icon_rounded {
    width: 2rem;
    height: 2rem;
    padding: 12px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: inline-flex;
}

.card .card_icon_right .icon_rounded i {
    color: #fff;
}

.card .card_icon_right .icon_primary {
    background-color: #d81616;
}

.card .card_icon_right .icon_secondary {
    background-color: #74829c;
}

.card .card_icon_right .icon_success {
    background-color: #3fb504;
}

.card .card_icon_right .icon_warning {
    background-color: #f39a51;
}

.card .card_icon_right .icon_danger {
    background-color: #ec0877;
}

.card .card_icon_right .icon_dark {
    background-color: #444;
}

.card .card_icon_right .icon_light {
    background-color: #cdd4e0;
}

.widget-pie {
    background-color: #d81616;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.widget-pie__item:nth-child(2n) {
    background-color: rgba(255, 255, 255, 0.1);
}

.widget-pie__item {
    padding: 20px 0;
    text-align: center;
}

.widget-pie__title {
    color: #FFF;
}

.easy-pie-chart__value {
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    width: 100%;
    height: 100%;
}

.easy-pie-chart__value:after {
    content: "%";
    font-size: 12px;
}

.easy-pie-chart {
    display: inline-block;
    position: relative;
}

.circle-arrow-success-v2,
.circle-arrow-danger-v2 {
    width: 18px;
    height: 18px;
    border-radius: 100%;
    display: inline-block;
    background: #3fb504;
    text-align: center;
    margin-right: .25rem;
    line-height: 16px;
}

.circle-arrow-danger-v2 {
    background: #ec0877;
}

.circle-arrow-success-v2 i,
.circle-arrow-danger-v2 i {
    color: #ffffff;
    font-size: 10px;
}

#morris_line svg text {
    font-family: Montserrat;
}


/* ============================ */


/*            End Home
/* ============================ */


/* ============================ */


/*            To-do
/* ============================ */

.todo_container {
    margin: 0 auto;
}

.todo_container ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.todo_container li {
    background-color: #fff;
    border-bottom: 1px solid #f5f5f5;
    list-style: none none;
    margin: 0;
    padding: 0;
}

.todo_container li span {
    margin-left: 35px;
    font-size: 14px;
    vertical-align: middle;
    transition: all 0.2s linear;
}

[direction="rtl"] .todo_container li span {
    margin-left: auto;
    margin-right: 35px;
}

.todo_container label {
    cursor: pointer;
    display: block;
    line-height: 50px;
    position: relative;
    margin: 0 !important;
}

[direction="rtl"] .todo_container label {
    padding-left: 0;
    padding-right: 1.5rem;
}

.todo_container label:hover a {
    color: #EA5455;
}

.todo_container label a {
    color: #fff;
    display: inline-block;
    line-height: normal;
    height: 100%;
    text-align: center;
    text-decoration: none;
    width: 30px;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all 0.2s linear;
    padding: 18px 0px;
    font-size: 14px;
    position: absolute;
    right: 0;
}

[direction="rtl"] .todo_container label a {
    right: auto;
    left: 0;
}

.todo_container input[type=checkbox] {
    cursor: pointer;
    opacity: 0;
    position: absolute;
}

.todo_container input[type=checkbox]+i {
    background-color: #fff;
    border: 1px solid #e7e7e7;
    display: block;
    height: 20px;
    position: absolute;
    top: 15px;
    width: 20px;
    z-index: 1;
    border-radius: 3px;
}

.todo_container input[type=checkbox]:checked+i {
    background: #d81616;
    border-color: transparent;
}

.todo_container input[type=checkbox]:checked+i::after {
    content: "\f00c";
    font-family: 'fontAwesome';
    display: block;
    left: 1px;
    position: absolute;
    top: -15px;
    z-index: 2;
    color: #fff;
}

.todo_container input[type=checkbox]:checked~span {
    text-decoration: line-through;
    position: relative;
}

.todo_container input[type=text] {
    background-color: #fff;
    height: 50px;
    margin-top: 29px;
    border-radius: 3px;
}

.todo_container input[type=text]::placeholder {
    color: #454545;
}

.list_text {
    position: relative;
}

.list_text button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translate(0, -50%);
}

.list_text button:focus {
    border: 0;
    box-shadow: none;
}


/* ============================ */


/*            End To-do
/* ============================ */


/* ========================================= */


/* 		   	   Dark Theme Styling	     	 */


/* ========================================= */

body.darker {
    background: #1c1c2f;
    color: #fff;
}

.darker .todo_container input[type=text]::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #959cb6;
}

.darker .todo_container input[type=text]::-moz-placeholder {
    /* Firefox 19+ */
    color: #959cb6;
}

.darker .todo_container input[type=text]:-ms-input-placeholder {
    /* IE 10+ */
    color: #959cb6;
}

.darker .todo_container input[type=text]:-moz-placeholder {
    /* Firefox 18- */
    color: #959cb6;
}

.darker .page-container {
    background: #1c1c2f;
    color: #fff;
}

.darker .todo_container label a,
.darker .todo_container label span,
.darker .text-dark {
    color: #959cb6 !important;
}

.darker .main-content,
.darker .jsgrid-filter-row>.jsgrid-cell {
    background: #1c1c2f;
    color: #fff;
}

.darker .rt_nav_header.horizontal-layout .nav-bottom,
.darker .rt_nav_header.horizontal-layout .top_nav,
.darker .footer-area,
.darker .header-area {
    background: #1c1c35;
    border-bottom: 1px solid #32365a;
}

.darker .dropdown-item:focus,
.darker .dropdown-item:hover {
    background: #1c1c35;
}

.darker .card-header,
.darker .card-header a {
    background-color: #1c1c35;
    color: #fff;
}

.darker .card-header:before,
.darker .card-header a:before {
    color: #fff;
}

.darker .header-area .nav-btn span {
    background: #fff;
}

.darker .accordion .card-body,
.darker .page-item.disabled .page-link {
    background: #212143;
}

.darker .dropdown-divider,
.darker .table thead th,
.darker .table td,
.darker .table th,
.darker .accordion .card-body,
.darker .team_member,
.darker .modal-header,
.darker .modal-footer,
.darker .page-link,
.darker .popover-header,
.darker .grid-col,
.darker .fw-icons,
.darker .et-examples .box1 span,
.darker .et-examples .box1,
.darker .dropzone.dropzone-light,
.darker .form-control,
.darker .custom-select,
.darker .input-group-text,
.darker .custom-file,
.darker .custom-file-label,
.darker .jsgrid .jsgrid-edit-row input[type='text'],
.darker .jsgrid .jsgrid-edit-row input[type='number'],
.darker .jsgrid .jsgrid-edit-row input[type='password'],
.darker .jsgrid .jsgrid-edit-row input[type='tel'],
.darker .jsgrid .jsgrid-edit-row input[type='email'],
.darker .jsgrid .jsgrid-edit-row select,
.darker .jsgrid .jsgrid-edit-row textarea,
.darker .jsgrid .jsgrid-filter-row input[type='text'],
.darker .jsgrid .jsgrid-filter-row input[type='number'],
.darker .jsgrid .jsgrid-filter-row input[type='password'],
.darker .jsgrid .jsgrid-filter-row input[type='tel'],
.darker .jsgrid .jsgrid-filter-row input[type='email'],
.darker .jsgrid .jsgrid-filter-row select,
.darker .jsgrid .jsgrid-filter-row textarea,
.darker .jsgrid .jsgrid-insert-row input[type='text'],
.darker .jsgrid .jsgrid-insert-row input[type='number'],
.darker .jsgrid .jsgrid-insert-row input[type='password'],
.darker .jsgrid .jsgrid-insert-row input[type='tel'],
.darker .jsgrid .jsgrid-insert-row input[type='email'],
.darker .jsgrid .jsgrid-insert-row select,
.darker .jsgrid .jsgrid-insert-row textarea,
.darker .invoice-head,
.darker .mail_tabs,
.darker .mail_content,
.darker .header-area .search-box,
.darker .header-area .language_dropdown,
.darker .sidebar-menu .sidebar-header,
.darker .todo_container li {
    border-color: #32365a !important;
}

.darker .form-control,
.darker .custom-select,
.darker .custom-file,
.darker .custom-file-label,
.darker .jsgrid .jsgrid-edit-row input[type='text'],
.darker .jsgrid .jsgrid-edit-row input[type='number'],
.darker .jsgrid .jsgrid-edit-row input[type='password'],
.darker .jsgrid .jsgrid-edit-row input[type='tel'],
.darker .jsgrid .jsgrid-edit-row input[type='email'],
.darker .jsgrid .jsgrid-edit-row select,
.darker .jsgrid .jsgrid-edit-row textarea,
.darker .jsgrid .jsgrid-filter-row input[type='text'],
.darker .jsgrid .jsgrid-filter-row input[type='number'],
.darker .jsgrid .jsgrid-filter-row input[type='password'],
.darker .jsgrid .jsgrid-filter-row input[type='tel'],
.darker .jsgrid .jsgrid-filter-row input[type='email'],
.darker .jsgrid .jsgrid-filter-row select,
.darker .jsgrid .jsgrid-filter-row textarea,
.darker .jsgrid .jsgrid-insert-row input[type='text'],
.darker .jsgrid .jsgrid-insert-row input[type='number'],
.darker .jsgrid .jsgrid-insert-row input[type='password'],
.darker .jsgrid .jsgrid-insert-row input[type='tel'],
.darker .jsgrid .jsgrid-insert-row input[type='email'],
.darker .jsgrid .jsgrid-insert-row select,
.darker .jsgrid .jsgrid-insert-row textarea,
.darker .mail_tabs li a {
    background-color: #32365a;
    color: #fff;
}

.darker .table thead.bg-light th,
.darker .nofity-list .notify-thumb i {
    color: #444 !important;
}

.darker .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item>.nav-link,
.darker .rt_nav_header.horizontal-layout .menu_icon,
.darker .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item .submenu ul li a,
.darker .dropdown-menu,
.darker .dropdown-menu h1,
.darker .dropdown-menu h2,
.darker .dropdown-menu h3,
.darker .dropdown-menu h4,
.darker .dropdown-menu h5,
.darker .dropdown-menu h6,
.darker .dropdown-menu p,
.darker .dropdown-menu a,
.darker .dropdown-menu a i,
.darker .rt_subheader .rt_subheader_main .rt_breadcrumb .rt_breadcrumb_separator,
.darker .country_vists .country_vists_item .country_vists_wrapper .country_vists_value,
.darker .dropdown-toggle.arrow-none.card-drop,
.darker .avg_sale_card p,
.darker .table td,
.darker .table th,
.darker .accordion .card-body,
.darker .accordion .card-body p,
.darker .card_with_image .blog_card_description .blog_data p,
.darker .text-muted,
.darker .pagination li a,
.darker .form-control-feedback,
.darker .invoice-date li {
    color: #959cb6 !important;
}

.darker .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item:hover>.nav-link i,
.darker .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item:hover>.nav-link .menu-title,
.darker .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item.mega-menu .submenu .category-heading,
.darker .rt_subheader .rt_subheader_main .rt_breadcrumb .breadcrumb_link:hover,
.darker .rt_subheader .rt_subheader_main .rt_breadcrumb .rt_breadcrumb_home_icon:hover i,
.darker .card .card_title,
.darker .country_vists .country_vists_title,
.darker .rt_subheader .rt_subheader_main .rt_subheader_title,
.darker .avg_sale_card h1,
.darker .avg_sale_card h4,
.darker .table thead th,
.darker .card_with_image .blog_card_date h3,
.darker .card_with_image .blog_card_description .blog_data h3,
.darker .image_card .card_title,
.darker p,
.darker .team_member .member_name span,
.darker .team_member ul li i,
.darker .article_card h5,
.darker .article_card h3 a,
.darker .article_card footer .date,
.darker .article_card footer .icons,
.darker .nav-tabs .nav-link,
.darker .blockquote-footer,
.darker .close,
.darker .popover-body,
.darker .grid-col,
.darker .fw-icons a,
.darker .icon-section .icon-container span.icon-name,
.darker .icon-laptop:before,
.darker .et-examples .box1,
.darker .swal2-popup .swal2-title,
.darker .swal2-popup #swal2-content,
.darker .swal2-popup .swal2-input,
.darker .input-group-text,
.darker .dataTables_wrapper .dataTables_length,
.darker .dataTables_wrapper .dataTables_filter,
.darker .dataTables_wrapper .dataTables_info,
.darker .dataTables_wrapper .dataTables_processing,
.darker .dataTables_wrapper .dataTables_paginate,
.darker .invoice-head .iv-left span,
.darker .invoice-head span,
.darker #mt_pricing .main_pricing_conatiner .price h2 .price_icon i,
.darker #mt_pricing .main_pricing_conatiner .price h2,
.darker #mt_pricing .main_pricing_conatiner .price .price_tag,
.darker #mt_pricing .main_pricing_conatiner .price .per_month,
.darker .form-gp input,
.darker .header-area .search-box form input {
    color: #fff !important;
}

.darker .header-area {
    border-radius: 0;
    border: 1px solid #32365a;
}

.darker .header-area .nav-btn {
    background: #3f446b;
}

.darker .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item.active>.nav-link .menu-title,
.darker .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item.active>.nav-link i,
.darker .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item.active>.nav-link .menu-arrow,
.darker .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item .submenu ul li a:hover i,
.darker .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item .submenu ul li a:hover,
.darker .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item .submenu ul li.active a,
.darker .image_card .card_author,
.darker .team_member .member_name h3,
.darker .fw-icons a i,
.darker label,
.darker .notification-area li:hover>i,
.darker .dropdown.show>i {
    color: #fff !important;
    font-weight: bold !important;
}

.darker .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item.mega-menu .submenu,
.darker .rt_nav_header.horizontal-layout .nav-bottom .page-navigation>.nav-item:not(.mega-menu) .submenu,
.darker .dropdown-menu,
.darker .total_sales_sec,
.darker .list-group-item,
.darker .page-link,
.darker .popover-header,
.darker .grid-col,
.darker table.dataTable thead th,
.darker table.dataTable thead td,
.darker .jsgrid-header-row>.jsgrid-header-cell,
.darker .jsgrid-row>.jsgrid-cell,
.darker #mt_pricing .main_pricing_conatiner,
.darker .login-form-body,
.darker .mail_tabs li.active a,
.darker .mail_tabs li a:hover,
.darker .mail_content,
.darker .metismenu>li:hover>a,
.darker .metismenu>li.active>a svg,
.darker .metismenu>li.active>a {
    background: #181831;
}

.darker .input-group-text {
    background: #181831 !important;
}

.darker .lock-screen .login-form {
    background: transparent;
}

.darker .dropzone {
    background: #181831 !important;
}

.darker .rt_subheader,
.darker .card,
.darker .card_with_image,
.darker .image_card .card__info,
.darker .team_member,
.darker .article_card figcaption,
.darker .modal-content,
.darker .popover,
.darker .swal2-popup,
.darker table.dataTable tbody tr,
.darker .jsgrid-alt-row>.jsgrid-cell,
.darker .login-form,
.darker .sidebar-menu,
.darker .sidebar-menu .sidebar-header,
.darker .nofity-list a:hover,
.darker .todo_container li,
.darker .todo_container input[type=text] {
    background: #242742;
}

.darker .total_sales_sec p,
.darker .total_sales_sec span,
.darker .total_sales_sec h1,
.darker .total_sales_sec .h1,
.darker .total_sales_sec h2,
.darker .total_sales_sec .h2,
.darker .total_sales_sec h3,
.darker .total_sales_sec .h3,
.darker .total_sales_sec h4,
.darker .total_sales_sec .h4,
.darker .total_sales_sec h5,
.darker .total_sales_sec .h5,
.darker .total_sales_sec h6,
.darker .total_sales_sec .h6,
.darker .total_sales_sec small {
    color: #959cb6 !important;
}

.darker .recent_activity p,
.darker .recent_activity span,
.darker .recent_activity h1,
.darker .recent_activity .h1,
.darker .recent_activity h2,
.darker .recent_activity .h2,
.darker .recent_activity h3,
.darker .recent_activity .h3,
.darker .recent_activity h4,
.darker .recent_activity .h4,
.darker .recent_activity h5,
.darker .recent_activity .h5,
.darker .recent_activity h6,
.darker .recent_activity .h6,
.darker .recent_activity small {
    color: #959cb6 !important;
}

.darker h1,
.darker .h1,
.darker h2,
.darker .h2,
.darker h3,
.darker .h3,
.darker h4,
.darker .h4,
.darker h5,
.darker .h5,
.darker h6,
.darker .h6,
.darker cite {
    color: #fff;
}

.darker #country_map a {
    color: #959cb6 !important;
}

.darker .team_member ul li:hover {
    background: transparent;
    border-color: transparent;
}

.fs-13 {
    font-size: 13px;
}


/*# sourceMappingURL=style.css.map */
