﻿@charset "UTF-8";
@import'_root.min.css';
@import'sweetoveride.min.css';

.loader {
    position: absolute;
    left: 44%;
    top: 50%;
    z-index: 9999;
    width: 150px;
    height: 150px;
    border: 4px solid var(--loader-border);
    border-radius: 50%;
    border-top: 4px solid var(--loader-backgrond);
    width: 50px;
    height: 50px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.loaderWrapper {
    z-index: 100;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(255,255,255,.3);
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s;
}

@-webkit-keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0;
    }

    to {
        bottom: 0;
        opacity: 1;
    }
}

@keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0;
    }

    to {
        bottom: 0;
        opacity: 1;
    }
}

.overlay {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.5);
    z-index: 2;
}

@font-face {
    font-family: FontAwesome;
    src: url(/Content/fonts/fontawesome-webfont.eot?v=4.7.0);
    src: url(/Content/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format("embedded-opentype"),url(/Content/fonts/fontawesome-webfont.woff2?v=4.7.0) format("woff2"),url(/Content/fonts/fontawesome-webfont.woff?v=4.7.0) format("woff"),url(/Content/fonts/fontawesome-webfont.ttf?v=4.7.0) format("truetype"),url(/Content/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format("svg");
    font-weight: 400;
    font-style: normal;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%;
}

.fa-2x {
    font-size: 2em;
}

.fa-3x {
    font-size: 3em;
}

.fa-4x {
    font-size: 4em;
}

.fa-5x {
    font-size: 5em;
}

.fa-fw {
    width: 1.28571429em;
    text-align: center;
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none;
}

    .fa-ul > li {
        position: relative;
    }

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: .14285714em;
    text-align: center;
}

    .fa-li.fa-lg {
        left: -1.85714286em;
    }

.fa-border {
    padding: .2em .25em .15em;
    border: solid .08em #eee;
    border-radius: .1em;
}

.fa-pull-left {
    float: left;
}

.fa-pull-right {
    float: right;
}

.fa.fa-pull-left {
    margin-right: .3em;
}

.fa.fa-pull-right {
    margin-left: .3em;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.fa.pull-left {
    margin-right: .3em;
}

.fa.pull-right {
    margin-left: .3em;
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.fa-rotate-90 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.fa-rotate-180 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fa-rotate-270 {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.fa-flip-horizontal {
    -webkit-transform: scale(-1,1);
    -ms-transform: scale(-1,1);
    transform: scale(-1,1);
}

.fa-flip-vertical {
    -webkit-transform: scale(1,-1);
    -ms-transform: scale(1,-1);
    transform: scale(1,-1);
}

:root .fa-flip-horizontal, :root .fa-flip-vertical, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-rotate-90 {
    filter: none;
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle;
}

.fa-stack-1x, .fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
}

.fa-stack-1x {
    line-height: inherit;
}

.fa-stack-2x {
    font-size: 2em;
}

.fa-inverse {
    color: #fff;
}

.fa-glass:before {
    content: "";
}

.fa-music:before {
    content: "";
}

.fa-search:before {
    content: "";
}

.fa-envelope-o:before {
    content: "";
}

.fa-heart:before {
    content: "";
}

.fa-star:before {
    content: "";
}

.fa-star-o:before {
    content: "";
}

.fa-user:before {
    content: "";
}

.fa-film:before {
    content: "";
}

.fa-th-large:before {
    content: "";
}

.fa-th:before {
    content: "";
}

.fa-th-list:before {
    content: "";
}

.fa-check:before {
    content: "";
}

.fa-close:before, .fa-remove:before, .fa-times:before {
    content: "";
}

.fa-search-plus:before {
    content: "";
}

.fa-search-minus:before {
    content: "";
}

.fa-power-off:before {
    content: "";
}

.fa-signal:before {
    content: "";
}

.fa-cog:before, .fa-gear:before {
    content: "";
}

.fa-trash-o:before {
    content: "";
}

.fa-home:before {
    content: "";
}

.fa-file-o:before {
    content: "";
}

.fa-clock-o:before {
    content: "";
}

.fa-road:before {
    content: "";
}

.fa-download:before {
    content: "";
}

.fa-arrow-circle-o-down:before {
    content: "";
}

.fa-arrow-circle-o-up:before {
    content: "";
}

.fa-inbox:before {
    content: "";
}

.fa-play-circle-o:before {
    content: "";
}

.fa-repeat:before, .fa-rotate-right:before {
    content: "";
}

.fa-refresh:before {
    content: "";
}

.fa-list-alt:before {
    content: "";
}

.fa-lock:before {
    content: "";
}

.fa-flag:before {
    content: "";
}

.fa-headphones:before {
    content: "";
}

.fa-volume-off:before {
    content: "";
}

.fa-volume-down:before {
    content: "";
}

.fa-volume-up:before {
    content: "";
}

.fa-qrcode:before {
    content: "";
}

.fa-barcode:before {
    content: "";
}

.fa-tag:before {
    content: "";
}

.fa-tags:before {
    content: "";
}

.fa-book:before {
    content: "";
}

.fa-bookmark:before {
    content: "";
}

.fa-print:before {
    content: "";
}

.fa-camera:before {
    content: "";
}

.fa-font:before {
    content: "";
}

.fa-bold:before {
    content: "";
}

.fa-italic:before {
    content: "";
}

.fa-text-height:before {
    content: "";
}

.fa-text-width:before {
    content: "";
}

.fa-align-left:before {
    content: "";
}

.fa-align-center:before {
    content: "";
}

.fa-align-right:before {
    content: "";
}

.fa-align-justify:before {
    content: "";
}

.fa-list:before {
    content: "";
}

.fa-dedent:before, .fa-outdent:before {
    content: "";
}

.fa-indent:before {
    content: "";
}

.fa-video-camera:before {
    content: "";
}

.fa-image:before, .fa-photo:before, .fa-picture-o:before {
    content: "";
}

.fa-pencil:before {
    content: "";
}

.fa-map-marker:before {
    content: "";
}

.fa-adjust:before {
    content: "";
}

.fa-tint:before {
    content: "";
}

.fa-edit:before, .fa-pencil-square-o:before {
    content: "";
}

.fa-share-square-o:before {
    content: "";
}

.fa-check-square-o:before {
    content: "";
}

.fa-arrows:before {
    content: "";
}

.fa-step-backward:before {
    content: "";
}

.fa-fast-backward:before {
    content: "";
}

.fa-backward:before {
    content: "";
}

.fa-play:before {
    content: "";
}

.fa-pause:before {
    content: "";
}

.fa-stop:before {
    content: "";
}

.fa-forward:before {
    content: "";
}

.fa-fast-forward:before {
    content: "";
}

.fa-step-forward:before {
    content: "";
}

.fa-eject:before {
    content: "";
}

.fa-chevron-left:before {
    content: "";
}

.fa-chevron-right:before {
    content: "";
}

.fa-plus-circle:before {
    content: "";
}

.fa-minus-circle:before {
    content: "";
}

.fa-times-circle:before {
    content: "";
}

.fa-check-circle:before {
    content: "";
}

.fa-question-circle:before {
    content: "";
}

.fa-info-circle:before {
    content: "";
}

.fa-crosshairs:before {
    content: "";
}

.fa-times-circle-o:before {
    content: "";
}

.fa-check-circle-o:before {
    content: "";
}

.fa-ban:before {
    content: "";
}

.fa-arrow-left:before {
    content: "";
}

.fa-arrow-right:before {
    content: "";
}

.fa-arrow-up:before {
    content: "";
}

.fa-arrow-down:before {
    content: "";
}

.fa-mail-forward:before, .fa-share:before {
    content: "";
}

.fa-expand:before {
    content: "";
}

.fa-compress:before {
    content: "";
}

.fa-plus:before {
    content: "";
}

.fa-minus:before {
    content: "";
}

.fa-asterisk:before {
    content: "";
}

.fa-exclamation-circle:before {
    content: "";
}

.fa-gift:before {
    content: "";
}

.fa-leaf:before {
    content: "";
}

.fa-fire:before {
    content: "";
}

.fa-eye:before {
    content: "";
}

.fa-eye-slash:before {
    content: "";
}

.fa-exclamation-triangle:before, .fa-warning:before {
    content: "";
}

.fa-plane:before {
    content: "";
}

.fa-calendar:before {
    content: "";
}

.fa-random:before {
    content: "";
}

.fa-comment:before {
    content: "";
}

.fa-magnet:before {
    content: "";
}

.fa-chevron-up:before {
    content: "";
}

.fa-chevron-down:before {
    content: "";
}

.fa-retweet:before {
    content: "";
}

.fa-shopping-cart:before {
    content: "";
}

.fa-folder:before {
    content: "";
}

.fa-folder-open:before {
    content: "";
}

.fa-arrows-v:before {
    content: "";
}

.fa-arrows-h:before {
    content: "";
}

.fa-bar-chart-o:before, .fa-bar-chart:before {
    content: "";
}

.fa-twitter-square:before {
    content: "";
}

.fa-facebook-square:before {
    content: "";
}

.fa-camera-retro:before {
    content: "";
}

.fa-key:before {
    content: "";
}

.fa-cogs:before, .fa-gears:before {
    content: "";
}

.fa-comments:before {
    content: "";
}

.fa-thumbs-o-up:before {
    content: "";
}

.fa-thumbs-o-down:before {
    content: "";
}

.fa-star-half:before {
    content: "";
}

.fa-heart-o:before {
    content: "";
}

.fa-sign-out:before {
    content: "";
}

.fa-linkedin-square:before {
    content: "";
}

.fa-thumb-tack:before {
    content: "";
}

.fa-external-link:before {
    content: "";
}

.fa-sign-in:before {
    content: "";
}

.fa-trophy:before {
    content: "";
}

.fa-github-square:before {
    content: "";
}

.fa-upload:before {
    content: "";
}

.fa-lemon-o:before {
    content: "";
}

.fa-phone:before {
    content: "";
}

.fa-square-o:before {
    content: "";
}

.fa-bookmark-o:before {
    content: "";
}

.fa-phone-square:before {
    content: "";
}

.fa-twitter:before {
    content: "";
}

.fa-facebook-f:before, .fa-facebook:before {
    content: "";
}

.fa-github:before {
    content: "";
}

.fa-unlock:before {
    content: "";
}

.fa-credit-card:before {
    content: "";
}

.fa-feed:before, .fa-rss:before {
    content: "";
}

.fa-hdd-o:before {
    content: "";
}

.fa-bullhorn:before {
    content: "";
}

.fa-bell:before {
    content: "";
}

.fa-certificate:before {
    content: "";
}

.fa-hand-o-right:before {
    content: "";
}

.fa-hand-o-left:before {
    content: "";
}

.fa-hand-o-up:before {
    content: "";
}

.fa-hand-o-down:before {
    content: "";
}

.fa-arrow-circle-left:before {
    content: "";
}

.fa-arrow-circle-right:before {
    content: "";
}

.fa-arrow-circle-up:before {
    content: "";
}

.fa-arrow-circle-down:before {
    content: "";
}

.fa-globe:before {
    content: "";
}

.fa-wrench:before {
    content: "";
}

.fa-tasks:before {
    content: "";
}

.fa-filter:before {
    content: "";
}

.fa-briefcase:before {
    content: "";
}

.fa-arrows-alt:before {
    content: "";
}

.fa-group:before, .fa-users:before {
    content: "";
}

.fa-chain:before, .fa-link:before {
    content: "";
}

.fa-cloud:before {
    content: "";
}

.fa-flask:before {
    content: "";
}

.fa-cut:before, .fa-scissors:before {
    content: "";
}

.fa-copy:before, .fa-files-o:before {
    content: "";
}

.fa-paperclip:before {
    content: "";
}

.fa-floppy-o:before, .fa-save:before {
    content: "";
}

.fa-square:before {
    content: "";
}

.fa-bars:before, .fa-navicon:before, .fa-reorder:before {
    content: "";
}

.fa-list-ul:before {
    content: "";
}

.fa-list-ol:before {
    content: "";
}

.fa-strikethrough:before {
    content: "";
}

.fa-underline:before {
    content: "";
}

.fa-table:before {
    content: "";
}

.fa-magic:before {
    content: "";
}

.fa-truck:before {
    content: "";
}

.fa-pinterest:before {
    content: "";
}

.fa-pinterest-square:before {
    content: "";
}

.fa-google-plus-square:before {
    content: "";
}

.fa-google-plus:before {
    content: "";
}

.fa-money:before {
    content: "";
}

.fa-caret-down:before {
    content: "";
}

.fa-caret-up:before {
    content: "";
}

.fa-caret-left:before {
    content: "";
}

.fa-caret-right:before {
    content: "";
}

.fa-columns:before {
    content: "";
}

.fa-sort:before, .fa-unsorted:before {
    content: "";
}

.fa-sort-desc:before, .fa-sort-down:before {
    content: "";
}

.fa-sort-asc:before, .fa-sort-up:before {
    content: "";
}

.fa-envelope:before {
    content: "";
}

.fa-linkedin:before {
    content: "";
}

.fa-rotate-left:before, .fa-undo:before {
    content: "";
}

.fa-gavel:before, .fa-legal:before {
    content: "";
}

.fa-dashboard:before, .fa-tachometer:before {
    content: "";
}

.fa-comment-o:before {
    content: "";
}

.fa-comments-o:before {
    content: "";
}

.fa-bolt:before, .fa-flash:before {
    content: "";
}

.fa-sitemap:before {
    content: "";
}

.fa-umbrella:before {
    content: "";
}

.fa-clipboard:before, .fa-paste:before {
    content: "";
}

.fa-lightbulb-o:before {
    content: "";
}

.fa-exchange:before {
    content: "";
}

.fa-cloud-download:before {
    content: "";
}

.fa-cloud-upload:before {
    content: "";
}

.fa-user-md:before {
    content: "";
}

.fa-stethoscope:before {
    content: "";
}

.fa-suitcase:before {
    content: "";
}

.fa-bell-o:before {
    content: "";
}

.fa-coffee:before {
    content: "";
}

.fa-cutlery:before {
    content: "";
}

.fa-file-text-o:before {
    content: "";
}

.fa-building-o:before {
    content: "";
}

.fa-hospital-o:before {
    content: "";
}

.fa-ambulance:before {
    content: "";
}

.fa-medkit:before {
    content: "";
}

.fa-fighter-jet:before {
    content: "";
}

.fa-beer:before {
    content: "";
}

.fa-h-square:before {
    content: "";
}

.fa-plus-square:before {
    content: "";
}

.fa-angle-double-left:before {
    content: "";
}

.fa-angle-double-right:before {
    content: "";
}

.fa-angle-double-up:before {
    content: "";
}

.fa-angle-double-down:before {
    content: "";
}

.fa-angle-left:before {
    content: "";
}

.fa-angle-right:before {
    content: "";
}

.fa-angle-up:before {
    content: "";
}

.fa-angle-down:before {
    content: "";
}

.fa-desktop:before {
    content: "";
}

.fa-laptop:before {
    content: "";
}

.fa-tablet:before {
    content: "";
}

.fa-mobile-phone:before, .fa-mobile:before {
    content: "";
}

.fa-circle-o:before {
    content: "";
}

.fa-quote-left:before {
    content: "";
}

.fa-quote-right:before {
    content: "";
}

.fa-spinner:before {
    content: "";
}

.fa-circle:before {
    content: "";
}

.fa-mail-reply:before, .fa-reply:before {
    content: "";
}

.fa-github-alt:before {
    content: "";
}

.fa-folder-o:before {
    content: "";
}

.fa-folder-open-o:before {
    content: "";
}

.fa-smile-o:before {
    content: "";
}

.fa-frown-o:before {
    content: "";
}

.fa-meh-o:before {
    content: "";
}

.fa-gamepad:before {
    content: "";
}

.fa-keyboard-o:before {
    content: "";
}

.fa-flag-o:before {
    content: "";
}

.fa-flag-checkered:before {
    content: "";
}

.fa-terminal:before {
    content: "";
}

.fa-code:before {
    content: "";
}

.fa-mail-reply-all:before, .fa-reply-all:before {
    content: "";
}

.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
    content: "";
}

.fa-location-arrow:before {
    content: "";
}

.fa-crop:before {
    content: "";
}

.fa-code-fork:before {
    content: "";
}

.fa-chain-broken:before, .fa-unlink:before {
    content: "";
}

.fa-question:before {
    content: "";
}

.fa-info:before {
    content: "";
}

.fa-exclamation:before {
    content: "";
}

.fa-superscript:before {
    content: "";
}

.fa-subscript:before {
    content: "";
}

.fa-eraser:before {
    content: "";
}

.fa-puzzle-piece:before {
    content: "";
}

.fa-microphone:before {
    content: "";
}

.fa-microphone-slash:before {
    content: "";
}

.fa-shield:before {
    content: "";
}

.fa-calendar-o:before {
    content: "";
}

.fa-fire-extinguisher:before {
    content: "";
}

.fa-rocket:before {
    content: "";
}

.fa-maxcdn:before {
    content: "";
}

.fa-chevron-circle-left:before {
    content: "";
}

.fa-chevron-circle-right:before {
    content: "";
}

.fa-chevron-circle-up:before {
    content: "";
}

.fa-chevron-circle-down:before {
    content: "";
}

.fa-html5:before {
    content: "";
}

.fa-css3:before {
    content: "";
}

.fa-anchor:before {
    content: "";
}

.fa-unlock-alt:before {
    content: "";
}

.fa-bullseye:before {
    content: "";
}

.fa-ellipsis-h:before {
    content: "";
}

.fa-ellipsis-v:before {
    content: "";
}

.fa-rss-square:before {
    content: "";
}

.fa-play-circle:before {
    content: "";
}

.fa-ticket:before {
    content: "";
}

.fa-minus-square:before {
    content: "";
}

.fa-minus-square-o:before {
    content: "";
}

.fa-level-up:before {
    content: "";
}

.fa-level-down:before {
    content: "";
}

.fa-check-square:before {
    content: "";
}

.fa-pencil-square:before {
    content: "";
}

.fa-external-link-square:before {
    content: "";
}

.fa-share-square:before {
    content: "";
}

.fa-compass:before {
    content: "";
}

.fa-caret-square-o-down:before, .fa-toggle-down:before {
    content: "";
}

.fa-caret-square-o-up:before, .fa-toggle-up:before {
    content: "";
}

.fa-caret-square-o-right:before, .fa-toggle-right:before {
    content: "";
}

.fa-eur:before, .fa-euro:before {
    content: "";
}

.fa-gbp:before {
    content: "";
}

.fa-dollar:before, .fa-usd:before {
    content: "";
}

.fa-inr:before, .fa-rupee:before {
    content: "";
}

.fa-cny:before, .fa-jpy:before, .fa-rmb:before, .fa-yen:before {
    content: "";
}

.fa-rouble:before, .fa-rub:before, .fa-ruble:before {
    content: "";
}

.fa-krw:before, .fa-won:before {
    content: "";
}

.fa-bitcoin:before, .fa-btc:before {
    content: "";
}

.fa-file:before {
    content: "";
}

.fa-file-text:before {
    content: "";
}

.fa-sort-alpha-asc:before {
    content: "";
}

.fa-sort-alpha-desc:before {
    content: "";
}

.fa-sort-amount-asc:before {
    content: "";
}

.fa-sort-amount-desc:before {
    content: "";
}

.fa-sort-numeric-asc:before {
    content: "";
}

.fa-sort-numeric-desc:before {
    content: "";
}

.fa-thumbs-up:before {
    content: "";
}

.fa-thumbs-down:before {
    content: "";
}

.fa-youtube-square:before {
    content: "";
}

.fa-youtube:before {
    content: "";
}

.fa-xing:before {
    content: "";
}

.fa-xing-square:before {
    content: "";
}

.fa-youtube-play:before {
    content: "";
}

.fa-dropbox:before {
    content: "";
}

.fa-stack-overflow:before {
    content: "";
}

.fa-instagram:before {
    content: "";
}

.fa-flickr:before {
    content: "";
}

.fa-adn:before {
    content: "";
}

.fa-bitbucket:before {
    content: "";
}

.fa-bitbucket-square:before {
    content: "";
}

.fa-tumblr:before {
    content: "";
}

.fa-tumblr-square:before {
    content: "";
}

.fa-long-arrow-down:before {
    content: "";
}

.fa-long-arrow-up:before {
    content: "";
}

.fa-long-arrow-left:before {
    content: "";
}

.fa-long-arrow-right:before {
    content: "";
}

.fa-apple:before {
    content: "";
}

.fa-windows:before {
    content: "";
}

.fa-android:before {
    content: "";
}

.fa-linux:before {
    content: "";
}

.fa-dribbble:before {
    content: "";
}

.fa-skype:before {
    content: "";
}

.fa-foursquare:before {
    content: "";
}

.fa-trello:before {
    content: "";
}

.fa-female:before {
    content: "";
}

.fa-male:before {
    content: "";
}

.fa-gittip:before, .fa-gratipay:before {
    content: "";
}

.fa-sun-o:before {
    content: "";
}

.fa-moon-o:before {
    content: "";
}

.fa-archive:before {
    content: "";
}

.fa-bug:before {
    content: "";
}

.fa-vk:before {
    content: "";
}

.fa-weibo:before {
    content: "";
}

.fa-renren:before {
    content: "";
}

.fa-pagelines:before {
    content: "";
}

.fa-stack-exchange:before {
    content: "";
}

.fa-arrow-circle-o-right:before {
    content: "";
}

.fa-arrow-circle-o-left:before {
    content: "";
}

.fa-caret-square-o-left:before, .fa-toggle-left:before {
    content: "";
}

.fa-dot-circle-o:before {
    content: "";
}

.fa-wheelchair:before {
    content: "";
}

.fa-vimeo-square:before {
    content: "";
}

.fa-try:before, .fa-turkish-lira:before {
    content: "";
}

.fa-plus-square-o:before {
    content: "";
}

.fa-space-shuttle:before {
    content: "";
}

.fa-slack:before {
    content: "";
}

.fa-envelope-square:before {
    content: "";
}

.fa-wordpress:before {
    content: "";
}

.fa-openid:before {
    content: "";
}

.fa-bank:before, .fa-institution:before, .fa-university:before {
    content: "";
}

.fa-graduation-cap:before, .fa-mortar-board:before {
    content: "";
}

.fa-yahoo:before {
    content: "";
}

.fa-google:before {
    content: "";
}

.fa-reddit:before {
    content: "";
}

.fa-reddit-square:before {
    content: "";
}

.fa-stumbleupon-circle:before {
    content: "";
}

.fa-stumbleupon:before {
    content: "";
}

.fa-delicious:before {
    content: "";
}

.fa-digg:before {
    content: "";
}

.fa-pied-piper-pp:before {
    content: "";
}

.fa-pied-piper-alt:before {
    content: "";
}

.fa-drupal:before {
    content: "";
}

.fa-joomla:before {
    content: "";
}

.fa-language:before {
    content: "";
}

.fa-fax:before {
    content: "";
}

.fa-building:before {
    content: "";
}

.fa-child:before {
    content: "";
}

.fa-paw:before {
    content: "";
}

.fa-spoon:before {
    content: "";
}

.fa-cube:before {
    content: "";
}

.fa-cubes:before {
    content: "";
}

.fa-behance:before {
    content: "";
}

.fa-behance-square:before {
    content: "";
}

.fa-steam:before {
    content: "";
}

.fa-steam-square:before {
    content: "";
}

.fa-recycle:before {
    content: "";
}

.fa-automobile:before, .fa-car:before {
    content: "";
}

.fa-cab:before, .fa-taxi:before {
    content: "";
}

.fa-tree:before {
    content: "";
}

.fa-spotify:before {
    content: "";
}

.fa-deviantart:before {
    content: "";
}

.fa-soundcloud:before {
    content: "";
}

.fa-database:before {
    content: "";
}

.fa-file-pdf-o:before {
    content: "";
}

.fa-file-word-o:before {
    content: "";
}

.fa-file-excel-o:before {
    content: "";
}

.fa-file-powerpoint-o:before {
    content: "";
}

.fa-file-image-o:before, .fa-file-photo-o:before, .fa-file-picture-o:before {
    content: "";
}

.fa-file-archive-o:before, .fa-file-zip-o:before {
    content: "";
}

.fa-file-audio-o:before, .fa-file-sound-o:before {
    content: "";
}

.fa-file-movie-o:before, .fa-file-video-o:before {
    content: "";
}

.fa-file-code-o:before {
    content: "";
}

.fa-vine:before {
    content: "";
}

.fa-codepen:before {
    content: "";
}

.fa-jsfiddle:before {
    content: "";
}

.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-ring:before, .fa-life-saver:before, .fa-support:before {
    content: "";
}

.fa-circle-o-notch:before {
    content: "";
}

.fa-ra:before, .fa-rebel:before, .fa-resistance:before {
    content: "";
}

.fa-empire:before, .fa-ge:before {
    content: "";
}

.fa-git-square:before {
    content: "";
}

.fa-git:before {
    content: "";
}

.fa-hacker-news:before, .fa-y-combinator-square:before, .fa-yc-square:before {
    content: "";
}

.fa-tencent-weibo:before {
    content: "";
}

.fa-qq:before {
    content: "";
}

.fa-wechat:before, .fa-weixin:before {
    content: "";
}

.fa-paper-plane:before, .fa-send:before {
    content: "";
}

.fa-paper-plane-o:before, .fa-send-o:before {
    content: "";
}

.fa-history:before {
    content: "";
}

.fa-circle-thin:before {
    content: "";
}

.fa-header:before {
    content: "";
}

.fa-paragraph:before {
    content: "";
}

.fa-sliders:before {
    content: "";
}

.fa-share-alt:before {
    content: "";
}

.fa-share-alt-square:before {
    content: "";
}

.fa-bomb:before {
    content: "";
}

.fa-futbol-o:before, .fa-soccer-ball-o:before {
    content: "";
}

.fa-tty:before {
    content: "";
}

.fa-binoculars:before {
    content: "";
}

.fa-plug:before {
    content: "";
}

.fa-slideshare:before {
    content: "";
}

.fa-twitch:before {
    content: "";
}

.fa-yelp:before {
    content: "";
}

.fa-newspaper-o:before {
    content: "";
}

.fa-wifi:before {
    content: "";
}

.fa-calculator:before {
    content: "";
}

.fa-paypal:before {
    content: "";
}

.fa-google-wallet:before {
    content: "";
}

.fa-cc-visa:before {
    content: "";
}

.fa-cc-mastercard:before {
    content: "";
}

.fa-cc-discover:before {
    content: "";
}

.fa-cc-amex:before {
    content: "";
}

.fa-cc-paypal:before {
    content: "";
}

.fa-cc-stripe:before {
    content: "";
}

.fa-bell-slash:before {
    content: "";
}

.fa-bell-slash-o:before {
    content: "";
}

.fa-trash:before {
    content: "";
}

.fa-copyright:before {
    content: "";
}

.fa-at:before {
    content: "";
}

.fa-eyedropper:before {
    content: "";
}

.fa-paint-brush:before {
    content: "";
}

.fa-birthday-cake:before {
    content: "";
}

.fa-area-chart:before {
    content: "";
}

.fa-pie-chart:before {
    content: "";
}

.fa-line-chart:before {
    content: "";
}

.fa-lastfm:before {
    content: "";
}

.fa-lastfm-square:before {
    content: "";
}

.fa-toggle-off:before {
    content: "";
}

.fa-toggle-on:before {
    content: "";
}

.fa-bicycle:before {
    content: "";
}

.fa-bus:before {
    content: "";
}

.fa-ioxhost:before {
    content: "";
}

.fa-angellist:before {
    content: "";
}

.fa-cc:before {
    content: "";
}

.fa-ils:before, .fa-shekel:before, .fa-sheqel:before {
    content: "";
}

.fa-meanpath:before {
    content: "";
}

.fa-buysellads:before {
    content: "";
}

.fa-connectdevelop:before {
    content: "";
}

.fa-dashcube:before {
    content: "";
}

.fa-forumbee:before {
    content: "";
}

.fa-leanpub:before {
    content: "";
}

.fa-sellsy:before {
    content: "";
}

.fa-shirtsinbulk:before {
    content: "";
}

.fa-simplybuilt:before {
    content: "";
}

.fa-skyatlas:before {
    content: "";
}

.fa-cart-plus:before {
    content: "";
}

.fa-cart-arrow-down:before {
    content: "";
}

.fa-diamond:before {
    content: "";
}

.fa-ship:before {
    content: "";
}

.fa-user-secret:before {
    content: "";
}

.fa-motorcycle:before {
    content: "";
}

.fa-street-view:before {
    content: "";
}

.fa-heartbeat:before {
    content: "";
}

.fa-venus:before {
    content: "";
}

.fa-mars:before {
    content: "";
}

.fa-mercury:before {
    content: "";
}

.fa-intersex:before, .fa-transgender:before {
    content: "";
}

.fa-transgender-alt:before {
    content: "";
}

.fa-venus-double:before {
    content: "";
}

.fa-mars-double:before {
    content: "";
}

.fa-venus-mars:before {
    content: "";
}

.fa-mars-stroke:before {
    content: "";
}

.fa-mars-stroke-v:before {
    content: "";
}

.fa-mars-stroke-h:before {
    content: "";
}

.fa-neuter:before {
    content: "";
}

.fa-genderless:before {
    content: "";
}

.fa-facebook-official:before {
    content: "";
}

.fa-pinterest-p:before {
    content: "";
}

.fa-whatsapp:before {
    content: "";
}

.fa-server:before {
    content: "";
}

.fa-user-plus:before {
    content: "";
}

.fa-user-times:before {
    content: "";
}

.fa-bed:before, .fa-hotel:before {
    content: "";
}

.fa-viacoin:before {
    content: "";
}

.fa-train:before {
    content: "";
}

.fa-subway:before {
    content: "";
}

.fa-medium:before {
    content: "";
}

.fa-y-combinator:before, .fa-yc:before {
    content: "";
}

.fa-optin-monster:before {
    content: "";
}

.fa-opencart:before {
    content: "";
}

.fa-expeditedssl:before {
    content: "";
}

.fa-battery-4:before, .fa-battery-full:before, .fa-battery:before {
    content: "";
}

.fa-battery-3:before, .fa-battery-three-quarters:before {
    content: "";
}

.fa-battery-2:before, .fa-battery-half:before {
    content: "";
}

.fa-battery-1:before, .fa-battery-quarter:before {
    content: "";
}

.fa-battery-0:before, .fa-battery-empty:before {
    content: "";
}

.fa-mouse-pointer:before {
    content: "";
}

.fa-i-cursor:before {
    content: "";
}

.fa-object-group:before {
    content: "";
}

.fa-object-ungroup:before {
    content: "";
}

.fa-sticky-note:before {
    content: "";
}

.fa-sticky-note-o:before {
    content: "";
}

.fa-cc-jcb:before {
    content: "";
}

.fa-cc-diners-club:before {
    content: "";
}

.fa-clone:before {
    content: "";
}

.fa-balance-scale:before {
    content: "";
}

.fa-hourglass-o:before {
    content: "";
}

.fa-hourglass-1:before, .fa-hourglass-start:before {
    content: "";
}

.fa-hourglass-2:before, .fa-hourglass-half:before {
    content: "";
}

.fa-hourglass-3:before, .fa-hourglass-end:before {
    content: "";
}

.fa-hourglass:before {
    content: "";
}

.fa-hand-grab-o:before, .fa-hand-rock-o:before {
    content: "";
}

.fa-hand-paper-o:before, .fa-hand-stop-o:before {
    content: "";
}

.fa-hand-scissors-o:before {
    content: "";
}

.fa-hand-lizard-o:before {
    content: "";
}

.fa-hand-spock-o:before {
    content: "";
}

.fa-hand-pointer-o:before {
    content: "";
}

.fa-hand-peace-o:before {
    content: "";
}

.fa-trademark:before {
    content: "";
}

.fa-registered:before {
    content: "";
}

.fa-creative-commons:before {
    content: "";
}

.fa-gg:before {
    content: "";
}

.fa-gg-circle:before {
    content: "";
}

.fa-tripadvisor:before {
    content: "";
}

.fa-odnoklassniki:before {
    content: "";
}

.fa-odnoklassniki-square:before {
    content: "";
}

.fa-get-pocket:before {
    content: "";
}

.fa-wikipedia-w:before {
    content: "";
}

.fa-safari:before {
    content: "";
}

.fa-chrome:before {
    content: "";
}

.fa-firefox:before {
    content: "";
}

.fa-opera:before {
    content: "";
}

.fa-internet-explorer:before {
    content: "";
}

.fa-television:before, .fa-tv:before {
    content: "";
}

.fa-contao:before {
    content: "";
}

.fa-500px:before {
    content: "";
}

.fa-amazon:before {
    content: "";
}

.fa-calendar-plus-o:before {
    content: "";
}

.fa-calendar-minus-o:before {
    content: "";
}

.fa-calendar-times-o:before {
    content: "";
}

.fa-calendar-check-o:before {
    content: "";
}

.fa-industry:before {
    content: "";
}

.fa-map-pin:before {
    content: "";
}

.fa-map-signs:before {
    content: "";
}

.fa-map-o:before {
    content: "";
}

.fa-map:before {
    content: "";
}

.fa-commenting:before {
    content: "";
}

.fa-commenting-o:before {
    content: "";
}

.fa-houzz:before {
    content: "";
}

.fa-vimeo:before {
    content: "";
}

.fa-black-tie:before {
    content: "";
}

.fa-fonticons:before {
    content: "";
}

.fa-reddit-alien:before {
    content: "";
}

.fa-edge:before {
    content: "";
}

.fa-credit-card-alt:before {
    content: "";
}

.fa-codiepie:before {
    content: "";
}

.fa-modx:before {
    content: "";
}

.fa-fort-awesome:before {
    content: "";
}

.fa-usb:before {
    content: "";
}

.fa-product-hunt:before {
    content: "";
}

.fa-mixcloud:before {
    content: "";
}

.fa-scribd:before {
    content: "";
}

.fa-pause-circle:before {
    content: "";
}

.fa-pause-circle-o:before {
    content: "";
}

.fa-stop-circle:before {
    content: "";
}

.fa-stop-circle-o:before {
    content: "";
}

.fa-shopping-bag:before {
    content: "";
}

.fa-shopping-basket:before {
    content: "";
}

.fa-hashtag:before {
    content: "";
}

.fa-bluetooth:before {
    content: "";
}

.fa-bluetooth-b:before {
    content: "";
}

.fa-percent:before {
    content: "";
}

.fa-gitlab:before {
    content: "";
}

.fa-wpbeginner:before {
    content: "";
}

.fa-wpforms:before {
    content: "";
}

.fa-envira:before {
    content: "";
}

.fa-universal-access:before {
    content: "";
}

.fa-wheelchair-alt:before {
    content: "";
}

.fa-question-circle-o:before {
    content: "";
}

.fa-blind:before {
    content: "";
}

.fa-audio-description:before {
    content: "";
}

.fa-volume-control-phone:before {
    content: "";
}

.fa-braille:before {
    content: "";
}

.fa-assistive-listening-systems:before {
    content: "";
}

.fa-american-sign-language-interpreting:before, .fa-asl-interpreting:before {
    content: "";
}

.fa-deaf:before, .fa-deafness:before, .fa-hard-of-hearing:before {
    content: "";
}

.fa-glide:before {
    content: "";
}

.fa-glide-g:before {
    content: "";
}

.fa-sign-language:before, .fa-signing:before {
    content: "";
}

.fa-low-vision:before {
    content: "";
}

.fa-viadeo:before {
    content: "";
}

.fa-viadeo-square:before {
    content: "";
}

.fa-snapchat:before {
    content: "";
}

.fa-snapchat-ghost:before {
    content: "";
}

.fa-snapchat-square:before {
    content: "";
}

.fa-pied-piper:before {
    content: "";
}

.fa-first-order:before {
    content: "";
}

.fa-yoast:before {
    content: "";
}

.fa-themeisle:before {
    content: "";
}

.fa-google-plus-circle:before, .fa-google-plus-official:before {
    content: "";
}

.fa-fa:before, .fa-font-awesome:before {
    content: "";
}

.fa-handshake-o:before {
    content: "";
}

.fa-envelope-open:before {
    content: "";
}

.fa-envelope-open-o:before {
    content: "";
}

.fa-linode:before {
    content: "";
}

.fa-address-book:before {
    content: "";
}

.fa-address-book-o:before {
    content: "";
}

.fa-address-card:before, .fa-vcard:before {
    content: "";
}

.fa-address-card-o:before, .fa-vcard-o:before {
    content: "";
}

.fa-user-circle:before {
    content: "";
}

.fa-user-circle-o:before {
    content: "";
}

.fa-user-o:before {
    content: "";
}

.fa-id-badge:before {
    content: "";
}

.fa-drivers-license:before, .fa-id-card:before {
    content: "";
}

.fa-drivers-license-o:before, .fa-id-card-o:before {
    content: "";
}

.fa-quora:before {
    content: "";
}

.fa-free-code-camp:before {
    content: "";
}

.fa-telegram:before {
    content: "";
}

.fa-thermometer-4:before, .fa-thermometer-full:before, .fa-thermometer:before {
    content: "";
}

.fa-thermometer-3:before, .fa-thermometer-three-quarters:before {
    content: "";
}

.fa-thermometer-2:before, .fa-thermometer-half:before {
    content: "";
}

.fa-thermometer-1:before, .fa-thermometer-quarter:before {
    content: "";
}

.fa-thermometer-0:before, .fa-thermometer-empty:before {
    content: "";
}

.fa-shower:before {
    content: "";
}

.fa-bath:before, .fa-bathtub:before, .fa-s15:before {
    content: "";
}

.fa-podcast:before {
    content: "";
}

.fa-window-maximize:before {
    content: "";
}

.fa-window-minimize:before {
    content: "";
}

.fa-window-restore:before {
    content: "";
}

.fa-times-rectangle:before, .fa-window-close:before {
    content: "";
}

.fa-times-rectangle-o:before, .fa-window-close-o:before {
    content: "";
}

.fa-bandcamp:before {
    content: "";
}

.fa-grav:before {
    content: "";
}

.fa-etsy:before {
    content: "";
}

.fa-imdb:before {
    content: "";
}

.fa-ravelry:before {
    content: "";
}

.fa-eercast:before {
    content: "";
}

.fa-microchip:before {
    content: "";
}

.fa-snowflake-o:before {
    content: "";
}

.fa-superpowers:before {
    content: "";
}

.fa-wpexplorer:before {
    content: "";
}

.fa-meetup:before {
    content: "";
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

.fa, .fab, .fal, .far, .fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.fa-lg {
    font-size: 1.33333em;
    line-height: .75em;
    vertical-align: -.0667em;
}

.fa-xs {
    font-size: .75em;
}

.fa-sm {
    font-size: .875em;
}

.fa-1x {
    font-size: 1em;
}

.fa-2x {
    font-size: 2em;
}

.fa-3x {
    font-size: 3em;
}

.fa-4x {
    font-size: 4em;
}

.fa-5x {
    font-size: 5em;
}

.fa-6x {
    font-size: 6em;
}

.fa-7x {
    font-size: 7em;
}

.fa-8x {
    font-size: 8em;
}

.fa-9x {
    font-size: 9em;
}

.fa-10x {
    font-size: 10em;
}

.fa-fw {
    text-align: center;
    width: 1.25em;
}

.fa-ul {
    list-style-type: none;
    margin-left: 2.5em;
    padding-left: 0;
}

    .fa-ul > li {
        position: relative;
    }

.fa-li {
    left: -2em;
    position: absolute;
    text-align: center;
    width: 2em;
    line-height: inherit;
}

.fa-border {
    border: .08em solid #eee;
    border-radius: .1em;
    padding: .2em .25em .15em;
}

.fa-pull-left {
    float: left;
}

.fa-pull-right {
    float: right;
}

.fa.fa-pull-left, .fab.fa-pull-left, .fal.fa-pull-left, .far.fa-pull-left, .fas.fa-pull-left {
    margin-right: .3em;
}

.fa.fa-pull-right, .fab.fa-pull-right, .fal.fa-pull-right, .far.fa-pull-right, .fas.fa-pull-right {
    margin-left: .3em;
}

.fa-spin {
    animation: fa-spin 2s infinite linear;
}

.fa-pulse {
    animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
    0% {
        transform: rotate(0);
    }

    to {
        transform: rotate(1turn);
    }
}

.fa-rotate-90 {
    transform: rotate(90deg);
}

.fa-rotate-180 {
    transform: rotate(180deg);
}

.fa-rotate-270 {
    transform: rotate(270deg);
}

.fa-flip-horizontal {
    transform: scaleX(-1);
}

.fa-flip-vertical {
    transform: scaleY(-1);
}

.fa-flip-horizontal.fa-flip-vertical {
    transform: scale(-1);
}

:root .fa-flip-horizontal, :root .fa-flip-vertical, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-rotate-90 {
    -webkit-filter: none;
    filter: none;
}

.fa-stack {
    display: inline-block;
    height: 2em;
    line-height: 2em;
    position: relative;
    vertical-align: middle;
    width: 2em;
}

.fa-stack-1x, .fa-stack-2x {
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%;
}

.fa-stack-1x {
    line-height: inherit;
}

.fa-stack-2x {
    font-size: 2em;
}

.fa-inverse {
    color: #fff;
}

.fa-500px:before {
    content: "";
}

.fa-accessible-icon:before {
    content: "";
}

.fa-accusoft:before {
    content: "";
}

.fa-ad:before {
    content: "";
}

.fa-address-book:before {
    content: "";
}

.fa-address-card:before {
    content: "";
}

.fa-adjust:before {
    content: "";
}

.fa-adn:before {
    content: "";
}

.fa-adversal:before {
    content: "";
}

.fa-affiliatetheme:before {
    content: "";
}

.fa-air-freshener:before {
    content: "";
}

.fa-algolia:before {
    content: "";
}

.fa-align-center:before {
    content: "";
}

.fa-align-justify:before {
    content: "";
}

.fa-align-left:before {
    content: "";
}

.fa-align-right:before {
    content: "";
}

.fa-alipay:before {
    content: "";
}

.fa-allergies:before {
    content: "";
}

.fa-amazon:before {
    content: "";
}

.fa-amazon-pay:before {
    content: "";
}

.fa-ambulance:before {
    content: "";
}

.fa-american-sign-language-interpreting:before {
    content: "";
}

.fa-amilia:before {
    content: "";
}

.fa-anchor:before {
    content: "";
}

.fa-android:before {
    content: "";
}

.fa-angellist:before {
    content: "";
}

.fa-angle-double-down:before {
    content: "";
}

.fa-angle-double-left:before {
    content: "";
}

.fa-angle-double-right:before {
    content: "";
}

.fa-angle-double-up:before {
    content: "";
}

.fa-angle-down:before {
    content: "";
}

.fa-angle-left:before {
    content: "";
}

.fa-angle-right:before {
    content: "";
}

.fa-angle-up:before {
    content: "";
}

.fa-angry:before {
    content: "";
}

.fa-angrycreative:before {
    content: "";
}

.fa-angular:before {
    content: "";
}

.fa-ankh:before {
    content: "";
}

.fa-app-store:before {
    content: "";
}

.fa-app-store-ios:before {
    content: "";
}

.fa-apper:before {
    content: "";
}

.fa-apple:before {
    content: "";
}

.fa-apple-alt:before {
    content: "";
}

.fa-apple-pay:before {
    content: "";
}

.fa-archive:before {
    content: "";
}

.fa-archway:before {
    content: "";
}

.fa-arrow-alt-circle-down:before {
    content: "";
}

.fa-arrow-alt-circle-left:before {
    content: "";
}

.fa-arrow-alt-circle-right:before {
    content: "";
}

.fa-arrow-alt-circle-up:before {
    content: "";
}

.fa-arrow-circle-down:before {
    content: "";
}

.fa-arrow-circle-left:before {
    content: "";
}

.fa-arrow-circle-right:before {
    content: "";
}

.fa-arrow-circle-up:before {
    content: "";
}

.fa-arrow-down:before {
    content: "";
}

.fa-arrow-left:before {
    content: "";
}

.fa-arrow-right:before {
    content: "";
}

.fa-arrow-up:before {
    content: "";
}

.fa-arrows-alt:before {
    content: "";
}

.fa-arrows-alt-h:before {
    content: "";
}

.fa-arrows-alt-v:before {
    content: "";
}

.fa-assistive-listening-systems:before {
    content: "";
}

.fa-asterisk:before {
    content: "";
}

.fa-asymmetrik:before {
    content: "";
}

.fa-at:before {
    content: "";
}

.fa-atlas:before {
    content: "";
}

.fa-atom:before {
    content: "";
}

.fa-audible:before {
    content: "";
}

.fa-audio-description:before {
    content: "";
}

.fa-autoprefixer:before {
    content: "";
}

.fa-avianex:before {
    content: "";
}

.fa-aviato:before {
    content: "";
}

.fa-award:before {
    content: "";
}

.fa-aws:before {
    content: "";
}

.fa-backspace:before {
    content: "";
}

.fa-backward:before {
    content: "";
}

.fa-balance-scale:before {
    content: "";
}

.fa-ban:before {
    content: "";
}

.fa-band-aid:before {
    content: "";
}

.fa-bandcamp:before {
    content: "";
}

.fa-barcode:before {
    content: "";
}

.fa-bars:before {
    content: "";
}

.fa-baseball-ball:before {
    content: "";
}

.fa-basketball-ball:before {
    content: "";
}

.fa-bath:before {
    content: "";
}

.fa-battery-empty:before {
    content: "";
}

.fa-battery-full:before {
    content: "";
}

.fa-battery-half:before {
    content: "";
}

.fa-battery-quarter:before {
    content: "";
}

.fa-battery-three-quarters:before {
    content: "";
}

.fa-bed:before {
    content: "";
}

.fa-beer:before {
    content: "";
}

.fa-behance:before {
    content: "";
}

.fa-behance-square:before {
    content: "";
}

.fa-bell:before {
    content: "";
}

.fa-bell-slash:before {
    content: "";
}

.fa-bezier-curve:before {
    content: "";
}

.fa-bible:before {
    content: "";
}

.fa-bicycle:before {
    content: "";
}

.fa-bimobject:before {
    content: "";
}

.fa-binoculars:before {
    content: "";
}

.fa-birthday-cake:before {
    content: "";
}

.fa-bitbucket:before {
    content: "";
}

.fa-bitcoin:before {
    content: "";
}

.fa-bity:before {
    content: "";
}

.fa-black-tie:before {
    content: "";
}

.fa-blackberry:before {
    content: "";
}

.fa-blender:before {
    content: "";
}

.fa-blind:before {
    content: "";
}

.fa-blogger:before {
    content: "";
}

.fa-blogger-b:before {
    content: "";
}

.fa-bluetooth:before {
    content: "";
}

.fa-bluetooth-b:before {
    content: "";
}

.fa-bold:before {
    content: "";
}

.fa-bolt:before {
    content: "";
}

.fa-bomb:before {
    content: "";
}

.fa-bone:before {
    content: "";
}

.fa-bong:before {
    content: "";
}

.fa-book:before {
    content: "";
}

.fa-book-open:before {
    content: "";
}

.fa-book-reader:before {
    content: "";
}

.fa-bookmark:before {
    content: "";
}

.fa-bowling-ball:before {
    content: "";
}

.fa-box:before {
    content: "";
}

.fa-box-open:before {
    content: "";
}

.fa-boxes:before {
    content: "";
}

.fa-braille:before {
    content: "";
}

.fa-brain:before {
    content: "";
}

.fa-briefcase:before {
    content: "";
}

.fa-briefcase-medical:before {
    content: "";
}

.fa-broadcast-tower:before {
    content: "";
}

.fa-broom:before {
    content: "";
}

.fa-brush:before {
    content: "";
}

.fa-btc:before {
    content: "";
}

.fa-bug:before {
    content: "";
}

.fa-building:before {
    content: "";
}

.fa-bullhorn:before {
    content: "";
}

.fa-bullseye:before {
    content: "";
}

.fa-burn:before {
    content: "";
}

.fa-buromobelexperte:before {
    content: "";
}

.fa-bus:before {
    content: "";
}

.fa-bus-alt:before {
    content: "";
}

.fa-business-time:before {
    content: "";
}

.fa-buysellads:before {
    content: "";
}

.fa-calculator:before {
    content: "";
}

.fa-calendar:before {
    content: "";
}

.fa-calendar-alt:before {
    content: "";
}

.fa-calendar-check:before {
    content: "";
}

.fa-calendar-minus:before {
    content: "";
}

.fa-calendar-plus:before {
    content: "";
}

.fa-calendar-times:before {
    content: "";
}

.fa-camera:before {
    content: "";
}

.fa-camera-retro:before {
    content: "";
}

.fa-cannabis:before {
    content: "";
}

.fa-capsules:before {
    content: "";
}

.fa-car:before {
    content: "";
}

.fa-car-alt:before {
    content: "";
}

.fa-car-battery:before {
    content: "";
}

.fa-car-crash:before {
    content: "";
}

.fa-car-side:before {
    content: "";
}

.fa-caret-down:before {
    content: "";
}

.fa-caret-left:before {
    content: "";
}

.fa-caret-right:before {
    content: "";
}

.fa-caret-square-down:before {
    content: "";
}

.fa-caret-square-left:before {
    content: "";
}

.fa-caret-square-right:before {
    content: "";
}

.fa-caret-square-up:before {
    content: "";
}

.fa-caret-up:before {
    content: "";
}

.fa-cart-arrow-down:before {
    content: "";
}

.fa-cart-plus:before {
    content: "";
}

.fa-cc-amazon-pay:before {
    content: "";
}

.fa-cc-amex:before {
    content: "";
}

.fa-cc-apple-pay:before {
    content: "";
}

.fa-cc-diners-club:before {
    content: "";
}

.fa-cc-discover:before {
    content: "";
}

.fa-cc-jcb:before {
    content: "";
}

.fa-cc-mastercard:before {
    content: "";
}

.fa-cc-paypal:before {
    content: "";
}

.fa-cc-stripe:before {
    content: "";
}

.fa-cc-visa:before {
    content: "";
}

.fa-centercode:before {
    content: "";
}

.fa-certificate:before {
    content: "";
}

.fa-chalkboard:before {
    content: "";
}

.fa-chalkboard-teacher:before {
    content: "";
}

.fa-charging-station:before {
    content: "";
}

.fa-chart-area:before {
    content: "";
}

.fa-chart-bar:before {
    content: "";
}

.fa-chart-line:before {
    content: "";
}

.fa-chart-pie:before {
    content: "";
}

.fa-check:before {
    content: "";
}

.fa-check-circle:before {
    content: "";
}

.fa-check-double:before {
    content: "";
}

.fa-check-square:before {
    content: "";
}

.fa-chess:before {
    content: "";
}

.fa-chess-bishop:before {
    content: "";
}

.fa-chess-board:before {
    content: "";
}

.fa-chess-king:before {
    content: "";
}

.fa-chess-knight:before {
    content: "";
}

.fa-chess-pawn:before {
    content: "";
}

.fa-chess-queen:before {
    content: "";
}

.fa-chess-rook:before {
    content: "";
}

.fa-chevron-circle-down:before {
    content: "";
}

.fa-chevron-circle-left:before {
    content: "";
}

.fa-chevron-circle-right:before {
    content: "";
}

.fa-chevron-circle-up:before {
    content: "";
}

.fa-chevron-down:before {
    content: "";
}

.fa-chevron-left:before {
    content: "";
}

.fa-chevron-right:before {
    content: "";
}

.fa-chevron-up:before {
    content: "";
}

.fa-child:before {
    content: "";
}

.fa-chrome:before {
    content: "";
}

.fa-church:before {
    content: "";
}

.fa-circle:before {
    content: "";
}

.fa-circle-notch:before {
    content: "";
}

.fa-city:before {
    content: "";
}

.fa-clipboard:before {
    content: "";
}

.fa-clipboard-check:before {
    content: "";
}

.fa-clipboard-list:before {
    content: "";
}

.fa-clock:before {
    content: "";
}

.fa-clone:before {
    content: "";
}

.fa-closed-captioning:before {
    content: "";
}

.fa-cloud:before {
    content: "";
}

.fa-cloud-download-alt:before {
    content: "";
}

.fa-cloud-upload-alt:before {
    content: "";
}

.fa-cloudscale:before {
    content: "";
}

.fa-cloudsmith:before {
    content: "";
}

.fa-cloudversify:before {
    content: "";
}

.fa-cocktail:before {
    content: "";
}

.fa-code:before {
    content: "";
}

.fa-code-branch:before {
    content: "";
}

.fa-codepen:before {
    content: "";
}

.fa-codiepie:before {
    content: "";
}

.fa-coffee:before {
    content: "";
}

.fa-cog:before {
    content: "";
}

.fa-cogs:before {
    content: "";
}

.fa-coins:before {
    content: "";
}

.fa-columns:before {
    content: "";
}

.fa-comment:before {
    content: "";
}

.fa-comment-alt:before {
    content: "";
}

.fa-comment-dollar:before {
    content: "";
}

.fa-comment-dots:before {
    content: "";
}

.fa-comment-slash:before {
    content: "";
}

.fa-comments:before {
    content: "";
}

.fa-comments-dollar:before {
    content: "";
}

.fa-compact-disc:before {
    content: "";
}

.fa-compass:before {
    content: "";
}

.fa-compress:before {
    content: "";
}

.fa-concierge-bell:before {
    content: "";
}

.fa-connectdevelop:before {
    content: "";
}

.fa-contao:before {
    content: "";
}

.fa-cookie:before {
    content: "";
}

.fa-cookie-bite:before {
    content: "";
}

.fa-copy:before {
    content: "";
}

.fa-copyright:before {
    content: "";
}

.fa-couch:before {
    content: "";
}

.fa-cpanel:before {
    content: "";
}

.fa-creative-commons:before {
    content: "";
}

.fa-creative-commons-by:before {
    content: "";
}

.fa-creative-commons-nc:before {
    content: "";
}

.fa-creative-commons-nc-eu:before {
    content: "";
}

.fa-creative-commons-nc-jp:before {
    content: "";
}

.fa-creative-commons-nd:before {
    content: "";
}

.fa-creative-commons-pd:before {
    content: "";
}

.fa-creative-commons-pd-alt:before {
    content: "";
}

.fa-creative-commons-remix:before {
    content: "";
}

.fa-creative-commons-sa:before {
    content: "";
}

.fa-creative-commons-sampling:before {
    content: "";
}

.fa-creative-commons-sampling-plus:before {
    content: "";
}

.fa-creative-commons-share:before {
    content: "";
}

.fa-credit-card:before {
    content: "";
}

.fa-crop:before {
    content: "";
}

.fa-crop-alt:before {
    content: "";
}

.fa-cross:before {
    content: "";
}

.fa-crosshairs:before {
    content: "";
}

.fa-crow:before {
    content: "";
}

.fa-crown:before {
    content: "";
}

.fa-css3:before {
    content: "";
}

.fa-css3-alt:before {
    content: "";
}

.fa-cube:before {
    content: "";
}

.fa-cubes:before {
    content: "";
}

.fa-cut:before {
    content: "";
}

.fa-cuttlefish:before {
    content: "";
}

.fa-d-and-d:before {
    content: "";
}

.fa-dashcube:before {
    content: "";
}

.fa-database:before {
    content: "";
}

.fa-deaf:before {
    content: "";
}

.fa-delicious:before {
    content: "";
}

.fa-deploydog:before {
    content: "";
}

.fa-deskpro:before {
    content: "";
}

.fa-desktop:before {
    content: "";
}

.fa-deviantart:before {
    content: "";
}

.fa-dharmachakra:before {
    content: "";
}

.fa-diagnoses:before {
    content: "";
}

.fa-dice:before {
    content: "";
}

.fa-dice-five:before {
    content: "";
}

.fa-dice-four:before {
    content: "";
}

.fa-dice-one:before {
    content: "";
}

.fa-dice-six:before {
    content: "";
}

.fa-dice-three:before {
    content: "";
}

.fa-dice-two:before {
    content: "";
}

.fa-digg:before {
    content: "";
}

.fa-digital-ocean:before {
    content: "";
}

.fa-digital-tachograph:before {
    content: "";
}

.fa-directions:before {
    content: "";
}

.fa-discord:before {
    content: "";
}

.fa-discourse:before {
    content: "";
}

.fa-divide:before {
    content: "";
}

.fa-dizzy:before {
    content: "";
}

.fa-dna:before {
    content: "";
}

.fa-dochub:before {
    content: "";
}

.fa-docker:before {
    content: "";
}

.fa-dollar-sign:before {
    content: "";
}

.fa-dolly:before {
    content: "";
}

.fa-dolly-flatbed:before {
    content: "";
}

.fa-donate:before {
    content: "";
}

.fa-door-closed:before {
    content: "";
}

.fa-door-open:before {
    content: "";
}

.fa-dot-circle:before {
    content: "";
}

.fa-dove:before {
    content: "";
}

.fa-download:before {
    content: "";
}

.fa-draft2digital:before {
    content: "";
}

.fa-drafting-compass:before {
    content: "";
}

.fa-draw-polygon:before {
    content: "";
}

.fa-dribbble:before {
    content: "";
}

.fa-dribbble-square:before {
    content: "";
}

.fa-dropbox:before {
    content: "";
}

.fa-drum:before {
    content: "";
}

.fa-drum-steelpan:before {
    content: "";
}

.fa-drupal:before {
    content: "";
}

.fa-dumbbell:before {
    content: "";
}

.fa-dyalog:before {
    content: "";
}

.fa-earlybirds:before {
    content: "";
}

.fa-ebay:before {
    content: "";
}

.fa-edge:before {
    content: "";
}

.fa-edit:before {
    content: "";
}

.fa-eject:before {
    content: "";
}

.fa-elementor:before {
    content: "";
}

.fa-ellipsis-h:before {
    content: "";
}

.fa-ellipsis-v:before {
    content: "";
}

.fa-ello:before {
    content: "";
}

.fa-ember:before {
    content: "";
}

.fa-empire:before {
    content: "";
}

.fa-envelope:before {
    content: "";
}

.fa-envelope-open:before {
    content: "";
}

.fa-envelope-open-text:before {
    content: "";
}

.fa-envelope-square:before {
    content: "";
}

.fa-envira:before {
    content: "";
}

.fa-equals:before {
    content: "";
}

.fa-eraser:before {
    content: "";
}

.fa-erlang:before {
    content: "";
}

.fa-ethereum:before {
    content: "";
}

.fa-etsy:before {
    content: "";
}

.fa-euro-sign:before {
    content: "";
}

.fa-exchange-alt:before {
    content: "";
}

.fa-exclamation:before {
    content: "";
}

.fa-exclamation-circle:before {
    content: "";
}

.fa-exclamation-triangle:before {
    content: "";
}

.fa-expand:before {
    content: "";
}

.fa-expand-arrows-alt:before {
    content: "";
}

.fa-expeditedssl:before {
    content: "";
}

.fa-external-link-alt:before {
    content: "";
}

.fa-external-link-square-alt:before {
    content: "";
}

.fa-eye:before {
    content: "";
}

.fa-eye-dropper:before {
    content: "";
}

.fa-eye-slash:before {
    content: "";
}

.fa-facebook:before {
    content: "";
}

.fa-facebook-f:before {
    content: "";
}

.fa-facebook-messenger:before {
    content: "";
}

.fa-facebook-square:before {
    content: "";
}

.fa-fast-backward:before {
    content: "";
}

.fa-fast-forward:before {
    content: "";
}

.fa-fax:before {
    content: "";
}

.fa-feather:before {
    content: "";
}

.fa-feather-alt:before {
    content: "";
}

.fa-female:before {
    content: "";
}

.fa-fighter-jet:before {
    content: "";
}

.fa-file:before {
    content: "";
}

.fa-file-alt:before {
    content: "";
}

.fa-file-archive:before {
    content: "";
}

.fa-file-audio:before {
    content: "";
}

.fa-file-code:before {
    content: "";
}

.fa-file-contract:before {
    content: "";
}

.fa-file-download:before {
    content: "";
}

.fa-file-excel:before {
    content: "";
}

.fa-file-export:before {
    content: "";
}

.fa-file-image:before {
    content: "";
}

.fa-file-import:before {
    content: "";
}

.fa-file-invoice:before {
    content: "";
}

.fa-file-invoice-dollar:before {
    content: "";
}

.fa-file-medical:before {
    content: "";
}

.fa-file-medical-alt:before {
    content: "";
}

.fa-file-pdf:before {
    content: "";
}

.fa-file-powerpoint:before {
    content: "";
}

.fa-file-prescription:before {
    content: "";
}

.fa-file-signature:before {
    content: "";
}

.fa-file-upload:before {
    content: "";
}

.fa-file-video:before {
    content: "";
}

.fa-file-word:before {
    content: "";
}

.fa-fill:before {
    content: "";
}

.fa-fill-drip:before {
    content: "";
}

.fa-film:before {
    content: "";
}

.fa-filter:before {
    content: "";
}

.fa-fingerprint:before {
    content: "";
}

.fa-fire:before {
    content: "";
}

.fa-fire-extinguisher:before {
    content: "";
}

.fa-firefox:before {
    content: "";
}

.fa-first-aid:before {
    content: "";
}

.fa-first-order:before {
    content: "";
}

.fa-first-order-alt:before {
    content: "";
}

.fa-firstdraft:before {
    content: "";
}

.fa-fish:before {
    content: "";
}

.fa-flag:before {
    content: "";
}

.fa-flag-checkered:before {
    content: "";
}

.fa-flask:before {
    content: "";
}

.fa-flickr:before {
    content: "";
}

.fa-flipboard:before {
    content: "";
}

.fa-flushed:before {
    content: "";
}

.fa-fly:before {
    content: "";
}

.fa-folder:before {
    content: "";
}

.fa-folder-minus:before {
    content: "";
}

.fa-folder-open:before {
    content: "";
}

.fa-folder-plus:before {
    content: "";
}

.fa-font:before {
    content: "";
}

.fa-font-awesome:before {
    content: "";
}

.fa-font-awesome-alt:before {
    content: "";
}

.fa-font-awesome-flag:before {
    content: "";
}

.fa-font-awesome-logo-full:before {
    content: "";
}

.fa-fonticons:before {
    content: "";
}

.fa-fonticons-fi:before {
    content: "";
}

.fa-football-ball:before {
    content: "";
}

.fa-fort-awesome:before {
    content: "";
}

.fa-fort-awesome-alt:before {
    content: "";
}

.fa-forumbee:before {
    content: "";
}

.fa-forward:before {
    content: "";
}

.fa-foursquare:before {
    content: "";
}

.fa-free-code-camp:before {
    content: "";
}

.fa-freebsd:before {
    content: "";
}

.fa-frog:before {
    content: "";
}

.fa-frown:before {
    content: "";
}

.fa-frown-open:before {
    content: "";
}

.fa-fulcrum:before {
    content: "";
}

.fa-funnel-dollar:before {
    content: "";
}

.fa-futbol:before {
    content: "";
}

.fa-galactic-republic:before {
    content: "";
}

.fa-galactic-senate:before {
    content: "";
}

.fa-gamepad:before {
    content: "";
}

.fa-gas-pump:before {
    content: "";
}

.fa-gavel:before {
    content: "";
}

.fa-gem:before {
    content: "";
}

.fa-genderless:before {
    content: "";
}

.fa-get-pocket:before {
    content: "";
}

.fa-gg:before {
    content: "";
}

.fa-gg-circle:before {
    content: "";
}

.fa-gift:before {
    content: "";
}

.fa-git:before {
    content: "";
}

.fa-git-square:before {
    content: "";
}

.fa-github:before {
    content: "";
}

.fa-github-alt:before {
    content: "";
}

.fa-github-square:before {
    content: "";
}

.fa-gitkraken:before {
    content: "";
}

.fa-gitlab:before {
    content: "";
}

.fa-gitter:before {
    content: "";
}

.fa-glass-martini:before {
    content: "";
}

.fa-glass-martini-alt:before {
    content: "";
}

.fa-glasses:before {
    content: "";
}

.fa-glide:before {
    content: "";
}

.fa-glide-g:before {
    content: "";
}

.fa-globe:before {
    content: "";
}

.fa-globe-africa:before {
    content: "";
}

.fa-globe-americas:before {
    content: "";
}

.fa-globe-asia:before {
    content: "";
}

.fa-gofore:before {
    content: "";
}

.fa-golf-ball:before {
    content: "";
}

.fa-goodreads:before {
    content: "";
}

.fa-goodreads-g:before {
    content: "";
}

.fa-google:before {
    content: "";
}

.fa-google-drive:before {
    content: "";
}

.fa-google-play:before {
    content: "";
}

.fa-google-plus:before {
    content: "";
}

.fa-google-plus-g:before {
    content: "";
}

.fa-google-plus-square:before {
    content: "";
}

.fa-google-wallet:before {
    content: "";
}

.fa-gopuram:before {
    content: "";
}

.fa-graduation-cap:before {
    content: "";
}

.fa-gratipay:before {
    content: "";
}

.fa-grav:before {
    content: "";
}

.fa-greater-than:before {
    content: "";
}

.fa-greater-than-equal:before {
    content: "";
}

.fa-grimace:before {
    content: "";
}

.fa-grin:before {
    content: "";
}

.fa-grin-alt:before {
    content: "";
}

.fa-grin-beam:before {
    content: "";
}

.fa-grin-beam-sweat:before {
    content: "";
}

.fa-grin-hearts:before {
    content: "";
}

.fa-grin-squint:before {
    content: "";
}

.fa-grin-squint-tears:before {
    content: "";
}

.fa-grin-stars:before {
    content: "";
}

.fa-grin-tears:before {
    content: "";
}

.fa-grin-tongue:before {
    content: "";
}

.fa-grin-tongue-squint:before {
    content: "";
}

.fa-grin-tongue-wink:before {
    content: "";
}

.fa-grin-wink:before {
    content: "";
}

.fa-grip-horizontal:before {
    content: "";
}

.fa-grip-vertical:before {
    content: "";
}

.fa-gripfire:before {
    content: "";
}

.fa-grunt:before {
    content: "";
}

.fa-gulp:before {
    content: "";
}

.fa-h-square:before {
    content: "";
}

.fa-hacker-news:before {
    content: "";
}

.fa-hacker-news-square:before {
    content: "";
}

.fa-hackerrank:before {
    content: "";
}

.fa-hamsa:before {
    content: "";
}

.fa-hand-holding:before {
    content: "";
}

.fa-hand-holding-heart:before {
    content: "";
}

.fa-hand-holding-usd:before {
    content: "";
}

.fa-hand-lizard:before {
    content: "";
}

.fa-hand-paper:before {
    content: "";
}

.fa-hand-peace:before {
    content: "";
}

.fa-hand-point-down:before {
    content: "";
}

.fa-hand-point-left:before {
    content: "";
}

.fa-hand-point-right:before {
    content: "";
}

.fa-hand-point-up:before {
    content: "";
}

.fa-hand-pointer:before {
    content: "";
}

.fa-hand-rock:before {
    content: "";
}

.fa-hand-scissors:before {
    content: "";
}

.fa-hand-spock:before {
    content: "";
}

.fa-hands:before {
    content: "";
}

.fa-hands-helping:before {
    content: "";
}

.fa-handshake:before {
    content: "";
}

.fa-hashtag:before {
    content: "";
}

.fa-haykal:before {
    content: "";
}

.fa-hdd:before {
    content: "";
}

.fa-heading:before {
    content: "";
}

.fa-headphones:before {
    content: "";
}

.fa-headphones-alt:before {
    content: "";
}

.fa-headset:before {
    content: "";
}

.fa-heart:before {
    content: "";
}

.fa-heartbeat:before {
    content: "";
}

.fa-helicopter:before {
    content: "";
}

.fa-highlighter:before {
    content: "";
}

.fa-hips:before {
    content: "";
}

.fa-hire-a-helper:before {
    content: "";
}

.fa-history:before {
    content: "";
}

.fa-hockey-puck:before {
    content: "";
}

.fa-home:before {
    content: "";
}

.fa-hooli:before {
    content: "";
}

.fa-hornbill:before {
    content: "";
}

.fa-hospital:before {
    content: "";
}

.fa-hospital-alt:before {
    content: "";
}

.fa-hospital-symbol:before {
    content: "";
}

.fa-hot-tub:before {
    content: "";
}

.fa-hotel:before {
    content: "";
}

.fa-hotjar:before {
    content: "";
}

.fa-hourglass:before {
    content: "";
}

.fa-hourglass-end:before {
    content: "";
}

.fa-hourglass-half:before {
    content: "";
}

.fa-hourglass-start:before {
    content: "";
}

.fa-houzz:before {
    content: "";
}

.fa-html5:before {
    content: "";
}

.fa-hubspot:before {
    content: "";
}

.fa-i-cursor:before {
    content: "";
}

.fa-id-badge:before {
    content: "";
}

.fa-id-card:before {
    content: "";
}

.fa-id-card-alt:before {
    content: "";
}

.fa-image:before {
    content: "";
}

.fa-images:before {
    content: "";
}

.fa-imdb:before {
    content: "";
}

.fa-inbox:before {
    content: "";
}

.fa-indent:before {
    content: "";
}

.fa-industry:before {
    content: "";
}

.fa-infinity:before {
    content: "";
}

.fa-info:before {
    content: "";
}

.fa-info-circle:before {
    content: "";
}

.fa-instagram:before {
    content: "";
}

.fa-internet-explorer:before {
    content: "";
}

.fa-ioxhost:before {
    content: "";
}

.fa-italic:before {
    content: "";
}

.fa-itunes:before {
    content: "";
}

.fa-itunes-note:before {
    content: "";
}

.fa-java:before {
    content: "";
}

.fa-jedi:before {
    content: "";
}

.fa-jedi-order:before {
    content: "";
}

.fa-jenkins:before {
    content: "";
}

.fa-joget:before {
    content: "";
}

.fa-joint:before {
    content: "";
}

.fa-joomla:before {
    content: "";
}

.fa-journal-whills:before {
    content: "";
}

.fa-js:before {
    content: "";
}

.fa-js-square:before {
    content: "";
}

.fa-jsfiddle:before {
    content: "";
}

.fa-kaaba:before {
    content: "";
}

.fa-kaggle:before {
    content: "";
}

.fa-key:before {
    content: "";
}

.fa-keybase:before {
    content: "";
}

.fa-keyboard:before {
    content: "";
}

.fa-keycdn:before {
    content: "";
}

.fa-khanda:before {
    content: "";
}

.fa-kickstarter:before {
    content: "";
}

.fa-kickstarter-k:before {
    content: "";
}

.fa-kiss:before {
    content: "";
}

.fa-kiss-beam:before {
    content: "";
}

.fa-kiss-wink-heart:before {
    content: "";
}

.fa-kiwi-bird:before {
    content: "";
}

.fa-korvue:before {
    content: "";
}

.fa-landmark:before {
    content: "";
}

.fa-language:before {
    content: "";
}

.fa-laptop:before {
    content: "";
}

.fa-laptop-code:before {
    content: "";
}

.fa-laravel:before {
    content: "";
}

.fa-lastfm:before {
    content: "";
}

.fa-lastfm-square:before {
    content: "";
}

.fa-laugh:before {
    content: "";
}

.fa-laugh-beam:before {
    content: "";
}

.fa-laugh-squint:before {
    content: "";
}

.fa-laugh-wink:before {
    content: "";
}

.fa-layer-group:before {
    content: "";
}

.fa-leaf:before {
    content: "";
}

.fa-leanpub:before {
    content: "";
}

.fa-lemon:before {
    content: "";
}

.fa-less:before {
    content: "";
}

.fa-less-than:before {
    content: "";
}

.fa-less-than-equal:before {
    content: "";
}

.fa-level-down-alt:before {
    content: "";
}

.fa-level-up-alt:before {
    content: "";
}

.fa-life-ring:before {
    content: "";
}

.fa-lightbulb:before {
    content: "";
}

.fa-line:before {
    content: "";
}

.fa-link:before {
    content: "";
}

.fa-linkedin:before {
    content: "";
}

.fa-linkedin-in:before {
    content: "";
}

.fa-linode:before {
    content: "";
}

.fa-linux:before {
    content: "";
}

.fa-lira-sign:before {
    content: "";
}

.fa-list:before {
    content: "";
}

.fa-list-alt:before {
    content: "";
}

.fa-list-ol:before {
    content: "";
}

.fa-list-ul:before {
    content: "";
}

.fa-location-arrow:before {
    content: "";
}

.fa-lock:before {
    content: "";
}

.fa-lock-open:before {
    content: "";
}

.fa-long-arrow-alt-down:before {
    content: "";
}

.fa-long-arrow-alt-left:before {
    content: "";
}

.fa-long-arrow-alt-right:before {
    content: "";
}

.fa-long-arrow-alt-up:before {
    content: "";
}

.fa-low-vision:before {
    content: "";
}

.fa-luggage-cart:before {
    content: "";
}

.fa-lyft:before {
    content: "";
}

.fa-magento:before {
    content: "";
}

.fa-magic:before {
    content: "";
}

.fa-magnet:before {
    content: "";
}

.fa-mail-bulk:before {
    content: "";
}

.fa-mailchimp:before {
    content: "";
}

.fa-male:before {
    content: "";
}

.fa-mandalorian:before {
    content: "";
}

.fa-map:before {
    content: "";
}

.fa-map-marked:before {
    content: "";
}

.fa-map-marked-alt:before {
    content: "";
}

.fa-map-marker:before {
    content: "";
}

.fa-map-marker-alt:before {
    content: "";
}

.fa-map-pin:before {
    content: "";
}

.fa-map-signs:before {
    content: "";
}

.fa-markdown:before {
    content: "";
}

.fa-marker:before {
    content: "";
}

.fa-mars:before {
    content: "";
}

.fa-mars-double:before {
    content: "";
}

.fa-mars-stroke:before {
    content: "";
}

.fa-mars-stroke-h:before {
    content: "";
}

.fa-mars-stroke-v:before {
    content: "";
}

.fa-mastodon:before {
    content: "";
}

.fa-maxcdn:before {
    content: "";
}

.fa-medal:before {
    content: "";
}

.fa-medapps:before {
    content: "";
}

.fa-medium:before {
    content: "";
}

.fa-medium-m:before {
    content: "";
}

.fa-medkit:before {
    content: "";
}

.fa-medrt:before {
    content: "";
}

.fa-meetup:before {
    content: "";
}

.fa-megaport:before {
    content: "";
}

.fa-meh:before {
    content: "";
}

.fa-meh-blank:before {
    content: "";
}

.fa-meh-rolling-eyes:before {
    content: "";
}

.fa-memory:before {
    content: "";
}

.fa-menorah:before {
    content: "";
}

.fa-mercury:before {
    content: "";
}

.fa-microchip:before {
    content: "";
}

.fa-microphone:before {
    content: "";
}

.fa-microphone-alt:before {
    content: "";
}

.fa-microphone-alt-slash:before {
    content: "";
}

.fa-microphone-slash:before {
    content: "";
}

.fa-microscope:before {
    content: "";
}

.fa-microsoft:before {
    content: "";
}

.fa-minus:before {
    content: "";
}

.fa-minus-circle:before {
    content: "";
}

.fa-minus-square:before {
    content: "";
}

.fa-mix:before {
    content: "";
}

.fa-mixcloud:before {
    content: "";
}

.fa-mizuni:before {
    content: "";
}

.fa-mobile:before {
    content: "";
}

.fa-mobile-alt:before {
    content: "";
}

.fa-modx:before {
    content: "";
}

.fa-monero:before {
    content: "";
}

.fa-money-bill:before {
    content: "";
}

.fa-money-bill-alt:before {
    content: "";
}

.fa-money-bill-wave:before {
    content: "";
}

.fa-money-bill-wave-alt:before {
    content: "";
}

.fa-money-check:before {
    content: "";
}

.fa-money-check-alt:before {
    content: "";
}

.fa-monument:before {
    content: "";
}

.fa-moon:before {
    content: "";
}

.fa-mortar-pestle:before {
    content: "";
}

.fa-mosque:before {
    content: "";
}

.fa-motorcycle:before {
    content: "";
}

.fa-mouse-pointer:before {
    content: "";
}

.fa-music:before {
    content: "";
}

.fa-napster:before {
    content: "";
}

.fa-neos:before {
    content: "";
}

.fa-neuter:before {
    content: "";
}

.fa-newspaper:before {
    content: "";
}

.fa-nimblr:before {
    content: "";
}

.fa-nintendo-switch:before {
    content: "";
}

.fa-node:before {
    content: "";
}

.fa-node-js:before {
    content: "";
}

.fa-not-equal:before {
    content: "";
}

.fa-notes-medical:before {
    content: "";
}

.fa-npm:before {
    content: "";
}

.fa-ns8:before {
    content: "";
}

.fa-nutritionix:before {
    content: "";
}

.fa-object-group:before {
    content: "";
}

.fa-object-ungroup:before {
    content: "";
}

.fa-odnoklassniki:before {
    content: "";
}

.fa-odnoklassniki-square:before {
    content: "";
}

.fa-oil-can:before {
    content: "";
}

.fa-old-republic:before {
    content: "";
}

.fa-om:before {
    content: "";
}

.fa-opencart:before {
    content: "";
}

.fa-openid:before {
    content: "";
}

.fa-opera:before {
    content: "";
}

.fa-optin-monster:before {
    content: "";
}

.fa-osi:before {
    content: "";
}

.fa-outdent:before {
    content: "";
}

.fa-page4:before {
    content: "";
}

.fa-pagelines:before {
    content: "";
}

.fa-paint-brush:before {
    content: "";
}

.fa-paint-roller:before {
    content: "";
}

.fa-palette:before {
    content: "";
}

.fa-palfed:before {
    content: "";
}

.fa-pallet:before {
    content: "";
}

.fa-paper-plane:before {
    content: "";
}

.fa-paperclip:before {
    content: "";
}

.fa-parachute-box:before {
    content: "";
}

.fa-paragraph:before {
    content: "";
}

.fa-parking:before {
    content: "";
}

.fa-passport:before {
    content: "";
}

.fa-pastafarianism:before {
    content: "";
}

.fa-paste:before {
    content: "";
}

.fa-patreon:before {
    content: "";
}

.fa-pause:before {
    content: "";
}

.fa-pause-circle:before {
    content: "";
}

.fa-paw:before {
    content: "";
}

.fa-paypal:before {
    content: "";
}

.fa-peace:before {
    content: "";
}

.fa-pen:before {
    content: "";
}

.fa-pen-alt:before {
    content: "";
}

.fa-pen-fancy:before {
    content: "";
}

.fa-pen-nib:before {
    content: "";
}

.fa-pen-square:before {
    content: "";
}

.fa-pencil-alt:before {
    content: "";
}

.fa-pencil-ruler:before {
    content: "";
}

.fa-people-carry:before {
    content: "";
}

.fa-percent:before {
    content: "";
}

.fa-percentage:before {
    content: "";
}

.fa-periscope:before {
    content: "";
}

.fa-phabricator:before {
    content: "";
}

.fa-phoenix-framework:before {
    content: "";
}

.fa-phoenix-squadron:before {
    content: "";
}

.fa-phone:before {
    content: "";
}

.fa-phone-slash:before {
    content: "";
}

.fa-phone-square:before {
    content: "";
}

.fa-phone-volume:before {
    content: "";
}

.fa-php:before {
    content: "";
}

.fa-pied-piper:before {
    content: "";
}

.fa-pied-piper-alt:before {
    content: "";
}

.fa-pied-piper-hat:before {
    content: "";
}

.fa-pied-piper-pp:before {
    content: "";
}

.fa-piggy-bank:before {
    content: "";
}

.fa-pills:before {
    content: "";
}

.fa-pinterest:before {
    content: "";
}

.fa-pinterest-p:before {
    content: "";
}

.fa-pinterest-square:before {
    content: "";
}

.fa-place-of-worship:before {
    content: "";
}

.fa-plane:before {
    content: "";
}

.fa-plane-arrival:before {
    content: "";
}

.fa-plane-departure:before {
    content: "";
}

.fa-play:before {
    content: "";
}

.fa-play-circle:before {
    content: "";
}

.fa-playstation:before {
    content: "";
}

.fa-plug:before {
    content: "";
}

.fa-plus:before {
    content: "";
}

.fa-plus-circle:before {
    content: "";
}

.fa-plus-square:before {
    content: "";
}

.fa-podcast:before {
    content: "";
}

.fa-poll:before {
    content: "";
}

.fa-poll-h:before {
    content: "";
}

.fa-poo:before {
    content: "";
}

.fa-poop:before {
    content: "";
}

.fa-portrait:before {
    content: "";
}

.fa-pound-sign:before {
    content: "";
}

.fa-power-off:before {
    content: "";
}

.fa-pray:before {
    content: "";
}

.fa-praying-hands:before {
    content: "";
}

.fa-prescription:before {
    content: "";
}

.fa-prescription-bottle:before {
    content: "";
}

.fa-prescription-bottle-alt:before {
    content: "";
}

.fa-print:before {
    content: "";
}

.fa-procedures:before {
    content: "";
}

.fa-product-hunt:before {
    content: "";
}

.fa-project-diagram:before {
    content: "";
}

.fa-pushed:before {
    content: "";
}

.fa-puzzle-piece:before {
    content: "";
}

.fa-python:before {
    content: "";
}

.fa-qq:before {
    content: "";
}

.fa-qrcode:before {
    content: "";
}

.fa-question:before {
    content: "";
}

.fa-question-circle:before {
    content: "";
}

.fa-quidditch:before {
    content: "";
}

.fa-quinscape:before {
    content: "";
}

.fa-quora:before {
    content: "";
}

.fa-quote-left:before {
    content: "";
}

.fa-quote-right:before {
    content: "";
}

.fa-quran:before {
    content: "";
}

.fa-r-project:before {
    content: "";
}

.fa-random:before {
    content: "";
}

.fa-ravelry:before {
    content: "";
}

.fa-react:before {
    content: "";
}

.fa-readme:before {
    content: "";
}

.fa-rebel:before {
    content: "";
}

.fa-receipt:before {
    content: "";
}

.fa-recycle:before {
    content: "";
}

.fa-red-river:before {
    content: "";
}

.fa-reddit:before {
    content: "";
}

.fa-reddit-alien:before {
    content: "";
}

.fa-reddit-square:before {
    content: "";
}

.fa-redo:before {
    content: "";
}

.fa-redo-alt:before {
    content: "";
}

.fa-registered:before {
    content: "";
}

.fa-rendact:before {
    content: "";
}

.fa-renren:before {
    content: "";
}

.fa-reply:before {
    content: "";
}

.fa-reply-all:before {
    content: "";
}

.fa-replyd:before {
    content: "";
}

.fa-researchgate:before {
    content: "";
}

.fa-resolving:before {
    content: "";
}

.fa-retweet:before {
    content: "";
}

.fa-rev:before {
    content: "";
}

.fa-ribbon:before {
    content: "";
}

.fa-road:before {
    content: "";
}

.fa-robot:before {
    content: "";
}

.fa-rocket:before {
    content: "";
}

.fa-rocketchat:before {
    content: "";
}

.fa-rockrms:before {
    content: "";
}

.fa-route:before {
    content: "";
}

.fa-rss:before {
    content: "";
}

.fa-rss-square:before {
    content: "";
}

.fa-ruble-sign:before {
    content: "";
}

.fa-ruler:before {
    content: "";
}

.fa-ruler-combined:before {
    content: "";
}

.fa-ruler-horizontal:before {
    content: "";
}

.fa-ruler-vertical:before {
    content: "";
}

.fa-rupee-sign:before {
    content: "";
}

.fa-sad-cry:before {
    content: "";
}

.fa-sad-tear:before {
    content: "";
}

.fa-safari:before {
    content: "";
}

.fa-sass:before {
    content: "";
}

.fa-save:before {
    content: "";
}

.fa-schlix:before {
    content: "";
}

.fa-school:before {
    content: "";
}

.fa-screwdriver:before {
    content: "";
}

.fa-scribd:before {
    content: "";
}

.fa-search:before {
    content: "";
}

.fa-search-dollar:before {
    content: "";
}

.fa-search-location:before {
    content: "";
}

.fa-search-minus:before {
    content: "";
}

.fa-search-plus:before {
    content: "";
}

.fa-searchengin:before {
    content: "";
}

.fa-seedling:before {
    content: "";
}

.fa-sellcast:before {
    content: "";
}

.fa-sellsy:before {
    content: "";
}

.fa-server:before {
    content: "";
}

.fa-servicestack:before {
    content: "";
}

.fa-shapes:before {
    content: "";
}

.fa-share:before {
    content: "";
}

.fa-share-alt:before {
    content: "";
}

.fa-share-alt-square:before {
    content: "";
}

.fa-share-square:before {
    content: "";
}

.fa-shekel-sign:before {
    content: "";
}

.fa-shield-alt:before {
    content: "";
}

.fa-ship:before {
    content: "";
}

.fa-shipping-fast:before {
    content: "";
}

.fa-shirtsinbulk:before {
    content: "";
}

.fa-shoe-prints:before {
    content: "";
}

.fa-shopping-bag:before {
    content: "";
}

.fa-shopping-basket:before {
    content: "";
}

.fa-shopping-cart:before {
    content: "";
}

.fa-shopware:before {
    content: "";
}

.fa-shower:before {
    content: "";
}

.fa-shuttle-van:before {
    content: "";
}

.fa-sign:before {
    content: "";
}

.fa-sign-in-alt:before {
    content: "";
}

.fa-sign-language:before {
    content: "";
}

.fa-sign-out-alt:before {
    content: "";
}

.fa-signal:before {
    content: "";
}

.fa-signature:before {
    content: "";
}

.fa-simplybuilt:before {
    content: "";
}

.fa-sistrix:before {
    content: "";
}

.fa-sitemap:before {
    content: "";
}

.fa-sith:before {
    content: "";
}

.fa-skull:before {
    content: "";
}

.fa-skyatlas:before {
    content: "";
}

.fa-skype:before {
    content: "";
}

.fa-slack:before {
    content: "";
}

.fa-slack-hash:before {
    content: "";
}

.fa-sliders-h:before {
    content: "";
}

.fa-slideshare:before {
    content: "";
}

.fa-smile:before {
    content: "";
}

.fa-smile-beam:before {
    content: "";
}

.fa-smile-wink:before {
    content: "";
}

.fa-smoking:before {
    content: "";
}

.fa-smoking-ban:before {
    content: "";
}

.fa-snapchat:before {
    content: "";
}

.fa-snapchat-ghost:before {
    content: "";
}

.fa-snapchat-square:before {
    content: "";
}

.fa-snowflake:before {
    content: "";
}

.fa-socks:before {
    content: "";
}

.fa-solar-panel:before {
    content: "";
}

.fa-sort:before {
    content: "";
}

.fa-sort-alpha-down:before {
    content: "";
}

.fa-sort-alpha-up:before {
    content: "";
}

.fa-sort-amount-down:before {
    content: "";
}

.fa-sort-amount-up:before {
    content: "";
}

.fa-sort-down:before {
    content: "";
}

.fa-sort-numeric-down:before {
    content: "";
}

.fa-sort-numeric-up:before {
    content: "";
}

.fa-sort-up:before {
    content: "";
}

.fa-soundcloud:before {
    content: "";
}

.fa-spa:before {
    content: "";
}

.fa-space-shuttle:before {
    content: "";
}

.fa-speakap:before {
    content: "";
}

.fa-spinner:before {
    content: "";
}

.fa-splotch:before {
    content: "";
}

.fa-spotify:before {
    content: "";
}

.fa-spray-can:before {
    content: "";
}

.fa-square:before {
    content: "";
}

.fa-square-full:before {
    content: "";
}

.fa-square-root-alt:before {
    content: "";
}

.fa-squarespace:before {
    content: "";
}

.fa-stack-exchange:before {
    content: "";
}

.fa-stack-overflow:before {
    content: "";
}

.fa-stamp:before {
    content: "";
}

.fa-star:before {
    content: "";
}

.fa-star-and-crescent:before {
    content: "";
}

.fa-star-half:before {
    content: "";
}

.fa-star-half-alt:before {
    content: "";
}

.fa-star-of-david:before {
    content: "";
}

.fa-star-of-life:before {
    content: "";
}

.fa-staylinked:before {
    content: "";
}

.fa-steam:before {
    content: "";
}

.fa-steam-square:before {
    content: "";
}

.fa-steam-symbol:before {
    content: "";
}

.fa-step-backward:before {
    content: "";
}

.fa-step-forward:before {
    content: "";
}

.fa-stethoscope:before {
    content: "";
}

.fa-sticker-mule:before {
    content: "";
}

.fa-sticky-note:before {
    content: "";
}

.fa-stop:before {
    content: "";
}

.fa-stop-circle:before {
    content: "";
}

.fa-stopwatch:before {
    content: "";
}

.fa-store:before {
    content: "";
}

.fa-store-alt:before {
    content: "";
}

.fa-strava:before {
    content: "";
}

.fa-stream:before {
    content: "";
}

.fa-street-view:before {
    content: "";
}

.fa-strikethrough:before {
    content: "";
}

.fa-stripe:before {
    content: "";
}

.fa-stripe-s:before {
    content: "";
}

.fa-stroopwafel:before {
    content: "";
}

.fa-studiovinari:before {
    content: "";
}

.fa-stumbleupon:before {
    content: "";
}

.fa-stumbleupon-circle:before {
    content: "";
}

.fa-subscript:before {
    content: "";
}

.fa-subway:before {
    content: "";
}

.fa-suitcase:before {
    content: "";
}

.fa-suitcase-rolling:before {
    content: "";
}

.fa-sun:before {
    content: "";
}

.fa-superpowers:before {
    content: "";
}

.fa-superscript:before {
    content: "";
}

.fa-supple:before {
    content: "";
}

.fa-surprise:before {
    content: "";
}

.fa-swatchbook:before {
    content: "";
}

.fa-swimmer:before {
    content: "";
}

.fa-swimming-pool:before {
    content: "";
}

.fa-synagogue:before {
    content: "";
}

.fa-sync:before {
    content: "";
}

.fa-sync-alt:before {
    content: "";
}

.fa-syringe:before {
    content: "";
}

.fa-table:before {
    content: "";
}

.fa-table-tennis:before {
    content: "";
}

.fa-tablet:before {
    content: "";
}

.fa-tablet-alt:before {
    content: "";
}

.fa-tablets:before {
    content: "";
}

.fa-tachometer-alt:before {
    content: "";
}

.fa-tag:before {
    content: "";
}

.fa-tags:before {
    content: "";
}

.fa-tape:before {
    content: "";
}

.fa-tasks:before {
    content: "";
}

.fa-taxi:before {
    content: "";
}

.fa-teamspeak:before {
    content: "";
}

.fa-teeth:before {
    content: "";
}

.fa-teeth-open:before {
    content: "";
}

.fa-telegram:before {
    content: "";
}

.fa-telegram-plane:before {
    content: "";
}

.fa-tencent-weibo:before {
    content: "";
}

.fa-terminal:before {
    content: "";
}

.fa-text-height:before {
    content: "";
}

.fa-text-width:before {
    content: "";
}

.fa-th:before {
    content: "";
}

.fa-th-large:before {
    content: "";
}

.fa-th-list:before {
    content: "";
}

.fa-the-red-yeti:before {
    content: "";
}

.fa-theater-masks:before {
    content: "";
}

.fa-themeco:before {
    content: "";
}

.fa-themeisle:before {
    content: "";
}

.fa-thermometer:before {
    content: "";
}

.fa-thermometer-empty:before {
    content: "";
}

.fa-thermometer-full:before {
    content: "";
}

.fa-thermometer-half:before {
    content: "";
}

.fa-thermometer-quarter:before {
    content: "";
}

.fa-thermometer-three-quarters:before {
    content: "";
}

.fa-thumbs-down:before {
    content: "";
}

.fa-thumbs-up:before {
    content: "";
}

.fa-thumbtack:before {
    content: "";
}

.fa-ticket-alt:before {
    content: "";
}

.fa-times:before {
    content: "";
}

.fa-times-circle:before {
    content: "";
}

.fa-tint:before {
    content: "";
}

.fa-tint-slash:before {
    content: "";
}

.fa-tired:before {
    content: "";
}

.fa-toggle-off:before {
    content: "";
}

.fa-toggle-on:before {
    content: "";
}

.fa-toolbox:before {
    content: "";
}

.fa-tooth:before {
    content: "";
}

.fa-torah:before {
    content: "";
}

.fa-torii-gate:before {
    content: "";
}

.fa-trade-federation:before {
    content: "";
}

.fa-trademark:before {
    content: "";
}

.fa-traffic-light:before {
    content: "";
}

.fa-train:before {
    content: "";
}

.fa-transgender:before {
    content: "";
}

.fa-transgender-alt:before {
    content: "";
}

.fa-trash:before {
    content: "";
}

.fa-trash-alt:before {
    content: "";
}

.fa-tree:before {
    content: "";
}

.fa-trello:before {
    content: "";
}

.fa-tripadvisor:before {
    content: "";
}

.fa-trophy:before {
    content: "";
}

.fa-truck:before {
    content: "";
}

.fa-truck-loading:before {
    content: "";
}

.fa-truck-monster:before {
    content: "";
}

.fa-truck-moving:before {
    content: "";
}

.fa-truck-pickup:before {
    content: "";
}

.fa-tshirt:before {
    content: "";
}

.fa-tty:before {
    content: "";
}

.fa-tumblr:before {
    content: "";
}

.fa-tumblr-square:before {
    content: "";
}

.fa-tv:before {
    content: "";
}

.fa-twitch:before {
    content: "";
}

.fa-twitter:before {
    content: "";
}

.fa-twitter-square:before {
    content: "";
}

.fa-typo3:before {
    content: "";
}

.fa-uber:before {
    content: "";
}

.fa-uikit:before {
    content: "";
}

.fa-umbrella:before {
    content: "";
}

.fa-umbrella-beach:before {
    content: "";
}

.fa-underline:before {
    content: "";
}

.fa-undo:before {
    content: "";
}

.fa-undo-alt:before {
    content: "";
}

.fa-uniregistry:before {
    content: "";
}

.fa-universal-access:before {
    content: "";
}

.fa-university:before {
    content: "";
}

.fa-unlink:before {
    content: "";
}

.fa-unlock:before {
    content: "";
}

.fa-unlock-alt:before {
    content: "";
}

.fa-untappd:before {
    content: "";
}

.fa-upload:before {
    content: "";
}

.fa-usb:before {
    content: "";
}

.fa-user:before {
    content: "";
}

.fa-user-alt:before {
    content: "";
}

.fa-user-alt-slash:before {
    content: "";
}

.fa-user-astronaut:before {
    content: "";
}

.fa-user-check:before {
    content: "";
}

.fa-user-circle:before {
    content: "";
}

.fa-user-clock:before {
    content: "";
}

.fa-user-cog:before {
    content: "";
}

.fa-user-edit:before {
    content: "";
}

.fa-user-friends:before {
    content: "";
}

.fa-user-graduate:before {
    content: "";
}

.fa-user-lock:before {
    content: "";
}

.fa-user-md:before {
    content: "";
}

.fa-user-minus:before {
    content: "";
}

.fa-user-ninja:before {
    content: "";
}

.fa-user-plus:before {
    content: "";
}

.fa-user-secret:before {
    content: "";
}

.fa-user-shield:before {
    content: "";
}

.fa-user-slash:before {
    content: "";
}

.fa-user-tag:before {
    content: "";
}

.fa-user-tie:before {
    content: "";
}

.fa-user-times:before {
    content: "";
}

.fa-users:before {
    content: "";
}

.fa-users-cog:before {
    content: "";
}

.fa-ussunnah:before {
    content: "";
}

.fa-utensil-spoon:before {
    content: "";
}

.fa-utensils:before {
    content: "";
}

.fa-vaadin:before {
    content: "";
}

.fa-vector-square:before {
    content: "";
}

.fa-venus:before {
    content: "";
}

.fa-venus-double:before {
    content: "";
}

.fa-venus-mars:before {
    content: "";
}

.fa-viacoin:before {
    content: "";
}

.fa-viadeo:before {
    content: "";
}

.fa-viadeo-square:before {
    content: "";
}

.fa-vial:before {
    content: "";
}

.fa-vials:before {
    content: "";
}

.fa-viber:before {
    content: "";
}

.fa-video:before {
    content: "";
}

.fa-video-slash:before {
    content: "";
}

.fa-vihara:before {
    content: "";
}

.fa-vimeo:before {
    content: "";
}

.fa-vimeo-square:before {
    content: "";
}

.fa-vimeo-v:before {
    content: "";
}

.fa-vine:before {
    content: "";
}

.fa-vk:before {
    content: "";
}

.fa-vnv:before {
    content: "";
}

.fa-volleyball-ball:before {
    content: "";
}

.fa-volume-down:before {
    content: "";
}

.fa-volume-off:before {
    content: "";
}

.fa-volume-up:before {
    content: "";
}

.fa-vuejs:before {
    content: "";
}

.fa-walking:before {
    content: "";
}

.fa-wallet:before {
    content: "";
}

.fa-warehouse:before {
    content: "";
}

.fa-weebly:before {
    content: "";
}

.fa-weibo:before {
    content: "";
}

.fa-weight:before {
    content: "";
}

.fa-weight-hanging:before {
    content: "";
}

.fa-weixin:before {
    content: "";
}

.fa-whatsapp:before {
    content: "";
}

.fa-whatsapp-square:before {
    content: "";
}

.fa-wheelchair:before {
    content: "";
}

.fa-whmcs:before {
    content: "";
}

.fa-wifi:before {
    content: "";
}

.fa-wikipedia-w:before {
    content: "";
}

.fa-window-close:before {
    content: "";
}

.fa-window-maximize:before {
    content: "";
}

.fa-window-minimize:before {
    content: "";
}

.fa-window-restore:before {
    content: "";
}

.fa-windows:before {
    content: "";
}

.fa-wine-glass:before {
    content: "";
}

.fa-wine-glass-alt:before {
    content: "";
}

.fa-wix:before {
    content: "";
}

.fa-wolf-pack-battalion:before {
    content: "";
}

.fa-won-sign:before {
    content: "";
}

.fa-wordpress:before {
    content: "";
}

.fa-wordpress-simple:before {
    content: "";
}

.fa-wpbeginner:before {
    content: "";
}

.fa-wpexplorer:before {
    content: "";
}

.fa-wpforms:before {
    content: "";
}

.fa-wrench:before {
    content: "";
}

.fa-x-ray:before {
    content: "";
}

.fa-xbox:before {
    content: "";
}

.fa-xing:before {
    content: "";
}

.fa-xing-square:before {
    content: "";
}

.fa-y-combinator:before {
    content: "";
}

.fa-yahoo:before {
    content: "";
}

.fa-yandex:before {
    content: "";
}

.fa-yandex-international:before {
    content: "";
}

.fa-yelp:before {
    content: "";
}

.fa-yen-sign:before {
    content: "";
}

.fa-yin-yang:before {
    content: "";
}

.fa-yoast:before {
    content: "";
}

.fa-youtube:before {
    content: "";
}

.fa-youtube-square:before {
    content: "";
}

.fa-zhihu:before {
    content: "";
}

.sr-only {
    border: 0;
    clip: rect(0,0,0,0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    src: url(/Content/webfonts/fa-brands-400.eot?);
    src: url(/Content/webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(/Content/webfonts/fa-brands-400.woff2) format("woff2"),url(/Content/webfonts/fa-brands-400.woff) format("woff"),url(/Content/webfonts/fa-brands-400.ttf) format("truetype"),url(/Content/webfonts/fa-brands-400.svg#fontawesome) format("svg");
}

.fab {
    font-family: "Font Awesome 5 Brands";
}

@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 400;
    src: url(/Content/webfonts/fa-regular-400.eot?);
    src: url(/Content/webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(/Content/webfonts/fa-regular-400.woff2) format("woff2"),url(/Content/webfonts/fa-regular-400.woff) format("woff"),url(/Content/webfonts/fa-regular-400.ttf) format("truetype"),url(/Content/webfonts/fa-regular-400.svg#fontawesome) format("svg");
}

.far {
    font-weight: 400;
}

@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    src: url(/Content/webfonts/fa-solid-900.eot?);
    src: url(/Content/webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(/Content/webfonts/fa-solid-900.woff2) format("woff2"),url(/Content/webfonts/fa-solid-900.woff) format("woff"),url(/Content/webfonts/fa-solid-900.ttf) format("truetype"),url(/Content/webfonts/fa-solid-900.svg#fontawesome) format("svg");
}

.far, .fas {
    font-family: "Font Awesome 5 Free";
}

.fas {
    font-weight: 900;
}

html {
    position: relative;
    min-height: 100%;
}

.fa-sign-out {
    margin-left: 30px;
    margin-right: 5px;
    position: relative;
    top: 3px;
    font-size: 24px;
    color: var(--color);
}

h1, h2, h3, h4, h5 {
    margin: 0;
    padding: 0;
}

.arrow {
    background: 0 0 !important;
}

a {
    color: #000;
    text-decoration: none;
    background-color: transparent;
}

    a:hover {
        text-decoration: none;
        color: #000;
    }

p {
    margin: 0;
    padding: 0;
}

.logOut {
    margin-top: 10px;
    margin-right: 28px;
}

.whiteSpace {
    height: 20px;
}

#wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #f8f6f4;
}

    #wrapper #content-wrapper {
        width: 100%;
        padding-top: 1rem;
        padding-bottom: 0;
    }

body.fixed-nav #content-wrapper {
    margin-top: 56px;
    padding-left: 90px;
}

body.fixed-nav.sidebar-toggled #content-wrapper {
    padding-left: 0;
}

.scroll-to-top {
    position: fixed;
    right: 15px;
    bottom: 15px;
    display: none;
    width: 50px;
    height: 50px;
    text-align: center;
    color: #fff;
    background: rgba(52,58,64,.5);
    line-height: 46px;
}

    .scroll-to-top:focus, .scroll-to-top:hover {
        color: #fff;
    }

    .scroll-to-top:hover {
        background: #343a40;
    }

    .scroll-to-top i {
        font-weight: 800;
    }

.smaller {
    font-size: .7rem;
}

.o-hidden {
    overflow: hidden !important;
}

.z-0 {
    z-index: 0;
}

.z-1 {
    z-index: 1;
}

.navbar {
    background: #fff;
    box-shadow: 0 3px 6px -6px rgba(0,0,0,.2);
}

.navbar-nav .form-inline .input-group {
    width: 100%;
}

.nav-item {
    border-bottom: #ccc solid 1px;
}

.ml-auto .nav-item {
    border-bottom: none !important;
}

.leftMenu .nav-item {
    border-bottom: none !important;
}

.navbar-nav .nav-item.active .nav-link {
    color: var(--w-color);
    background: var(--background-color);
}

.navbar-nav .nav-item.dropdown .dropdown-toggle::after {
    width: 1rem;
    text-align: center;
    float: right;
    vertical-align: 0;
    border: 0;
    font-weight: 900;
    content: "";
    font-family: "Font Awesome 5 Free";
}

.navbar-nav .nav-item.dropdown.show .dropdown-toggle::after {
    content: "";
}

.navbar-nav .nav-item.dropdown.no-arrow .dropdown-toggle::after {
    display: none;
}

.navbar-nav .nav-item .nav-link:focus {
    outline: 0;
}

.navbar-nav .nav-item .nav-link .badge {
    position: absolute;
    margin-left: -10px;
    top: 4px;
    font-weight: 400;
    font-size: 12px;
    background: #104478;
    border-radius: 50%;
    height: 20px;
    width: 20px;
}

.sidebar {
    background-color: #fff;
    min-height: calc(100vh - 56px);
    border-top: none;
    position: relative;
    box-shadow: 0 2px 4px 0 #c8c8c8;
}

    .sidebar .nav-item:last-child {
        margin-bottom: 1rem;
    }

    .sidebar .nav-item .nav-link {
        text-align: center;
        padding: .75rem 1rem;
        width: 90px;
    }

        .sidebar .nav-item .nav-link span {
            font-size: .65rem;
            display: block;
        }

    .sidebar .nav-item .dropdown-menu {
        position: absolute !important;
        -webkit-transform: none !important;
        transform: none !important;
        left: calc(90px + .5rem) !important;
        margin: 0;
    }

        .sidebar .nav-item .dropdown-menu.dropup {
            bottom: 0;
            top: auto !important;
        }

        .sidebar .nav-item .dropdown-menu .fa {
            border: none;
            padding: 0;
            font-size: 14px;
        }

    .sidebar .nav-item.dropdown .dropdown-toggle::after {
        display: none;
    }

    .sidebar .nav-item .nav-link {
        color: #000;
    }

        .sidebar .nav-item .nav-link .fa:active, .sidebar .nav-item .nav-link .fa:focus, .sidebar .nav-item .nav-link .fa:hover {
            color: #fff !important;
        }

    .sidebar.toggled {
        width: 0 !important;
        overflow: hidden;
    }

    .sidebar.fixed-top {
        top: 56px;
        height: calc(100vh - 56px);
        overflow-y: auto;
    }

.card-body-icon {
    position: absolute;
    z-index: 0;
    top: -1.25rem;
    right: -1rem;
    opacity: .4;
    font-size: 5rem;
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
}

.card-login {
    max-width: 25rem;
}

.card-register {
    max-width: 40rem;
}

footer.sticky-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(100% - 90px);
    height: 80px;
    background-color: #eff0f1;
    border-top: #dcdcdc solid 1px;
}

    footer.sticky-footer .copyright {
        line-height: 1;
        font-size: 12px;
    }

.card {
    margin-bottom: 20px;
    border-radius: 0;
}

.roundBox {
    width: 150px;
    height: 150px;
    line-height: 150px;
    border-radius: 50%;
    border: #104478 solid 10px;
    text-align: center;
}

    .roundBox .fa {
        color: #104478;
        font-size: 50px;
    }

.BigTxt {
    font-size: 40px;
    font-weight: 700;
    color: #104478;
}

.btn-light {
    font-size: 12px !important;
    min-width: 80px !important;
    margin: 0 5px !important;
    font-weight: 500 !important;
}

.exceptionsBox {
    padding: 100px 0;
    font-weight: 700;
}

.ProcessingTbl th {
    padding: 7px 5px;
    font-size: 13px;
    vertical-align: middle;
    background: #ebeced;
}

.ProcessingTbl td {
    padding: 5px 5px;
    font-size: 13px;
    vertical-align: middle;
}

.search .form-control {
    border-radius: 20px;
    background: #ebeced;
    border: none;
    font-size: 12px;
}

.search .btn-primary .fa {
    color: #000;
}

.btn-primary:hover {
    background: var(--background-color);
    border-color: var(--background-color);
}

.notification .fa {
    border: #ddd solid 1px;
    color: #000;
    border-radius: 50%;
    padding: 10px;
}

.dropdown-menu-right {
    box-shadow: 0 0 3px 0 #dad7d7;
    border: #c0bfc0 solid 1px;
}

    .dropdown-menu-right a {
        font-size: 13px;
    }

#copyRight {
    background: #fff;
    padding: 0 0;
    font-size: 22px;
    color: #000;
}

.copyright ul {
    list-style: none;
}

    .copyright ul li {
        list-style: none;
        display: inline-block;
        border-right: #000 solid 1px;
        padding: 0 10px;
    }

        .copyright ul li:last-child {
            border-right: none;
        }

        .copyright ul li a {
            padding: 0 10px 0 0;
        }

.bold {
    font-size: 14px;
    color: #000;
    font-weight: 700;
}

.card-header .dropdown-menu {
    font-size: 12px;
    color: #212529;
    text-align: left;
    list-style: none;
}

.card-header .dropdown-menu {
    min-width: 135px;
    font-size: 14px;
    text-transform: none;
    font-weight: 400;
    border-radius: 0;
    border: #bfbfbf solid 1px;
    padding: 0;
}

    .card-header .dropdown-menu li {
        border-bottom: #bfbfbf solid 1px;
        padding: 10px;
    }

        .card-header .dropdown-menu li a:hover {
            text-decoration: none;
        }

.card-header {
    background-color: #fff;
    border-bottom: 1px solid #bfbfbf;
    text-transform: none;
    font-size: 17px;
    font-weight: 500;
    padding: 10px 20px;
    color: #000;
    margin-bottom:10px;
}

.card-body {
    padding: 0px 20px 20px 20px;
}

.title {
    font-size: 18px;
    padding: 0;
    font-weight: 700;
    color: #000;
    text-transform: none;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 16px;
    padding: 0;
}

hr {
    margin-top: 15px;
    margin-bottom: 15px;
    border: 0;
    border-top: 1px solid #bfbfbf;
}

.gryCol {
    background: #ebeced;
    border: #87898a solid 1px;
    font-size: 14px;
    font-weight: 700;
    padding: 7px 10px;
    text-align: center;
    margin-bottom: 15px;
    margin: 10px 2px;
}

table.result_tbl td {
    text-align: center;
}

table {
    border-collapse: separate;
}

.gryBorder {
    border-top: #87898a solid 1px !important;
    border-bottom: #87898a solid 1px !important;
    padding: 10px 0;
}

.dragBox {
    border-radius: 20px;
    box-shadow: 0 0 3px 0 #dad7d7;
    border: #c0bfc0 solid 1px;
    height: 100px;
    text-align: center;
    line-height: 100px;
    font-weight: 700;
    margin-bottom: 10px;
}

.whiteSpace {
    height: 20px;
    display: block;
}

.gry-border {
    border: #979596 solid 1px;
    padding: 20px;
    background: #fff;
}

p {
    margin: 0;
    padding: 0;
}

.bannerTxt h1 {
    color: #fff;
    font-size: 55px;
    text-transform: none;
}

.bannerTxt h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    margin-top: 0;
    line-height: 40px;
}

.banner {
    margin: 0 auto;
    text-align: center;
}

#contact-us-banner {
    background-image: url(/Content/img/contact-us-banner.jpg) !important;
}

#customer-banner {
    background-image: url(/Content/img/customer-banner.jpg) !important;
}

#grayBox {
    background: #f9f9f9;
    padding: 80px 0;
}

#video {
    background: #f9f9f9;
    padding: 100px 0;
}

#works {
    background: #fff;
    margin-bottom: 100px;
}

    #works .col-md-3 {
        padding-left: 0;
        padding-right: 0;
    }

#testimonial {
    padding: 0 0 100px 0;
    background: #fff;
}

#practices {
    background: #fff;
    padding-bottom: 70px;
}

#fraudsters, #integrate {
    background: #f5f5f5;
    padding-top: 60px;
    padding-bottom: 60px;
}

#footer {
    background: #104478;
    padding: 150px 0;
    font-size: 22px;
    color: #fff;
    background-image: url(/Content/img/signup-bg.jpg) !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-attachment: fixed !important;
    background-size: cover !important;
}

.freeTrialBtn {
    border-radius: 3px;
    font-size: 15px !important;
    color: #fff !important;
    padding: 15px 25px !important;
    background: #62bb46 !important;
    font-weight: bolder;
    text-transform: uppercase;
}

.SaaS {
    background: #fff;
    color: #000;
    font-size: 33px;
    padding: 20px;
}

.titleWrp {
    text-align: center;
    margin-bottom: 50px;
}

    .titleWrp h2 {
        line-height: 25px;
        font-size: 15px;
        font-weight: 400;
    }

.blueLine {
    width: 100px;
    height: 4px;
    background: #104478;
    margin: 0 auto;
}

.uptTxt {
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 18px;
}

.lowrTxt {
    color: #000;
    margin-bottom: 15px;
    font-size: 50px;
    text-transform: uppercase;
}

.pic {
    margin-bottom: 45px;
}

.arrow {
    margin-bottom: 0;
}

.pl35 {
    padding-left: 35px;
}

.item blockquote {
    font-size: 22px;
    font-weight: 500;
    margin-top: 20px;
    padding: 20px;
}

    .item blockquote .fa {
        font-size: 35px;
        color: #4c4c4c;
    }

.testimonialWrp {
    -webkit-box-shadow: -4px 9px 56px -14px rgba(140,137,140,.65);
    -moz-box-shadow: -4px 9px 56px -14px rgba(140,137,140,.65);
    box-shadow: -4px 9px 56px -14px rgba(140,137,140,.65);
    border: #e6e5e6 solid 1px;
}

.name {
    font-size: 28px;
    font-weight: 400;
    margin-top: 40px;
}

.Dis {
    font-size: 25px;
    font-weight: 400;
}

.mrgn_0 {
    padding-left: 0;
    padding-right: 0;
}

.footrLink {
    margin: 0;
    padding: 50px 0;
}

    .footrLink ul {
        margin: 0;
        padding: 0;
        list-style: none;
        text-align: center;
    }

        .footrLink ul li {
            margin: 0;
            display: inline-block;
            border-right: #000 solid 1px;
            padding: 0 10px;
            font-size: 12px;
        }

            .footrLink ul li a {
                font-size: 16px;
            }

            .footrLink ul li:last-child {
                border-right: none;
                cursor: default !important;
            }

            .footrLink ul li a:first-child {
                border-right: none;
            }

    .footrLink p {
        font-size: 14px;
        text-align: center;
        margin-top: 10px;
    }

.font14 {
    color: #000;
    font-weight: 400;
    margin-bottom: 40px;
    font-size: 14px;
    line-height: 22px;
}

.font18 {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}

t.ReadmoreTxt {
    color: #585858;
    font-size: 16px;
    font-weight: 400 !important;
    line-height: 25px;
}

.font23 {
    font-weight: 500;
    font-size: 35px;
    margin-right: 5px;
}

.font18bold {
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

.font25 {
    font-size: 25px;
}

.font15 {
    font-size: 15px;
    font-weight: 400;
    text-transform: none;
}

.font35 {
    font-size: 30px;
}

.blueBtn .fa {
    margin-left: 50px;
}

.blueBtn:hover {
    background: var(--background-color);
    color: var(--w-color);
}

.lineBtn .fa {
    margin-left: 20px;
}

.BluelineBtn .fa {
    margin-left: 20px !important;
}

.BluelineBtn:hover {
    background: #fff !important;
    color: #000;
    border: #007bff solid 2px;
}

.pay-btn:hover {
    color: #fff;
}

.delete-btn .fa, .edit-btn .fa {
    margin-left: 5px;
}

.r-fa-primary {
    color: var(--background-color);
}

.r-fa-danger {
    color: #dc3545;
}

.btn-primary {
    border-radius: 3px;
    font-size: 13px;
    font-weight: 700;
    background-color: var(--background-color);
    border-color: var(--border-color);
}

.fa-plus-circle, .fa-trash-o {
    cursor: pointer;
}

.btn-danger {
    border-radius: 3px;
    font-size: 13px;
    font-weight: 700;
}

.search .btn-primary {
    border-radius: 20px;
    background: #ebeced;
}

.price-box .blueBtn {
    min-width: 80px !important;
    font-size: 13px;
}

.whitBtn {
    background: #fff;
    border-radius: 20px;
    color: #000;
    width: 160px;
    margin-left: 10px;
    margin-top: 30px;
    font-weight: 500;
    font-size: 15px;
}

.selectBtn {
    padding: 5px 30px;
    background: #104478;
    border-radius: 20px;
    color: #fff;
    text-transform: uppercase;
}

    .selectBtn:hover {
        color: #fff !important;
    }

.cancilBtn, .submitBtn {
    border: var(--border-color) solid 2px;
    background: var(--background-color);
    color: var(--w-color);
    font-size: 13px;
    min-width: 120px;
    border-radius: 3px;
    font-weight: 700;
}

.submitBtn {
    background: var(--background-color);
    color: var(--w-color);
}

    .submitBtn:hover {
        color: #fff !important;
    }

    .cancilBtn .fa, .submitBtn .fa {
        margin-left: 20px;
    }

.viewBtn {
    background: var(--background-color) !important;
    border-radius: 3px;
    border-color: var(--border-color) !important;
    font-size: 13px;
    min-width: 80px;
}

.blueBtn {
    background: var(--background-color);
    border: none;
    color: var(--w-color);
    min-width: 90px;
    font-size: 13px;
    font-weight: 700;
}

.BluelineBtn {
    position: relative;
    padding: 10px 24px;
    border-style: solid;
    border-width: 2px;
    border-color: #104478;
    border-radius: 5px;
    background-color: #104478;
    box-shadow: inset 0 0 100px 100px transparent;
    -webkit-transition: box-shadow .2s ease;
    transition: box-shadow .2s ease;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

    .BluelineBtn:hover {
        box-shadow: inset 0 0 100px 100px rgba(0,0,0,.2);
        text-decoration: none;
        background-color: #104478;
    }

.lineBtn {
    position: relative;
    padding: 10px 24px;
    border-style: solid;
    border-width: 2px;
    border-color: #104478;
    border-radius: 5px;
    background-color: #104478;
    box-shadow: inset 0 0 100px 100px transparent;
    -webkit-transition: box-shadow .2s ease;
    transition: box-shadow .2s ease;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    width: 100%;
    margin: 20px 0;
}

.back-btn, .delete-btn, .details-btn, .download-btn, .edit-btn, .pay-btn, .remove-btn {
    background: var(--background-color);
    border-radius: 3px;
    color: var(--w-color);
    font-size: 13px;
    min-width: 80px;
    margin: 0 5px;
    font-weight: 500;
}

    .edit-btn:hover {
        color: var(--w-color);
    }

.download-btn {
    border-radius: 0;
}

.contactUsbox .btn-primary {
    border: #104478 solid 2px;
    background: #104478;
    border-radius: 2px;
    color: #fff;
    min-width: 150px;
    min-height: 40px;
}

.details-btn:hover {
    color: #fff;
}

.gray-btn {
    border: #bfbfbf solid 1px;
    background: #f9f9f9;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 700;
}

.form-wizard {
    padding: 0;
    margin: 15px auto;
    background: #fff;
}

.wizard-inner {
    position: relative;
}

.connecting-line {
    height: 3px;
    background: #104478;
    position: absolute;
    width: 100%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 20%;
}

.wizard-menu {
    position: relative;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

    .wizard-menu ul {
        margin: 0 auto;
        width: 100%;
    }

    .wizard-menu li {
        width: 19%;
        display: inline-block;
        text-align: center !important;
    }

        .wizard-menu li span {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #fff;
            border: #104478 solid 2px;
            display: block;
            line-height: 40px;
            text-align: center;
            color: #000;
            font-weight: 700;
            margin: 0 auto;
        }

        .wizard-menu li p {
            text-align: center;
            color: #000;
            margin: 20px 0;
            font-weight: 700;
            font-size: 13px;
        }

        .wizard-menu li span.active {
            background: #104478;
            color: #fff;
        }

.add-another {
    background: url(/Content/img/add-btn.jpg) left center no-repeat;
    padding: 5px 15px 5px 25px;
    font-size: 13px;
    border: #104478 solid 1px;
    border-radius: 0;
}

.drag-and-drop-Box {
    border: dashed 3px #7d7d7d;
    text-align: center;
}

.drop-Box {
    border: dashed 3px #7d7d7d;
    text-align: center;
    padding: 20px 0;
    margin: 30px 0;
    line-height: 150px;
    font-size: 18px;
}

.select-file {
    background: url(/Content/img/select-file.jpg) left top no-repeat;
    width: 134px;
    height: 27px;
    border: none;
    margin-top: 20px;
}

.arrow {
    background: url(/Content/img/downloadArrow.jpg) right center no-repeat;
    height: 25px;
    line-height: 24px;
    font-size: 16px;
    float: left;
    display: block;
    padding: 0 25px 0 0;
}

.dropboxWrp {
    margin: 0 0 10px 0;
    padding: 0;
    width: 100%;
    position: relative;
}

.dropboxTxt {
    margin: 0;
    background: #3093fb;
    height: 38px;
    line-height: 38px;
    font-size: 14px;
    padding: 0 10px;
    color: #fff;
    position: relative;
}

.dropboxIcon {
    width: 48px;
    height: 48px;
    position: absolute;
    top: -5px;
    right: -10px;
}

#about {
    background: #fff;
}

#privacy {
    background: #fff;
    padding: 100px 0;
}

.shadow-box {
    -webkit-box-shadow: -4px 9px 56px -14px rgba(140,137,140,.65);
    -moz-box-shadow: -4px 9px 56px -14px rgba(140,137,140,.65);
    box-shadow: -4px 9px 56px -14px rgba(140,137,140,.65);
    border: #e6e5e6 solid 1px;
    padding: 50px 50px;
}

.timeline-wrp {
    -webkit-box-shadow: -4px 9px 56px -14px rgba(140,137,140,.65);
    -moz-box-shadow: -4px 9px 56px -14px rgba(140,137,140,.65);
    box-shadow: -4px 9px 56px -14px rgba(140,137,140,.65);
    border: #e6e5e6 solid 1px;
    margin: 50px 0;
    padding: 50px 60px;
}

#pricingwrp {
    margin: 0;
    background: #fff;
    padding: 100px 0 100px 0;
}

.address {
    padding: 20px;
}

    .address ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .address ul li {
            font-size: 14px;
            display: block;
            padding: 0 0 30px 0;
        }

    .address .fa {
        font-size: 30px;
        color: #104478;
    }

.divLft {
    float: left;
    margin-right: 10px;
}

.gray-line {
    width: 1px;
    background: #ddd;
    display: block;
    height: 335px;
    margin: 0 auto;
}

.privacyTab {
    background: #f0f0f0;
    padding: 10px;
    cursor: pointer;
    border: #d5d5d5 solid 2px;
}

    .privacyTab .fa {
        color: #104478;
        margin-right: 10px;
    }

.mrgn_Btom_20 {
    margin-bottom: 20px;
}

.collapseGryBox {
    padding: 10px 20px;
    border: #d5d5d5 solid 2px;
    font-size: 13px;
    line-height: 22px;
    background: #fff;
    border-top: none;
}

label {
    display: inline-block;
    margin-bottom: .5rem;
    font-weight: 700;
    font-size: 14px;
}

.add-logo {
    width: 70px;
    height: 70px;
    float: left;
    text-align: center;
    line-height: 70px;
}

.choosefile {
    width: 240px;
    float: right;
    padding-top: 30px;
}

.globelTbl {
    border-collapse: collapse;
    width: 100%;
}

    .globelTbl th {
        text-align: left;
        background-color: #ebecee;
        color: #000;
        border: 1px solid #878988;
        padding: 8px;
        white-space: nowrap !important;
        font-size: 14px;
    }

    .globelTbl td {
        border: 1px solid #878988;
        padding: 8px;
        font-size: 14px;
    }

table.dataTable {
    clear: both;
    margin-bottom: 6px !important;
    max-width: none !important;
    border-collapse: collapse !important;
    border-spacing: 0;
}

.visa-card {
    border: #bfbfbf solid 1px;
    background: #fff;
    padding: 5px 15px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    width: 100%;
}

.billing-plan .col-md-3 {
    margin-bottom: 20px;
}

.fraud-check {
    margin-left: 0;
}

    .fraud-check .fa {
        color: #104478;
        font-size: 25px;
    }

.compliance-check .fa {
    color: #f7d442;
    font-size: 25px;
}

.compliance-check ul, .fraud-check ul {
    margin-top: 10px;
    list-style: none !important;
}

.compliance-check p, .fraud-check p {
    font-weight: 700;
    margin: 0;
    padding: 0;
    margin-top: 20px;
}

.compliance-check h2, .fraud-check h2 {
    margin-top: 10px;
    color: #000;
    font-size: 15px;
    font-weight: 700;
}

.compliance-check ul li label, .fraud-check ul li label {
    font-weight: 400;
}

.defaultTbl {
    border-left: #d1d0d1 solid 1px;
    border-bottom: #d1d0d1 solid 1px;
}

    .defaultTbl th {
        background: #ebecee;
        border: #d1d0d1 solid 1px;
        border-bottom: none;
        border-left: none;
        padding: 10px 15px;
        font-size: 16px;
        font-weight: 700;
    }

div.dataTables_wrapper div.dataTables_info {
    padding-top: .85em;
    white-space: nowrap;
    font-size: 14px;
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    white-space: nowrap;
    font-size: 14px;
}

.defaultTbl td {
    border: #d1d0d1 solid 1px;
    padding: 10px 15px;
    border-bottom: none;
    border-left: none;
    font-size: 14px;
}

.page-item.active .page-link {
    background-color: var(--background-color);
    border-color: var(--color);
    color: var(--w-color);
}

.custom-select {
    border: 1px solid #d1d0d1 !important;
    border-radius: 0 !important;
}

.form-control-sm {
    border-radius: 0 !important;
}

.progress-txt {
    float: left;
    width: 20%;
    margin-right: 15px;
    white-space: nowrap;
}

.progress-output {
    float: right;
    width: 70%;
}

.btnGroup {
    padding: 40px 0;
}

    .btnGroup button {
        margin: 0 0 10px 0;
        width: 150px;
    }

.greenColor {
    color: #2a7a02;
    font-size: 14px;
    margin-left: 10px;
}

.img-border {
    box-shadow: 0 0 3px 0 #dad7d7;
    border: #c0bfc0 solid 1px;
}

.area-show {
    display: block !important;
}

.area-hide {
    display: none !important;
}

.sidebar .dropdown-menu {
    background: #fff !important;
    border: none !important;
}

.dropdown a {
    font-size: 15px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 20px;
    font-weight: 500;
}

    .dropdown a:hover {
        color: #656565;
    }

.sidebar .dropdown-item:focus, .sidebar .dropdown-item:hover, .dropdown-item.active, .dropdown-item:active {
    background-color: var(--w-background-color);
    color: var(--color);
}

.cardTitle {
    color: #000;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 16px;
}

.cardText {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.cardouter {
    height: 270px;
    margin-bottom: 20px;
}

#founder {
    background: #f5f5f5;
    padding: 100px 0;
}

.planBox {
    background-color: #fff;
    background-clip: border-box;
    border-radius: 0;
    box-shadow: 0 0 3px 0 #dad7d7;
    border: #c0bfc0 solid 1px;
    padding: 10px;
    margin-bottom: 20px;
    font-weight: 700;
    min-height: 150px;
}

.disabled {
    color: #fff;
    background-color: transparent;
    border-color: none;
    cursor: no-drop;
}

.planBox {
    background-color: #fff;
    background-clip: border-box;
    border-radius: 0;
    box-shadow: 0 0 3px 0 #dad7d7;
    border: #c0bfc0 solid 1px;
    padding: 10px;
    margin-bottom: 20px;
    font-weight: 400;
    min-height: 135px;
}

button.close:hover {
    color: #000;
}

.companyLogo {
    background: #104478;
    border: #3079ed solid 1px;
    font-size: 14px;
    color: #fff;
    border-radius: 3px;
    text-transform: uppercase;
}

.popupclose {
    background: #f4f4f4;
    border: #d8d8d8 solid 1px;
    color: #000;
    font-size: 14px;
    border-radius: 3px;
    min-width: 80px;
}

.modal-header h4 {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 700;
}

.logoName {
    font-size: 14px;
}

.alert-dismissable .close, .alert-dismissible .close {
    top: 0;
    right: -8px;
}

button:focus {
    outline: transparent !important;
}

.fa fa-upload, .fa-trash-o {
    cursor: pointer;
}

.list-group-item {
    padding: 0 5px 0 10px;
    line-height: 40px;
}

li.list-group-item i.fa-trash-o {
    position: relative;
    top: 2px;
    color: #dc3545 !important;
    background: #fff !important;
    padding: 7px 5px 7px 10px !important;
    margin-bottom: 8px !important;
    border-radius: 5px !important;
}

#additionalEmails_Area p {
    font-weight: 700;
}

.dashboardCard {
    box-shadow: none !important;
}

    .dashboardCard .progress {
        height: 7px;
    }

    .dashboardCard .card-header {
        padding: 10px 10px;
        font-size: 14px;
        border: none;
        font-weight: 400;
        border-bottom: #e7eaec solid 1px;
        border-radius: 0;
        color: #000;
        font-weight: 500;
    }

        .dashboardCard .card-header label {
            font-size: 12px;
        }

    .dashboardCard .card-footer {
        padding-top: 0;
        padding-bottom: 30px;
        font-size: 18px;
        border: none;
        border-radius: 0;
        background: #fff;
    }

        .dashboardCard .card-footer .pay-btn {
            text-transform: none;
        }

    .dashboardCard .form-group {
        margin-bottom: 0;
    }

    .dashboardCard .form-control {
        margin-bottom: 0;
        padding: 0;
        font-size: 13px;
        height: 26px;
        border-radius: 0;
        border: 1px solid #e1e5eb;
    }

    .dashboardCard .card {
        padding: 50px 0 0 0;
        margin: 50px 0 0 0;
    }

        .dashboardCard .card h1 {
            font-size: 20px;
            font-weight: 700;
        }

    .dashboardCard .card-body h2 {
        font-size: 35px;
        font-weight: 700;
        color: #3d5170;
        text-align: center;
    }

    .dashboardCard .card .pay-btn {
        margin-top: 20px;
    }

.activityBox {
    background: #f3f3f4;
    margin-bottom: 26px;
    padding: 8px;
    font-size: 13px;
    font-weight: 500;
}

    .activityBox img {
        margin-right: 5px;
        width: 20px !important;
        height: 20px !important;
    }

div.icon-hover > small {
    display: block;
    font-weight: 600;
}

.inline-right {
    display: inline !important;
    float: right !important;
}

.inline-left {
    display: inline !important;
    float: left !important;
}

div[data-contact=IsContactDetails] {
    display: block;
}

div[data-bank=IsBankDetails] {
    display: none;
}

.passwordBox {
    padding: 40px 30px;
    margin: 50px 0 150px 0;
    text-align: center;
}

    .passwordBox h1 {
        font-size: 25px;
        margin-bottom: 25px;
        color: #fff;
    }

    .passwordBox p {
        color: #fff;
        font-size: 16px;
    }

#dropArea {
    background: #fff;
    text-align: center;
    width: 100%;
    color: #000;
}

    #dropArea .drag-text {
        font-size: 17px;
        margin-top: 65px;
        font-weight: 500;
    }

        #dropArea .drag-text .fa {
            cursor: pointer !important;
            font-size: 30px;
            color: #104478;
        }

.tooltip-inner {
    text-align: left;
    white-space: nowrap;
    max-width: 100% !important;
    width: 100%;
}

.CEO {
    color: #585858;
    font-weight: 400;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 23px;
}

table.dataTable thead .sorting:after, table.dataTable thead .sorting:before, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_asc:before, table.dataTable thead .sorting_asc_disabled:after, table.dataTable thead .sorting_asc_disabled:before, table.dataTable thead .sorting_desc:after, table.dataTable thead .sorting_desc:before, table.dataTable thead .sorting_desc_disabled:after, table.dataTable thead .sorting_desc_disabled:before {
    content: "" !important;
}

.KYCform .blueBtn {
    min-width: 150px !important;
}

.requestKYC a {
    color: #104478;
    text-decoration: underline;
}

.KYCform {
    margin: 20px;
}

.successPopup {
    margin: 20px 0;
    text-align: center;
}

    .successPopup img {
        margin-bottom: 20px;
    }

    .successPopup .text {
        margin-bottom: 20px;
        color: #545454;
        font-size: 16px;
        line-height: 25px;
    }

.CEOPic {
    box-shadow: 0 0 10px #cecfd0;
    padding: 10px;
    background: #fff;
}

.fraudstersTxt {
    padding-top: 80px;
    padding-right: 50px;
}

    .fraudstersTxt p {
        font-size: 14px;
        line-height: 30px;
    }

.fraudstersTxtWrp {
    padding-top: 0;
    padding-right: 47px;
    padding-bottom: 0;
    padding-left: 0;
}

.boxBorder {
    position: absolute;
    width: 230px;
    height: 90px;
    border-top: #343434 solid 6px;
    border-left: #343434 solid 6px;
}

.rightslidertextbox {
    position: absolute;
    min-height: 230px;
}

.rightslidertextbox {
    position: relative;
}

.boxBorderright {
    position: absolute;
    width: 230px;
    height: 90px;
    border-right: #489ddd solid 6px;
    border-bottom: #489ddd solid 6px;
    bottom: 0;
    right: 0;
}

.rightslidertextbox h1 {
    margin-left: 30px;
    margin-top: 70px;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 500 !important;
}

.rightslidertextbox p {
    margin-left: 30px;
    font-size: 15px;
    line-height: 22px;
    padding-right: 50px;
}

.linkColor {
    color: #003ea1;
}

#parent {
    display: table;
    height: 250px;
}

#child {
    display: table-cell;
    vertical-align: middle;
}

.pay-btn .fa-envelope {
    font-size: 11px;
}

.bootstrap-datetimepicker-widget table th {
    height: 20px;
    line-height: 20px;
    width: 20px;
    font-size: 12px;
}

.bootstrap-datetimepicker-widget table td.day {
    height: 20px;
    line-height: 20px;
    width: 20px;
    font-size: 11px;
}

.note {
    font-size: 14px;
    margin-bottom: 20px;
}

.sliderimagborder {
    padding: 10px;
    border: #fff solid 2px;
    background: #fff;
    margin: 20px 0;
}

.swlClose {
    position: absolute !important;
    top: 0;
    right: 7px;
    font-weight: 500;
}

.fa-envelope, .fa-pencil, .fa-trash {
    display: none;
}

.form-inline .form-control {
    height: 32px;
    margin-right: 10px;
    font-size: 14px;
}

.signupHome {
    padding: 80px 0 0 20px;
}

    .signupHome .blueBtn {
        padding: 10px 40px;
        margin-top: 20px;
    }

    .signupHome p {
        font-size: 11px;
        color: #000;
        font-weight: 400 !important;
        line-height: 25px;
    }

.mrgnTop {
    margin-top: 109px !important;
}

.BillingCardWrp {
    margin-bottom: 10px;
}

.DebitCard {
    float: left;
    width: 302px;
}

.Cardexpiry {
    float: left;
    width: 75px;
}

.CVC {
    float: left;
}

.btn:disabled {
    cursor: not-allowed !important;
}

.r-unread, tr.r-unread td:first-child > a, tr.r-unread td:not(:last-child) > a {
    color: #c50707 !important;
    font-weight: 600 !important;
}

section[data-hasPlan=true] {
    display: block !important;
}

section[data-hasPlan=false] {
    display: none !important;
}

.ready {
    font-size: 50px;
    position: relative;
}

#customers {
    background: #fff;
    padding: 100px 0;
}

.bubbleBox {
    position: relative;
    background: #eae6e6;
    border-radius: .4em;
    font-size: 18px;
    padding: 10px;
}

    .bubbleBox:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 15%;
        width: 0;
        height: 0;
        border: 15px solid transparent;
        border-top-color: #eae6e6;
        border-bottom: 0;
        margin-left: -15px;
        margin-bottom: -15px;
    }

.customersInfowrp {
    margin: 20px 0;
}

.customersInfbox {
    float: left;
}

.customersName {
    margin-top: 10px;
}

.source1, .source2, .source3 {
    padding: 0;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 700;
    display: block;
    text-align: right;
    padding-right: 140px;
}

.source2 {
    padding-right: 105px;
}

.source3 {
    padding-right: 240px;
}

.divLft {
    float: left;
    width: 10%;
}

.divRgt {
    float: right;
    width: 84%;
}

    .divRgt h1 {
        margin: 0;
        padding: 0;
        font-size: 16px;
        text-transform: none;
        margin-bottom: 10px;
    }

    .divRgt p {
        margin: 0;
        padding: 0;
        font-size: 14px;
        font-weight: 400;
        line-height: 25px;
    }

.bannerTxt h1 {
    color: #fff;
    font-size: 55px;
    text-transform: none;
}

.bannerTxt h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    margin-top: 0;
    line-height: 40px;
}

.banner {
    margin: 0 auto;
    text-align: center;
}

#grayBox {
    background: #f9f9f9;
    padding: 80px 0;
}

#video {
    background: #f9f9f9;
    padding: 100px 0;
}

#helpYou {
    background: #fff;
    background-image: url(/Content/img/help-you.jpg);
    position: relative;
    background-position: center;
    background-size: cover;
    margin: 100px 0;
    height: 656px;
}

    #helpYou h1 {
        margin-top: 100px;
        margin-bottom: 50px;
    }

    #helpYou h2 {
        margin-bottom: 50px;
        font-size: 20px;
        color: #000;
    }

    #helpYou h3 {
        margin-bottom: 30px;
        font-size: 20px;
        color: #000;
    }

    #footer a:hover, #helpYou a:hover {
        color: #fff;
    }

#testimonial {
    padding: 0 0 100px 0;
    background: #fff;
}

#fraudsters, #integrate {
    background: #f5f5f5;
    padding-top: 60px;
    padding-bottom: 60px;
}

.site-section-heading {
    font-size: 45px;
    margin-bottom: 70px;
    padding: 0;
    color: #000;
    font-weight: 500;
    text-transform: none;
}

.address .divLft {
    float: left;
    margin-right: 10px;
    width: auto !important;
}

#clientLogo {
    background: #f5f7f7;
    border-bottom: #e5e2e2 solid 2px;
    padding: 10px 0;
}

.we-recommend {
    margin: 0;
    margin-bottom: 20px;
    border: #bfbfbf solid 1px;
    position: relative;
    min-height: 300px;
}

    .we-recommend .card-header {
        font-weight: 700;
        padding: 5px 10px;
        font-size: 18px;
    }

        .we-recommend .card-header img {
            margin-right: 10px;
        }

.magn2 {
    margin-left: 2%;
}

.or {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #fc9f5b;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    top: 130px;
    right: -23px;
    z-index: 1;
}

.saveDocs {
    float: right;
}

.recommend-head {
    font-size: 17px;
    margin-top: 69px;
    margin-bottom: 45px;
}

.stepWrp {
    text-align: center;
    border-right: #656565 solid 2px;
    box-sizing: border-box !important;
}

.stepNo {
    text-transform: uppercase;
    font-size: 20px;
}

.stepImg {
    width: 80px;
    height: 80px;
    background: #62bb46;
    border-radius: 50%;
    padding: 20px 19px;
    margin: 30px auto;
}

.stepTitle {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px !important;
    margin-top: 33px;
}

.steptxt {
    font-size: 14px;
}

.planFeatures {
    font-size: 25px;
    margin: 30px 0 20px 0;
    font-weight: 700;
}

.planFeaturesList {
    font-size: 14px;
    margin: 30px 0;
}

    .planFeaturesList ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .planFeaturesList ul li {
            list-style: none;
            margin: 0;
            padding: 0;
            line-height: 30px;
        }

            .planFeaturesList ul li .fa {
                color: #61b845;
                font-weight: bolder;
                margin-right: 5px;
            }

.text-danger {
    color: #dc3545 !important;
    font-weight: 400 !important;
    font-size: 11px !important;
}

.form-check {
    font-size: 14px !important;
}

.progress-bar {
    background-color: #104478 !important;
}

.refresh {
    cursor: pointer;
}

    .refresh .fa {
        margin-right: 5px;
    }

.badge {
    color: var(--badge-color);
    border-color: var(--border-color);
    box-shadow: none;
    padding: 8px !important;
    border-radius: 50% !important;
    height: 30px;
    width: 30px;
    top: 5px;
    background: var(--background-color);
    position: relative;
    min-width: 16px;
}

.supplier-profile-card {
    border-radius: 0;
    margin-bottom: 15px;
}

.supplier-profile-card-title {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 18px;
}

.supplier-profile-card-inr {
    background: #fff;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 0;
    border: #d3e1d8 solid 1px;
}

    .supplier-profile-card-inr .form-group {
        margin-bottom: 5px !important;
    }

    .supplier-profile-card-inr label {
        margin-bottom: 0 !important;
    }

.supplier-profile-add {
    width: auto;
    background: var(--background-color);
    padding: 3px 15px;
    font-size: 13px;
    color: var(--w-color);
    border-radius: 0;
    font-weight: 500;
}

.supplier-profile-card-inr .fa {
    color: var(--w-color);
    font-size: 15px;
    background: var(--background-color);
    padding: 5px 5px;
    border-radius: 0;
}

.supplier-profile-card-inr .form-group {
    margin-bottom: 0;
}

.fa-pencil, .supplier-profile-card-inr .fa-trash {
    display: inline-block;
}

.supplier-profile-card-inr .form-group p label {
    font-size: 14px;
    font-weight: 400;
}

.uploadedNumber {
    font-size: 15px;
    color: #000;
    text-align: center;
    margin-top: 24px;
}

.nextChange {
    background: #ffb912;
    font-size: 14px;
    color: #000;
    text-align: center;
    padding: 10px;
    margin-bottom: 0;
    margin-top: 40px;
    border-radius: 30px;
    font-weight: 700;
}

#nextBtn, #prevBtn {
    background: #60bb46;
    border-radius: 2px;
    color: #fff;
    font-size: 12px;
    min-width: 80px;
    margin: 0 5px;
    font-weight: 500;
    border: none;
    padding: 10px;
}

.add-another-user {
    background: #104478;
    border-radius: 3px;
    color: #fff;
    font-size: 13px;
    min-width: 80px;
    font-weight: 700;
    border: none;
    padding: 10px;
}

    .add-another-user .fa-plus-circle {
        font-size: 20px;
        margin-right: 5px;
    }

ul.bulletlist {
    margin: 0;
    padding: 0;
    margin-left: 0;
    margin-bottom: 20px;
}

    ul.bulletlist li {
        list-style: none;
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 10px;
    }

.logoInnr {
    width: 170px !important;
}

#addMultiUserForm select {
    width: 90% !important;
    display: inline-block;
}

#addMultiUserForm i.fa-trash-o {
    top: -30px !important;
    position: relative !important;
    left: 244px;
}

.animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,5%,0);
        transform: translate3d(0,5%,0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@-moz-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,5%,0);
        transform: translate3d(0,5%,0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,5%,0);
        transform: translate3d(0,5%,0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

#snackbar {
    visibility: hidden;
    min-width: 40%;
    color: #721c24;
    margin-left: -125px;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    text-align: center;
    border-radius: 4px;
    padding: 10px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

    #snackbar.show {
        visibility: visible !important;
        -webkit-animation: fadein .5s,fadeout .5s 2.5s;
        animation: fadein .5s,fadeout .5s 2.5s;
    }

.scanInvoices .col-md-5 {
    -ms-flex: 0 0 45.666667%;
    flex: 0 0 45.666667%;
    max-width: 45.666667%;
}

.top100 {
    margin-top: 115px;
}

.promoCode {
    padding: 30px 0 30px 40px;
    background: #feefe4;
    border: #fde5d3 solid 1px;
    margin-top: 40px;
}

    .promoCode span {
        margin-bottom: 10px;
    }

.btn:hover {
    color: #fff !important;
}

.adEmailId {
    margin-top: 25px;
}

.page-link, .page-link:hover {
    color: var(--color);
}

.manageInvoice {
    font-size: 13px;
    min-height: 288px;
}

.strong {
    font-weight: 700;
    font-size: 14px;
    line-height: 30px;
}

.manageInvoice .card-footer {
    background: #fff;
}

.manageInvoice .card-header {
    border: none;
}

    .manageInvoice .card-header img {
        margin-right: 10px;
    }

    .manageInvoice .card-header h1 {
        font-size: 17px;
        margin: 0;
        padding: 0;
        font-weight: 700;
    }

    .manageInvoice .card-header h2 {
        font-size: 15px;
        color: #4b4b4b;
        font-weight: 700;
    }

.topborder {
    height: 8px;
    background: #39ae68;
    background: -moz-linear-gradient(90deg,#39ae68 45%,#60bb46 100%);
    background: -webkit-linear-gradient(90deg,#39ae68 45%,#60bb46 100%);
    background: linear-gradient(90deg,#39ae68 45%,#60bb46 100%);
}

.achriveWrp {
    float: right;
    text-align: center;
    font-size: 12px;
}

    .achriveWrp img {
        margin-top: 5px;
        margin-bottom: 5px;
    }

.goBack {
    width: 320px;
    margin: 0 auto;
}

    .goBack div {
        float: left;
        font-size: 14px;
        color: #4b4b4b;
        height: 35px;
        line-height: 35px;
    }

        .goBack div .fa {
            background: #fff;
            color: #4b4b4b;
            border: 1px solid #bfbfbf;
            font-size: 32px;
            font-weight: bolder;
            height: 35px;
            width: 35px;
            text-align: center;
            margin-right: 10px;
            margin-left: 10px;
        }

.manageRefresh {
    background: #ffb913;
    border-radius: 30px;
    padding: 6px 18px;
    color: #fff;
    font-size: 20px;
    font-weight: 300;
}

    .manageRefresh:hover {
        color: #fff !important;
    }

.tooltipWrp {
    width: 320px;
    height: 150px;
    background: #fff;
}

.tooltipImg {
    width: 100px;
    height: 150px;
    background: #3f4851;
    float: left;
    text-align: center;
}

    .tooltipImg img {
        margin-top: 70px;
    }

.tooltiptxt {
    float: left;
    width: 200px;
    padding-left: 10px;
}

    .tooltiptxt h1 {
        font-size: 30px;
        font-weight: 800;
    }

    .tooltiptxt p {
        font-size: 15px;
    }

.crossBtn {
    display: block;
    height: 30px;
}

    .crossBtn .fa {
        float: right;
        line-height: 30px;
    }

@-moz-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@-moz-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

.text-white {
    color: #000 !important;
}

    .text-white:hover {
        color: #000 !important;
    }

.dashboardLinktxt {
    font-size: 16px;
    font-weight: 500;
    width: 230px;
    margin: 0 auto;
    height: 90px;
}

.dashboardLinkTitle {
    margin-top: 9px;
    margin-bottom: 30px;
    font-size: 30px;
    line-height: 42px;
    font-weight: 700;
    letter-spacing: -2px;
}

.dashboardLink {
    margin-top: 25px;
    margin-bottom: 25px;
}

    .dashboardLink .fa {
        font-size: 25px;
        color: #fff;
    }

.dahboardTitle {
    padding: 6px 14px 5px 14px;
}

.dashboardLinkBtn {
    position: relative;
    padding: 10px 24px;
    border-style: solid;
    border-width: 2px;
    border-color: var(--border-color);
    border-radius: 5px;
    background-color: var(--background-color);
    box-shadow: inset 0 0 100px 100px transparent;
    -webkit-transition: box-shadow .2s ease;
    transition: box-shadow .2s ease;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    width: 220px;
    margin-bottom: 20px;
}

    .dashboardLinkBtn:hover {
        box-shadow: inset 0 0 100px 100px rgba(0,0,0,.2);
        text-decoration: none;
    }

.dashboardBox {
    
    border: 1px solid rgba(0,0,0,.125);
    background: #fff;
    margin-bottom: 0px;
    margin-top:20px;
    text-align:center;
    
    
}

.dashboardBoxRecord {
    border: 1px solid rgba(0,0,0,.125);
    background: #fff;
    margin-bottom: 0px;
    margin-top: 0px;
    text-align: center;
    padding:10px;
    border-top:none;
    margin-bottom:20px;
}

    .dashboardLinTitle {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
    }

a#btnLogOut {
    color: var(--color) !important;
}

.dashboardColmn .col-md-2 {
    padding-left: 0;
    padding-right: 0;
}

.actionWrp {
    margin-bottom: 30px;
}

    .actionWrp h2 {
        text-align: left;
        font-size: 30px;
        color: #000;
        font-weight: 500;
        margin-top: 15px;
        margin-left: 32px;
    }

    .actionWrp h3 {
        text-align: left;
        margin: 0;
        padding: 0;
        font-size: 11px;
        text-transform: uppercase;
        margin-left: 10px;
    }

.oldactionWrp {
    margin-bottom: 0px;
}

    .oldactionWrp h2 {
        text-align: left;
        font-size: 30px;
        color: #000;
        font-weight: 500;
        margin-top: 15px;
        margin-left: 32px;
    }

    .oldactionWrp h3 {
        text-align: left;
        margin: 0;
        padding: 0;
        font-size: 11px;
        text-transform: uppercase;
        margin-left: 10px;
    }

.Textoverlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .8s ease;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 11px rgba(33,33,33,.2);
    border-color: #000;
}

.actionWrp:hover .Textoverlay {
    opacity: 1;
    cursor: pointer;
}

.actionWrp:hover .Textoverlay1 {
    opacity: 1;
    cursor: pointer;
}

.oldactionWrp:hover .Textoverlay {
    opacity: 1;
    cursor: pointer;
}

.oldactionWrp:hover .Textoverlay1 {
    opacity: 1;
    cursor: pointer;
}

.actionText {
    color: #000;
    font-size: 11px;
    position: absolute;
    text-align: center;
    width: 100%;
    padding: 10px 10px !important;
    line-height: 12px;
}

    .actionText p {
        margin-top: 10px;
    }

    .actionText a {
        color: var(--color);
        font-weight: 800;
        margin-top: 10px;
    }

.dashbaordActionIcon {
    width: 22px;
    float: left;
}

.dashbaordActionTitle {
    float: left;
}

.noMargin {
    margin-left: 0;
    margin-right: 0;
}

.manageInvoice .card-body {
    min-height: 310px !important;
}

.top-link-btn-wrp {
    margin-top: 10px;
}

.top-link-btn {
    border: var(--border-color) solid 1px;
    padding: 5px 5px 5px 5px;
    border-radius: 3px;
    display: inline-block;
}

.margnTop {
    margin-top: 14px;
}

.freePassWrp {
    background: #fff;
    padding: 15px;
    margin-top: 30px;
}

    .freePassWrp .Div1 {
        float: left;
        margin-right: 13px;
    }

    .freePassWrp .Div2 {
        float: left;
    }

        .freePassWrp .Div2 input {
            width: 180px;
            height: 40px;
            border-radius: 3px;
            font-size: 14px;
            color: #000;
            border-color: #bfbfbf;
        }

    .freePassWrp .Div3 {
        float: right;
    }

        .freePassWrp .Div3 .submitBtn {
            height: 40px;
        }

.trialExpiredWrp {
    width: 520px;
    margin: 100px auto;
}

    .trialExpiredWrp h1 {
        font-size: 30px;
        margin: 0;
        padding: 0;
        font-weight: 700;
        color: #656565;
        text-align: center;
        margin-bottom: 38px;
    }

    .trialExpiredWrp h2 {
        margin: 0;
        padding: 0;
        font-size: 25px;
        font-weight: 700;
        color: #656565;
        text-align: center;
        margin-bottom: 20px;
    }

    .trialExpiredWrp h3 {
        font-size: 20px;
        margin: 0;
        padding: 0;
        font-weight: 700;
        color: #656565;
        text-align: center;
    }

    .trialExpiredWrp .formWrp {
        height: 50px;
        margin-top: 50px;
    }

.formWrp .payTxt {
    float: left;
    font-size: 14px;
    font-weight: 700;
    height: 32px;
    line-height: 28px;
    margin-right: 20px;
}

.formWrp .pond {
    border: #ddd solid 1px;
    padding: 4px 10px 1px 10px;
    float: left;
    height: 31px;
}

.formWrp .amountTxtbox {
    padding: 0 10px 1px 10px;
    float: left;
}

.quickBooxbox {
    float: left;
    width: 240px;
    text-align: center;
    margin-bottom: 90px;
    margin-top: 20px;
}

.availableQukXero {
    text-align: center;
    line-height: 20px;
    margin-bottom: 2px;
}

.xerobox {
    float: left;
    width: 240px;
    text-align: center;
    margin-bottom: 90px;
    margin-top: 43px;
}

    .quickBooxbox img, .xerobox img {
        margin-bottom: 18px;
    }

    .quickBooxbox .btn-primary, .xerobox .btn-primary {
        height: auto !important;
    }

        .quickBooxbox .btn-primary:focus, .xerobox .btn-primary:focus {
            border: none !important;
        }

.xerobox {
    margin-left: 30px;
}

.ErpTitle {
    font-size: 25px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 40px;
}

.sync {
    padding: 5px 12px;
    font-size: 14px;
}

    .sync .fa {
        border: #1a7321 solid 1px;
        border-radius: 50%;
        padding: 5px;
        color: #1a7321;
        margin-right: 10px;
    }

.connectedBox {
    border: 1px solid rgba(0,0,0,.125);
    text-align: center;
    margin: 40px 0;
    padding-bottom: 40px;
}

    .connectedBox h3 {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 35px;
    }

    .connectedBox .btn-primary {
        margin-top: 48px !important;
        margin-bottom: 25px !important;
        width: 128px !important;
        font-size: 14px !important;
        height: auto !important;
    }

.formWrp .amountTxtbox {
    float: left;
    font-size: 14px;
    font-weight: 700;
    height: 32px;
    line-height: 32px;
}

.formWrp .monthTxt {
    float: left;
    font-size: 14px;
    font-weight: 700;
    margin-left: 10px;
    height: 32px;
    line-height: 28px;
}

.EmailalertBox {
    width: 100%;
    position: relative;
    z-index: 0;
    top: 0;
    min-width: 100%;
    padding: 15px;
    right: 0;
    background: #fbf2f2;
    border: #f8b6b6 solid 1px;
    border-radius: 3px;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 22px !important;
}

    .EmailalertBox h6 {
        margin-bottom: 5px;
        color: #f00;
        font-weight: 700;
    }

.PricingSubscriptionBox2 {
    width: 574px;
    margin: 0 auto;
    padding: 60px 98px !important;
}

    .PricingSubscriptionBox2 h2 {
        font-size: 18px !important;
    }

.unverifiedEmails {
    background: #fbf2f2;
    border: #f8b6b6 solid 1px;
    padding: 20px;
}

    .unverifiedEmails p {
        margin: 0;
        padding: 0;
        font-size: 14px;
        margin-bottom: 5px;
        font-weight: 400;
    }

    .unverifiedEmails .title {
        color: #f00 !important;
        font-size: 15px;
        margin-bottom: 10px;
    }

.font16 {
    font-size: 16px;
    font-weight: 500;
}

.beta {
    background: var(--background-color);
    color: var(--w-color);
    font-weight: 400;
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 3px;
    margin-left: 10px;
}

    .beta .fa {
        margin-right: 3px;
    }

.yelloBtn {
    position: relative;
    padding: 10px 24px;
    border-style: solid;
    border-width: 2px;
    border-color: #104478;
    border-radius: 5px;
    background-color: #104478;
    box-shadow: inset 0 0 100px 100px transparent;
    -webkit-transition: box-shadow .2s ease;
    transition: box-shadow .2s ease;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    margin-top: 20px;
}

    .yelloBtn a {
        color: #fff;
        text-decoration: none;
    }

.pad-r {
    padding-right: 0;
}

.pad-r-l {
    padding-left: 0;
    padding-right: 0;
}

.alink {
    padding: .5em 1em;
    color: #444;
    border: 1px solid #bfbfbf;
    background: linear-gradient(to bottom,#fff 5%,#f5f5f5 100%);
    text-decoration: none;
    border-radius: 2px;
    --webkit-box-shadow: 0 0 2px rgba(0,0,0,.25);
    box-shadow: 0 0 2px rgba(0,0,0,.25);
    font-size: 14px;
}

    .alink a {
        font-size: 14px;
    }

.selectCountrtwrp {
    float: right;
    margin-top: 30px;
}

    .selectCountrtwrp ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .selectCountrtwrp ul li {
            display: inline-block;
            list-style: none;
            margin: 0;
            padding-left: 5px;
        }

            .selectCountrtwrp ul li label {
                font-weight: 500 !important;
            }

            .selectCountrtwrp ul li .fa-angle-down {
                font-weight: 700 !important;
                font-size: 20px;
                position: relative;
                top: 3px;
            }

#selectCountry, #selectTimeZone {
    font-size: 14px;
    padding: 3px 5px;
    border-radius: 3px;
    border: #bfbfbf solid 1px;
}

.SubscriptionBox .col-md-1 {
    -ms-flex: 0 0 7.333333% !important;
    flex: 0 0 7.333333% !important;
    max-width: 7.333333% !important;
    padding-right: 0 !important;
}

.SubscriptionBox .col-md-11 {
    padding-left: 0 !important;
}

.form-control {
    font-size: 14px !important;
}

.pleaseNot {
    color: var(--color);
    font-weight: 700;
}

.addEmail {
    font-size: 22px;
    top: 16px;
    cursor: pointer;
    color: var(--color);
}

.DragOr {
    line-height: 50px;
}

.uploadInvList {
    min-height: 245px;
    overflow: auto;
    overflow-y: auto;
    max-height: 245px;
    height: 245px;
    padding: 5px;
}

ul.pagination {
    margin: 2px 0;
    white-space: nowrap;
    justify-content: flex-end;
    margin-right: 60px !important;
    margin-top: -22px !important;
}

.notificationPreBox {
    border: #d9d4d4 solid 1px;
    padding: 10px 20px;
    margin-bottom: 20px;
    border-radius: 3px;
}

    .notificationPreBox small {
        display: block;
    }

.greenTitle {
    color: var(--color);
    font-weight: 600;
}

.ProfileSetup {
    background: #fff;
}

.addUserBox .col-4 {
    --ms-flex: 0 0 93.333333% !important;
    flex: 0 0 93.333333% !important;
    max-width: 93.333333% !important;
}

.plusBtn {
    background: 0 0;
    border: none;
    position: relative;
    right: 0;
    float: right;
    top: -28px;
}

    .plusBtn .fa-plus-circle {
        font-size: 20px;
        margin-right: 5px;
        color: #008764;
    }

.profileRgt {
    margin: 0;
    padding: 0;
}

    .profileRgt li {
        margin: 0;
        padding: 0;
        height: 50px;
        line-height: 50px;
    }

        .profileRgt li:last-child {
            margin-right: 20px;
        }

        .profileRgt li img {
            height: 35px;
            width: 35px;
            display: inline-block;
        }

span.breadcrumb {
    position: absolute;
    width: 158px;
    top: 172px;
    bottom: 0;
    right: 47px;
    height: 182px;
    font-size: 13px;
    padding: 10px 5px 5px 10px;
    background-color: #f7f8f7;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.31);
    margin-bottom: 0;
    border-radius: 3px;
    display: block;
}

.UnverifiedEmailsBox {
    background: #fff;
}

    .UnverifiedEmailsBox .badge {
        width: 24px !important;
        height: 24px !important;
        padding: 6px !important;
        position: relative;
        top: -1px;
    }

    .UnverifiedEmailsBox .title {
        font-size: 18px;
        padding: 0;
        font-weight: 700;
        color: #000;
        text-transform: none;
        margin-bottom: 8px;
        margin-top: 20px !important;
    }

.UnverifiedPinkBox {
    background: #fcf2f3;
    padding: 15px;
    margin-top: 20px;
}

.UnverifiedTblHeader {
    width: 100%;
    border: 1px solid #fcf2f3;
    padding: 8px 0;
}

.UnverifiedCard {
    width: 100%;
    border: 1px solid #f7d3d7;
    background: #fff;
    padding: 10px 10px 0 10px;
    margin-bottom: 14px;
}

    .UnverifiedCard .email {
        float: left;
        width: 80%;
    }

        .UnverifiedCard .email label {
            font-weight: 400 !important;
            margin-bottom: 10px;
        }

    .UnverifiedCard .contact {
        float: left;
        width: 10%;
    }

    .UnverifiedCard .blacklist {
        float: right;
        width: 10%;
        text-align: center;
    }

.UnverifiedTbl .form-check-input {
    margin-top: 0 !important;
}

.redEmail {
    color: #f00;
}

.r-blue {
    background: #00e;
    height: 8px;
    width: 100%;
}

.table-responsive {
    width: 100% !important;
}

.supplierDetaitxt {
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    margin-bottom: 20px;
}

.gray_card {
    background: #e6f2ea;
    padding: 10px 10px 10px 10px;
    border-radius: 3px;
    margin-bottom: 15px;
}

#selectERP .form-control {
    width: 220px !important;
}

.cantFind .subtitle {
    margin-top: 38px;
    position: relative;
    left: -38px;
    font-size: 15px;
    font-weight: 600;
}

table.cbody tr:nth-child(4) {
    vertical-align: baseline !important;
    cursor: pointer;
}

button[id^=btn-assign_] {
    background: #f2fcfa;
    border-radius: 2px;
    font-weight: 700;
    font-size: 12px;
    border: #038466 solid 1px !important;
}

    button[id^=btn-assign_]:focus {
        border: #038466 solid 1px !important;
    }

    button[id^=btn-assign_]:hover {
        color: #212529 !important;
        text-decoration: none !important;
    }

.form-group {
    white-space: pre-wrap !important;
    word-wrap: break-word !important;
    word-break: break-all !important;
    white-space: normal !important;
}

.multipleAccoyWrp {
    margin-top: 5px;
    display: flex !important;
}

    .multipleAccoyWrp .submitBtn {
        margin: 0 5px;
        min-width: 135px;
        padding: 0 !important;
        height: 35px;
    }

.badge-green {
    height: 22px;
    width: 23px;
    top: -2px;
}

span.badge-green > span {
    position: relative;
    left: -5px;
    font-size: 11px;
    top: -2px;
    font-weight: 500;
}

.fa-question-circle {
    cursor: pointer;
}

.cardNopad {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.rgtpad0 {
    padding-right: 0 !important;
}

.qr-code {
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12);
    border-radius: 4px;
}

.qr-text {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
}

.btn-light {
    border: #038466 solid 2px !important;
    background: #fff;
}

    .btn-light:hover {
        border: #038466 solid 2px !important;
        background: #fff;
        color: #000 !important;
        cursor: pointer !important;
    }

.alert-success {
    color: #000 !important;
    background-color: #e8f8f4 !important;
    border-color: #d0e6e1 !important;
}

.scrollTable {
    height: 270px !important;
    overflow: scroll !important;
    overflow-x: hidden !important;
    min-height: 270px;
}

.product-descriptions {
    height: 270px !important;
    overflow: scroll !important;
    overflow-x: hidden !important;
    min-height: 270px;
}

    .product-descriptions table th {
        border-bottom: #d1d0d1 solid 1px !important;
    }

    .product-descriptions table td {
        border-bottom: none !important;
        border-top: none !important;
    }

.tooltip {
    font-size: 14px !important;
    font-weight: 400;
}

.bs-tooltip-auto[x-placement^=top] .arrow::before, .bs-tooltip-top .arrow::before {
    border-top-color: #fbccd1;
}

.bs-tooltip-auto[x-placement^=right] .arrow::before, .bs-tooltip-right .arrow::before {
    border-right-color: #fbccd1;
}

.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .bs-tooltip-bottom .arrow::before {
    border-bottom-color: #fbccd1;
}

.bs-tooltip-auto[x-placement^=left] .arrow::before, .bs-tooltip-left .arrow::before {
    border-left-color: #fbccd1;
}

.tooltip-inner {
    max-width: 200px;
    padding: .25rem .5rem;
    color: #000 !important;
    text-align: center;
    background-color: #fcf2f3;
    border-radius: .25rem;
    border: #fbccd1 solid 1px !important;
}

.errorMessage {
    color: #f00;
    font-size: 11px;
    font-weight: 500;
    white-space: pre-wrap !important;
    word-wrap: break-word !important;
    word-break: break-all !important;
    white-space: normal !important;
}

.rescanPan, .rescanTax {
    margin-left: 10px;
    background: #ddd;
    padding: 1px 5px 1px 5px;
    font-size: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
    border: #058466 solid 1px;
    border-radius: 2px;
    cursor: pointer;
}

#manageInvoiceGrid_wrapper a {
    margin: 0 !important;
}

#manageInvoiceGrid_wrapper p {
    float: left !important;
}

#manageInvoiceGrid_wrapper .pay-btn, #manageInvoiceGrid_wrapper .viewBtn {
    padding: 0 3px !important;
    height: 28px !important;
    line-height: 28px !important;
    font-size: 11px !important;
    font-weight: 400;
    margin: 0 !important;
    min-width: 98px !important;
}

#manageInvoiceGrid_wrapper .defaultTbl td {
    padding: 10px 5px !important;
    font-size: 13px !important;
}

#manageInvoiceGrid_wrapper .lbl-archive {
    font-size: 11px !important;
}

#manageInvoiceGrid_wrapper .fa-folder-open-o {
    font-weight: 400 !important;
    font-size: 17px !important;
}

#manageInvoiceGrid_wrapper button[id^=btn-assign_] {
    font-size: 10px !important;
}

#manageInvoiceGrid_wrapper .loadingText:after {
    content: " .";
    animation: dots 2s steps(5,end) infinite;
    font: 300 2.5em/60% Impact !important;
}

#manageInvoiceGrid_wrapper td:nth-child(8) {
    width: 17% !important;
}

#manageInvoiceGrid_wrapper .Archive {
    right: 0 !important;
    border: var(--border-color) solid 1px;
    padding: 0 2px !important;
    height: 28px !important;
}

.cardWrp {
    border: #ddd solid 1px;
    color: #000;
    border-radius: 3px;
}

    .cardWrp .tabbing:hover {
        background: var(--btn-hover);
    }

.serachWrp {
    background: #fff !important;
    box-shadow: 0 0 21px 0 rgba(0,0,0,.08) !important;
    border: #ddd solid 1px !important;
    padding: 20px !important;
    width: 400px !important;
}

    .serachWrp label {
        text-align: left !important;
        display: block !important;
    }

    .serachWrp .form-group {
        margin-bottom: 10px !important;
    }

    .serachWrp .form-control {
        width: 100% !important;
    }

    .serachWrp .leftpad0 {
        padding-left: 2px !important;
    }

    .serachWrp .rgtpad0 {
        padding-right: 2px !important;
    }

    .serachWrp .resetBtn {
        background: #fff;
        border: var(--border-color) solid 2px;
        color: var(--color);
        font-size: 13px;
        min-width: 90px;
        border-radius: 3px;
        font-weight: 700;
        height: 32px;
        margin-top: 10px;
    }

    .serachWrp .applyBtn {
        background: var(--background-color);
        color: var(--w-color);
        font-size: 13px;
        min-width: 90px;
        border-radius: 3px;
        font-weight: 700;
        border: none;
        height: 32px;
        margin-left: 10px;
        margin-top: 10px;
    }

    .serachWrp .fa-close {
        border-radius: 50%;
        background: var(--background-color);
        color: var(--w-color);
        height: 20px;
        width: 20px;
        line-height: 20px;
        font-size: 12px;
        text-align: center;
        float: right;
    }

html {
    font-family: var(--font-family);
    position: relative;
    min-height: 100%;
}

body {
    font-family: var(--font-family);
    color: #222525;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    background: #f8f6f4;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

a:hover {
    text-decoration: none;
}

.page-banner-title {
    font-size: 45px;
    color: #fff;
    margin-top: 130px;
    font-weight: 900;
}

.page-banner-sub-title {
    color: #656565;
    font-size: 48px;
    margin-top: 0;
}

.nav-active {
    color: #104478 !important;
    font-weight: 900;
}

#newsflash {
    background: #ffb913;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 800;
}

#bannerWrp {
    width: 100%;
    position: relative;
    background: #104478 url(/Content/img/header-wrp.jpg) center top no-repeat;
    background-size: cover;
    height: 750px;
}

#gryBg {
    background: #d2d2d2;
    padding-top: 50px;
    padding-bottom: 100px;
}

#ready-to-start-wrp {
    width: 100%;
    position: relative;
    background: #d2d2d2 url(/Content/img/ready-to-start-wrp.jpg) center top no-repeat;
    background-size: cover;
    height: 450px;
    padding-top: 80px;
    margin-bottom: 30px;
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0,0,0,.5);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #636466;
    letter-spacing: 3px;
    font-weight: 700;
}

.signIn {
    color: #104478 !important;
}

    .signIn span {
        color: #fff !important;
        font-weight: 700;
        background: #60bb46;
        border-radius: 30px !important;
        padding: 10px 20px !important;
    }

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: -15px;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
}

    .carousel-indicators li {
        position: relative;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        margin-right: 3px;
        margin-left: 3px;
        text-indent: -999px;
        cursor: pointer;
        background-color: #91c7e9;
    }

    .carousel-indicators li {
        background-color: #96f379 !important;
    }

    .carousel-indicators .active {
        background-color: #ffb913 !important;
    }

.protectBox {
    margin-bottom: 50px;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 0;
}

.carousel-caption {
    position: static !important;
    right: 5% !important;
    bottom: 20px;
    left: 5% !important;
    z-index: 10;
    padding-top: 60px;
    padding-bottom: 20px;
    color: #fff;
    text-align: left;
    height: 235px;
    margin-bottom: 50px;
}

    .carousel-caption h1 {
        color: #fff !important;
        font-size: 45px;
        text-transform: none;
        padding: 0;
        margin: 0;
        font-weight: 900;
    }

.carouselTxtlft {
    float: left;
    width: 400px;
}

.carouselTxtrgt {
    float: right;
    text-align: right;
    background: #f00;
    height: 25px;
}

.Source {
    font-size: 16px;
    margin-top: 10px;
    text-align: right;
    margin-right: 50px;
}

.title-section {
    font-size: 35px;
    color: #000;
    margin-top: 20px;
    font-weight: 800;
}

.font23 {
    color: #000;
    font-size: 22px;
    padding: 0;
    margin: 0;
    line-height: 30px;
}

#raudstersWrp {
    width: 100%;
    position: relative;
    background: #fff;
}

.doted-left {
    background: url(/Content/img/doted-left.png) left bottom no-repeat;
    width: 236px;
    height: 396px;
    position: absolute;
    z-index: 1;
    left: 0;
    margin-top: -40px;
}

.doted-left-contact {
    background: url(/Content/img/doted-left-contact.png) left bottom no-repeat;
    width: 236px;
    height: 396px;
    position: absolute;
    z-index: 1;
    left: 0;
    margin-top: -218px;
}

.header-section {
    font-size: 55px;
    color: #656565;
    margin-bottom: 40px;
    font-weight: 900;
}

.raudsters p {
    font-size: 15px;
    color: #656565;
}

.blueclr, .cyanClr, .gryClr {
    color: #00a1cb;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 17px;
    letter-spacing: 1px;
    margin: 10px 0;
}

.gryClr {
    color: #656565;
}

.blueclr {
    color: #655ba8;
}

.raudsters {
    margin-bottom: 50px;
}

.howItworkLft {
    float: left;
    width: 141px;
}

.howItworkRgt {
    float: left;
    margin-bottom: 50px;
}

    .howItworkRgt h2 {
        color: #62bb46;
        font-size: 25px;
        margin-bottom: 25px;
        margin: 0;
        padding: 0;
        font-weight: 900;
    }

    .howItworkRgt h3 {
        color: #00a1cb;
        font-size: 25px;
        margin-bottom: 25px;
        padding: 0;
        margin: 0;
        font-weight: 900;
    }

    .howItworkRgt p {
        color: #656565;
        font-size: 20px;
        margin: 0;
        padding: 0;
    }

.redatTostary p {
    font-size: 35px;
    color: #fff;
    letter-spacing: -1px;
    line-height: 46px;
}

.redatTostary h1 {
    text-transform: uppercase;
    font-size: 50px;
    color: #fff;
    margin-top: 15px;
    font-weight: 900;
}

#footerWrp {
    width: 100%;
    position: relative;
    background: #fff;
    height: 246px;
    padding-top: 30px;
    margin-top: 50px;
}

.footerLogo p {
    font-size: 14px;
    color: #636466;
    margin-top: 25px;
}

.footerLink h2 {
    font-size: 12px;
    margin: 0;
    padding: 0;
    color: #2f2f2f;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 900;
}

.footerLink ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .footerLink ul li {
        margin: 0;
        padding: 0;
    }

        .footerLink ul li a {
            margin: 0;
            padding: 0;
            color: #636466;
            font-size: 14px;
            line-height: 30px;
            letter-spacing: 1px;
        }

.footerMidialink {
    text-align: center;
}

    .footerMidialink .fa {
        font-size: 35px;
        color: #0077b7;
    }

.creditCard {
    font-weight: 600;
    margin-left: 36px;
    margin-top: 5px;
    font-size: 16px !important;
}

.creditCard2 {
    font-weight: 600;
    margin-left: 36px;
    margin-top: 5px;
    font-size: 16px !important;
    color: #fff;
}

#gray-curav-top {
    width: 100%;
    position: relative;
    background: url(/Content/img/gray-box-top.jpg) center top no-repeat;
    background-size: cover;
    height: 175px;
}

#gray-curav-bottom {
    width: 100%;
    position: relative;
    background: url(/Content/img/gray-box-bottom.jpg) center top no-repeat;
    background-size: cover;
    height: 175px;
}

#pricing-gray-box {
    background: #f8f6f4;
    padding-top: 30px;
    padding-bottom: 50px;
}

    #pricing-gray-box h1 {
        font-size: 45px;
        color: #656565;
        margin-bottom: 25px;
        font-weight: 900;
    }

    #pricing-gray-box h2 {
        font-size: 30px;
        color: #656565;
        margin-bottom: 25px;
        font-weight: 700;
    }

    #pricing-gray-box h3 {
        font-size: 20px;
        color: #656565;
        margin-bottom: 25px;
        font-weight: 700;
    }

.price-box {
    margin: 0;
    padding: 30px 0 0 0;
    text-align: center;
    background: #fff;
    font-weight: 900;
    min-height: 400px;
}

.price-head {
    color: #2f2f2f;
    font-size: 18px;
}

.price-body {
    padding: 0 0 10px 0;
}

.plan-name {
    margin-top: 0;
    margin-bottom: 8px;
    font-family: var(--font-family);
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
}

sup {
    top: -27px;
    font-size: 18px;
}

.free {
    margin-bottom: 16px;
    font-family: var(--font-family);
    font-size: 32px;
    line-height: 38px;
    font-weight: 500;
}

.free-small {
    color: #000;
}

.plan-select-btn {
    margin-left: 20px;
    border-color: #f8f6f4;
    background-color: #f8f6f4;
    box-shadow: none;
    -webkit-transition: border-color .2s ease,background-color .2s ease;
    transition: border-color .2s ease,background-color .2s ease;
    color: #222525;
    font-weight: 700;
    padding: 10px 24px;
}

    .plan-select-btn:hover {
        border-color: #ecebea;
        background-color: #ecebea;
    }

.priceBtn .btn:hover {
    color: #000 !important;
}

.upto-plan {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 700;
}

.processed {
    font-size: 16px;
    font-weight: 700;
}

#pricing-features {
    padding-bottom: 100px;
}

    #pricing-features h1 {
        font-size: 35px;
        color: #656565;
        text-align: center;
        margin-bottom: 50px;
    }

    #pricing-features h2 {
        font-size: 20px;
        color: #2f2f2f;
        margin-top: 35px;
    }

.features-pic {
    margin-bottom: 35px;
}

#contact-us-wrp {
    width: 100%;
    position: relative;
    background: url(/Content/img/contact-us-wrp.jpg) center top no-repeat;
    height: 650px;
}

#contact-us-addrees h1 {
    font-size: 45px;
    color: #656565;
    margin-bottom: 30px;
}

#contact-us-addrees h2 {
    font-size: 30px;
    color: #656565;
    margin-bottom: 70px;
}

#contact-us-addrees {
    width: 100%;
    position: relative;
    padding-bottom: 50px;
    margin-top: -150px;
}

.contactUsbox {
    padding: 20px;
}

    .contactUsbox .form-control {
        color: #000;
        background: #fff;
        border-radius: 0;
        height: 42px;
        font-size: 21px;
        color: #656565;
        font-weight: 400;
    }

    .contactUsbox .yelloBtn {
        margin-top: 0;
    }

.comment-big {
    height: 80px !important;
    font-weight: 900;
}

.contactUsbox .yelloBtn {
    width: 180px;
}

#contact-gry-bg {
    background: #d2d2d2;
    padding-top: 50px;
    padding-bottom: 20px;
    position: relative;
}

.contactUsbox .font-24 {
    color: #656565;
    font-size: 19px;
    letter-spacing: 1px;
}

.contactUsbox .cyanClr {
    color: #00a1cb;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 17px;
    letter-spacing: 2px;
    margin: 10px 0;
}

#about-us-banner {
    width: 100%;
    background: url(/Content/img/about-us-banner.jpg) center top no-repeat;
    height: 650px;
    position: relative;
}

#management {
    background: #fff;
    width: 100%;
    margin-top: -125px;
}

.member-top-margin {
    margin-top: 50px;
}

.member-pic {
    position: relative;
}

.mediaLink {
    position: absolute;
    right: 48px;
    bottom: 17px;
    width: 34px;
    height: 32px;
}

    .mediaLink .fa {
        font-size: 20px;
    }

.member-name {
    font-size: 31px;
    color: #656565;
    margin-bottom: 15px;
}

.member-postion {
    text-transform: uppercase;
    -webkit-text-stroke: 1px #62bb46;
    color: #fff;
    font-size: 25px;
}

.member-text {
    color: #656565;
    font-size: 19px;
    line-height: 30px;
}

.memberLft {
    float: left;
}

.memberRgt {
    float: right;
}

#advisoryBoard {
    background: #62bb47 url(/Content/img/advisory-board-gray-bg.jpg) center top no-repeat;
    background-size: inherit;
    position: relative;
    padding-top: 20px;
    background-size: cover;
}

.advisory-board-heading {
    font-size: 50px;
    color: #fff;
    margin-top: 135px;
    margin-bottom: 50px;
    font-weight: 900;
}

.lowrTxt1 {
    color: #000;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 35px;
    font-weight: 900;
}

.lowrTxt2 {
    color: #fff;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 30px;
    font-weight: 900;
}

.readMore {
    color: #104478;
}

.pic1 {
    margin-bottom: 0;
}

#advisoryBoard .mediaLink {
    margin-bottom: 40px;
}

.gap60 {
    height: 60px;
    display: block;
}

.ReadmoreTxt {
    font-size: 23px;
    line-height: 30px;
}

.linkedin-line {
    width: 98px;
    height: 42px;
    position: absolute;
    bottom: -13px;
    left: 230px;
    z-index: 2;
}

.jumbotron {
    padding: 7rem 1rem;
    margin-bottom: 0;
    background-color: transparent;
    border-radius: .3rem;
    color: #fff;
}

    .jumbotron h1 {
        color: #fff !important;
        font-size: 25px;
        margin-bottom: 12px;
    }

    .jumbotron p {
        font-size: 14px;
    }

        .jumbotron p a {
            font-size: 14px;
            color: #fff !important;
        }

.btn:focus {
    box-shadow: none;
}

button:focus {
    box-shadow: none;
}

.privacyPolicy {
    font-size: 15px;
    line-height: 20px;
}

    .privacyPolicy ul {
        list-style: circle;
        margin-left: 20px;
        margin-bottom: 20px;
    }

    .privacyPolicy h4 {
        margin: 20px 0 !important;
        font-size: 20px;
        font-weight: 900;
    }

    .privacyPolicy ul li {
        line-height: 30px;
    }

.request-form {
    padding: 0 20px;
}

    .request-form .form-control {
        color: #000;
        background: #fff;
        border-radius: 0;
        font-size: 21px;
        color: #656565;
    }

#privacy-policy {
    width: 100%;
    background: url(/Content/img/privacy-policy-baner.jpg) center top no-repeat;
    height: 650px;
    position: relative;
}

#terms-of-use {
    width: 100%;
    background: url(/Content/img/terms-of-use-baner.jpg) center top no-repeat;
    height: 650px;
    position: relative;
}

#cookie {
    width: 100%;
    background: url(/Content/img/cookie.jpg) center top no-repeat;
    height: 650px;
    position: relative;
}

.copyrightblank {
    display: none;
}

.pci2 {
    display: none;
}

.facebookMargin {
    margin-left: 10px;
}

.socialmediaBtn {
    margin-left: 5px;
}

#PricingSubscriptionBox {
    background: #d3d3d3;
    padding-top: 80px;
    padding-bottom: 80px;
}

.PricingSubscriptionBox {
    background: #fff;
    padding: 50px 0 40px 0;
}

    .PricingSubscriptionBox h1 {
        color: #000;
        font-size: 30px;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .PricingSubscriptionBox h2 {
        font-size: 15px !important;
        color: #000;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .PricingSubscriptionBox label {
        font-size: 25px;
        font-weight: 700;
    }

    .PricingSubscriptionBox label {
        font-size: 16px;
        font-weight: 700;
        color: #000;
    }

    .PricingSubscriptionBox .form-inline .form-control {
        color: #656565;
        height: 40px !important;
        width: 100%;
        font-size: 16px;
    }

    .PricingSubscriptionBox .form-inline .pond {
        width: 10%;
    }

    .PricingSubscriptionBox .form-inline .emailId {
        width: 100%;
    }

    .PricingSubscriptionBox .form-inline .amount {
        width: 42%;
    }

    .PricingSubscriptionBox .margn50 {
        margin-bottom: 10px;
    }

    .PricingSubscriptionBox .registerBtn {
        position: relative;
        padding: 10px 24px;
        border-style: solid;
        border-width: 2px;
        border-color: #104478;
        border-radius: 5px;
        background-color: #104478;
        box-shadow: inset 0 0 100px 100px transparent;
        -webkit-transition: box-shadow .2s ease;
        transition: box-shadow .2s ease;
        color: #fff;
        font-weight: 700;
        text-decoration: none;
        font-size: 16px !important;
        width: 230px;
        margin-top: 20px;
    }

.fa-gbp {
    font-size: 20px;
    margin-top: 4px;
    margin-left: 8px;
}

.PricingSubscriptionBox .text-danger {
    margin-left: 221px;
    margin-top: 10px;
    margin-bottom: 10px;
    display: block;
}

table.dataTable td, table.dataTable th {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

    table.dataTable td.dataTables_empty, table.dataTable th.dataTables_empty {
        text-align: center;
    }

table.dataTable.nowrap td, table.dataTable.nowrap th {
    white-space: nowrap;
}

div.dataTables_wrapper div.dataTables_length label {
    font-weight: 400;
    text-align: left;
    white-space: nowrap;
}

div.dataTables_wrapper div.dataTables_length select {
    width: auto;
    display: inline-block;
}

div.dataTables_wrapper div.dataTables_filter {
    text-align: right;
}

    div.dataTables_wrapper div.dataTables_filter label {
        font-weight: 400;
        white-space: nowrap;
        text-align: left;
    }

    div.dataTables_wrapper div.dataTables_filter input {
        margin-left: .5em;
        display: inline-block;
        width: auto;
    }

div.dataTables_wrapper div.dataTables_info {
    padding-top: .85em;
    white-space: nowrap;
}

div.dataTables_wrapper div.dataTables_paginate {
    margin: 0;
    white-space: nowrap;
    text-align: right;
}

    div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        margin: 2px 0;
        white-space: nowrap;
        justify-content: flex-end;
    }

div.dataTables_wrapper div.dataTables_processing {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    margin-left: -100px;
    margin-top: -26px;
    text-align: center;
    padding: 1em 0;
}

table.dataTable thead > tr > td.sorting, table.dataTable thead > tr > td.sorting_asc, table.dataTable thead > tr > td.sorting_desc, table.dataTable thead > tr > th.sorting, table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc {
    padding-right: 30px;
}

table.dataTable thead > tr > td:active, table.dataTable thead > tr > th:active {
    outline: 0;
}

table.dataTable thead .sorting, table.dataTable thead .sorting_asc, table.dataTable thead .sorting_asc_disabled, table.dataTable thead .sorting_desc, table.dataTable thead .sorting_desc_disabled {
    cursor: pointer;
    position: relative;
}

    table.dataTable thead .sorting:after, table.dataTable thead .sorting:before, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_asc:before, table.dataTable thead .sorting_asc_disabled:after, table.dataTable thead .sorting_asc_disabled:before, table.dataTable thead .sorting_desc:after, table.dataTable thead .sorting_desc:before, table.dataTable thead .sorting_desc_disabled:after, table.dataTable thead .sorting_desc_disabled:before {
        position: absolute;
        bottom: .9em;
        display: block;
        opacity: .3;
    }

    table.dataTable thead .sorting:before, table.dataTable thead .sorting_asc:before, table.dataTable thead .sorting_asc_disabled:before, table.dataTable thead .sorting_desc:before, table.dataTable thead .sorting_desc_disabled:before {
        right: 1em;
        content: "↑";
    }

    table.dataTable thead .sorting:after, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_asc_disabled:after, table.dataTable thead .sorting_desc:after, table.dataTable thead .sorting_desc_disabled:after {
        right: .5em;
        content: "↓";
    }

    table.dataTable thead .sorting_asc:before, table.dataTable thead .sorting_desc:after {
        opacity: 1;
    }

    table.dataTable thead .sorting_asc_disabled:before, table.dataTable thead .sorting_desc_disabled:after {
        opacity: 0;
    }

div.dataTables_scrollHead table.dataTable {
    margin-bottom: 0 !important;
}

div.dataTables_scrollBody table {
    border-top: none;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

    div.dataTables_scrollBody table thead .sorting:after, div.dataTables_scrollBody table thead .sorting:before, div.dataTables_scrollBody table thead .sorting_asc:after, div.dataTables_scrollBody table thead .sorting_asc:before, div.dataTables_scrollBody table thead .sorting_desc:after, div.dataTables_scrollBody table thead .sorting_desc:before {
        display: none;
    }

    div.dataTables_scrollBody table tbody tr:first-child td, div.dataTables_scrollBody table tbody tr:first-child th {
        border-top: none;
    }

div.dataTables_scrollFoot > .dataTables_scrollFootInner {
    box-sizing: content-box;
}

    div.dataTables_scrollFoot > .dataTables_scrollFootInner > table {
        margin-top: 0 !important;
        border-top: none;
    }

@media screen and (max-width:767px) {
    div.dataTables_wrapper div.dataTables_filter, div.dataTables_wrapper div.dataTables_info, div.dataTables_wrapper div.dataTables_length, div.dataTables_wrapper div.dataTables_paginate {
        text-align: center;
    }
}

table.dataTable.table-sm > thead > tr > th {
    padding-right: 20px;
}

table.dataTable.table-sm .sorting:before, table.dataTable.table-sm .sorting_asc:before, table.dataTable.table-sm .sorting_desc:before {
    top: 5px;
    right: .85em;
}

table.dataTable.table-sm .sorting:after, table.dataTable.table-sm .sorting_asc:after, table.dataTable.table-sm .sorting_desc:after {
    top: 5px;
}

table.table-bordered.dataTable td, table.table-bordered.dataTable th {
    border-left-width: 0;
}

    table.table-bordered.dataTable td:last-child, table.table-bordered.dataTable th:last-child {
        border-right-width: 0;
    }

table.table-bordered.dataTable tbody td, table.table-bordered.dataTable tbody th {
    border-bottom-width: 0;
}

div.dataTables_scrollHead table.table-bordered {
    border-bottom-width: 0;
}

div.table-responsive > div.dataTables_wrapper > div.row {
    margin: 0;
}

    div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {
        padding-left: 0;
    }

    div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {
        padding-right: 0;
    }

@media(min-width:768px) {
    body.fixed-nav #content-wrapper {
        padding-left: 225px;
    }

    body.fixed-nav.sidebar-toggled #content-wrapper {
        padding-left: 90px;
    }

    .navbar-nav .form-inline .input-group {
        width: auto;
    }

    .sidebar {
        width: 225px !important;
    }

        .sidebar .nav-item .nav-link {
            display: block;
            width: 100%;
            text-align: left;
            padding: 15px 15px;
            width: 225px;
        }

            .sidebar .nav-item .nav-link:hover {
                color: var(--w-color);
                background: var(--background-color);
            }

            .sidebar .nav-item .nav-link:active {
                background: var(--background-color);
                color: var(--w-color);
            }

            .sidebar .nav-item .nav-link span {
                font-size: 16px;
                display: inline;
                font-weight: 500;
            }

        .sidebar .nav-item .dropdown-menu {
            position: static !important;
            top: 0;
            background: #fff;
            border-radius: 0;
        }

        .sidebar .nav-item.dropdown .dropdown-toggle::after {
            display: block;
            font-size: 20px;
        }

        .sidebar.toggled {
            overflow: visible;
            width: 90px !important;
        }

            .sidebar.toggled .nav-item:last-child {
                margin-bottom: 1rem;
            }

            .sidebar.toggled .nav-item .nav-link {
                text-align: center;
                padding: .75rem 1rem;
                width: 90px;
            }

                .sidebar.toggled .nav-item .nav-link span {
                    font-size: .65rem;
                    display: block;
                }

            .sidebar.toggled .nav-item .dropdown-menu {
                position: absolute !important;
                -webkit-transform: none !important;
                transform: none !important;
                left: calc(90px + .5rem) !important;
                margin: 0;
            }

                .sidebar.toggled .nav-item .dropdown-menu.dropup {
                    bottom: 0;
                    top: auto !important;
                }

            .sidebar.toggled .nav-item.dropdown .dropdown-toggle::after {
                display: none;
            }

    .card-columns {
        -webkit-column-count: 2;
        column-count: 2;
    }

    footer.sticky-footer {
        width: calc(100% - 225px);
    }

    body.sidebar-toggled footer.sticky-footer {
        width: calc(100% - 90px);
    }
}

@media(min-width:576px) {
    .card-columns {
        -webkit-column-count: 1;
        column-count: 1;
    }
}

@media(min-width:1200px) {
    .card-columns {
        -webkit-column-count: 2;
        column-count: 2;
    }
}

body.sidebar-toggled footer.sticky-footer {
    width: 100%;
}

@media only screen and (max-width:767px) {
    .rejectBtn {
        float: left !important;
        position: relative !important;
        top: 10px !important;
        left: -117px !important;
    }

    .connectERP .card-header {
        padding: 10px 5px;
    }

        .connectERP .card-header .pull-right {
            float: right !important;
            width: auto !important;
        }

    #wrapper {
        margin-top: 43px;
    }

    .multipleAccoyWrp {
        background: #fff;
        margin-top: 50px;
        width: 100% !important;
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        z-index: 9;
        padding: 10px;
        box-shadow: 0 3px 6px -6px rgba(0,0,0,.2);
    }

        .multipleAccoyWrp .form-control {
            padding: 5px 5px;
        }

        .multipleAccoyWrp .submitBtn {
            width: 127px;
            padding: 6px 2px;
            font-size: 12px;
        }

        .multipleAccoyWrp .fa {
            float: left;
        }

    .forgotPass {
        min-height: initial !important;
    }

        .forgotPass h1 {
            font-size: 15px !important;
            line-height: 22px !important;
            margin-bottom: 10px;
            margin-top: 20px;
        }

        .forgotPass .font16 {
            font-size: 14px !important;
            line-height: 18px;
            margin-bottom: 20px;
        }

    #profile-area .col-6 {
        -ms-flex: 0 0 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .pricingBtnwrp {
        width: 85%;
        margin-left: 40px !important;
    }

    .logOut {
        margin-top: 0;
        margin-right: 0 !important;
    }

    .profileNextbtn {
        margin-top: 0;
        width: 66%;
    }

    #fraudRules .submitBtn {
        width: 66% !important;
    }

    .memberPic {
        display: block;
        width: 30px;
        float: left;
        height: 77px;
    }

    .addEmails {
        right: 0 !important;
    }

    #addMultiUserForm i.fa-trash-o {
        left: 15px !important;
    }

    .profileSetupLogo {
        margin-top: 20px !important;
    }

    .steptitleHeader {
        background: #fff;
        margin-top: 20px !important;
    }

    .step {
        width: 61px !important;
    }

    .smallTxtfraud small {
        margin-left: 20px !important;
    }

    .fa-bars {
        color: #fff !important;
        background: #104478 !important;
        padding: 8px !important;
        border-radius: 3px !important;
    }

    .skipubmitBTn {
        margin-left: 30px !important;
    }

    .swal2-popup .swal2-content {
        margin-top: 10px !important;
    }

    .addMmbrMrgn50 {
        margin-left: 10px !important;
        margin-top: 15px !important;
    }

    #fraudRules small {
        margin-left: 21px !important;
    }

    #btnCoupanCode {
        margin-top: 10px;
    }

    .dahboardTitle .form-group {
        margin-bottom: 0 !important;
    }

    .dashbaordActionIcon {
        width: 100%;
        float: none;
        text-align: center;
        margin-left: 10px;
    }

    .dashbaordActionTitle {
        float: none;
    }

    .dashboardBox {
        margin-bottom: 10px;
    }

    .dashbaordActionTitle h3 {
        text-align: center;
        margin-top: 10px;
    }

    .actionText {
        color: #000;
        font-size: 12px;
        text-align: left;
        font-weight: 400;
        padding: 10px 10px 10px 10px !important;
    }

    .actionWrp h2 {
        text-align: center;
        font-size: 30px;
        color: #000;
        font-weight: 500;
        margin-top: 5px;
        margin-left: 0;
    }

    .actionWrp {
        width: 46%;
        background: #fff;
        margin-right: 10px;
        padding: 10px;
        margin-bottom: 10px;
    }

    .oldactionWrp h2 {
        text-align: center;
        font-size: 30px;
        color: #000;
        font-weight: 500;
        margin-top: 5px;
        margin-left: 0;
    }

    .oldactionWrp {
        width: 46%;
        background: #fff;
        margin-right: 10px;
        padding: 10px;
        margin-bottom: 10px;
    }

    .we-recommend .card-header img {
        display: none;
    }

    .hidden-xs-r {
        display: none !important;
    }

    .orWrp {
        width: 100%;
        float: left;
    }

    .saveDocs {
        float: left;
    }

    #about-us-banner, #contact-us-wrp, #cookie, #privacy-policy, #terms-of-use {
        background: #4b4b4b !important;
        height: auto !important;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }

    #bannerWrp {
        background: #60bb46;
        height: auto;
        padding: 0;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .carousel-inner {
        padding-top: 0;
    }

    .carousel-caption {
        height: 200px;
        box-sizing: initial;
    }

        .carousel-caption h1 {
            color: #fff !important;
            font-size: 35px;
            text-transform: none;
            padding: 0;
            margin: 0;
        }

    .header-section {
        font-size: 55px;
    }

    .raudsters {
        margin-bottom: 20px;
    }

    .doted-right {
        display: none;
    }

    .yelloBtn {
        width: auto;
    }

    .title-section {
        font-size: 33px;
        margin-bottom: 20px;
    }

    .Source {
        font-size: 15px;
        margin-top: 10px;
        text-align: left;
        margin-right: 50px;
    }

    #gray-curav-bottom {
        display: none;
    }

    .doted-left {
        display: none;
    }

    #gryBg {
        padding-bottom: 20px;
    }

    #ready-to-start-wrp {
        height: 580px;
    }

    .redatTostary h1 {
        font-size: 53px;
    }

    #footerWrp {
        padding-top: 0;
        margin-top: 30px;
    }

    .footerMidialink {
        text-align: left;
    }

    #pricingTable .col-md-3 {
        -ms-flex: 0 0 90%;
        flex: 0 0 90%;
        max-width: 90%;
        padding-left: 48px;
        padding-right: 8px;
    }

    #gray-curav-top {
        width: 100%;
        position: relative;
        background: #fff;
        background-size: auto;
        background-size: cover;
        height: 10px;
    }

    .howItworkLft {
        float: left;
        width: 100%;
    }

    .howItworkRgt {
        float: left;
        margin-bottom: 50px;
        width: 100%;
    }

    #advisoryBoard {
        background: #62bb47;
    }

    .advisory-board-heading {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .linkedin-line {
        display: none;
    }

    .features-pic {
        margin-bottom: 10px;
    }

    #pricing-features h2 {
        margin-top: 0;
        margin-bottom: 30px;
    }

    .price-box {
        margin-bottom: 30px;
        min-height: 360px !important;
    }

    #countryCodeArea .form-control {
        width: 100% !important;
    }

    .content-width-large, .content-width-medium, .content-width-small {
        padding: 0 0 0 30px !important;
    }

        .content-width-large .h1, .content-width-medium .h1, .content-width-small .h1 {
            font-size: 30px !important;
            letter-spacing: 0 !important;
        }

    #pricing-gray-box {
        background: #3e474e;
        padding-top: 80px;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

        #pricing-gray-box .offset-4 {
            margin-left: 10.333%;
        }

    #pricing-features {
        padding-bottom: 0;
    }

    .yelloBtn {
        margin-top: 20px;
    }

    .loginWrp {
        display: block !important;
        margin-top: 25px !important;
    }

    .whiteBox {
        width: 100% !important;
        display: block !important;
    }

    .grayBox {
        width: 100% !important;
        display: block !important;
        min-height: 235px !important;
    }

    .sidebar .dropdown-menu {
        background: #fff !important;
    }

    .text-white {
        color: #fff !important;
    }

    .pad-r {
        padding-right: 15px;
    }

    .pad-r-l {
        padding-left: 15px;
        padding-right: 15px;
    }

    .dropdown a {
        color: #000 !important;
        text-transform: none;
        font-weight: 400;
        letter-spacing: 0;
    }

    .userLogin {
        display: none;
    }

    .navbar-brand {
        margin-right: 0;
    }

    .sidebar .dropdown-menu {
        background: #fff !important;
        border: none !important;
    }

    .dropdown a {
        font-size: 12px;
        padding-top: 5px;
        padding-bottom: 5px;
        padding-left: 20px;
        text-transform: none;
        font-weight: 400;
        letter-spacing: 0;
    }

    #dropArea {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        height: auto;
    }

        #dropArea .drag-text {
            font-size: 18px;
            margin-top: 0;
            line-height: 30px;
        }

    .dataTables_info {
        margin-bottom: 12px !important;
    }

    .pay-btn {
        margin-left: 0;
        margin-bottom: 5px;
        min-width: auto !important;
        margin-top: 5px;
        position: relative;
    }

    .SubscriptionBox {
        text-align: center;
    }

    .btn-primary {
        margin-top: 10px;
    }

    #management {
        background: #fff;
        width: 100%;
        margin-top: 0;
    }

    .mediaLink {
        display: none;
    }

    #contact-us-addrees {
        margin-top: 0;
    }

    .dashboardCard .card-header {
        font-size: 12px;
        font-weight: 400;
        padding: 10px 6px;
    }

    .sidebar .nav-item .nav-link span {
        font-size: 12px;
        font-weight: 400 !important;
    }

    .dashboardLinkTitle {
        font-size: 22px;
    }

    .logoInnr {
        width: 170px;
        height: 50px;
    }

    .recommend-head {
        font-size: 16px;
        margin-top: 69px;
        margin-bottom: 45px;
    }

    .we-recommend {
        min-height: 190px;
    }

        .we-recommend:first-child {
            border-left: #bfbfbf solid 1px;
        }

    .or {
        position: absolute;
        top: 178px;
        right: 0;
        left: 130px;
        height: 40px;
        width: 40px;
        line-height: 40px;
        font-size: 14px;
    }

    .we-recommend a {
        font-size: 14px;
    }

    .we-recommend .card-header {
        padding: 10px 9px;
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .scanInvoices .col-md-5 {
        padding-right: 2px;
        padding-left: 2px;
    }

    .recommend-head {
        margin: 0 0;
    }

    .uploadFile .card-header {
        padding: 10px 2px;
        font-size: 13px;
    }

        .uploadFile .card-header .badge {
            height: 24px;
            width: 24px;
        }

    .uploadFile .card-body {
        height: 150px !important;
    }

    .stepwizard::before {
        display: none;
    }

    .stepwizard ul li {
        width: auto;
    }

    .stepwizard p {
        font-size: 10px;
    }

    .Logocontainer {
        margin-bottom: 20px;
        width: 55% !important;
    }

    .no-gutters .col-4 {
        -ms-flex: 0 0 90%;
        flex: 0 0 90%;
        max-width: 90%;
    }

    .submitBtn {
        background: var(--background-color);
        color: var(--w-color);
        min-width: 70px;
    }

    .Add-Email-ID {
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 0;
        margin-top: 5px;
    }

    .scanInvoices .col-md-5 {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
    }

    .signIn {
        margin-top: 12px;
        margin-bottom: 12px;
    }

        .signIn span {
            padding: 7px 18px !important;
            margin-top: 90px !important;
        }

    .member-top-margin {
        margin-top: 0;
    }

    .gap60 {
        height: 25px;
        display: block;
    }

    .privacyPolicy ul {
        margin-left: -26px;
    }

    .sidebar .nav-item .nav-link {
        width: 105px;
        padding: 8px 0 !important;
    }

    .rc-anchor-normal .rc-anchor-checkbox-label {
        width: 92px !important;
    }

    .rc-anchor-normal .rc-anchor-content {
        height: 74px;
        width: 150px !important;
    }

    .rc-anchor-logo-portrait {
        margin: 10px 0 0 10px !important;
    }

    .rc-anchor-normal .rc-anchor-pt {
        text-align: left !important;
        width: 129px !important;
    }

    .rc-anchor-normal {
        height: 74px;
        width: 241px !important;
    }

    .manageSelect {
        width: 60% !important;
    }

    .fa-refresh {
        margin-bottom: 20px;
    }

    .manageInvoice .card-header h1 {
        font-size: 17px;
        margin: 0;
        padding: 0;
        margin-left: 10px;
    }

    .manageInvoice .card-header h2 {
        font-size: 15px;
        color: #4b4b4b;
        margin-left: 10px;
    }

    #right-action-area {
        float: left !important;
        margin-top: 10px;
    }

        #right-action-area .details-btn {
            top: 38px;
        }

    #area-invoiceDetails .btn {
        margin-top: 10px !important;
    }

    .card-header .pull-right {
        float: left !important;
        display: block;
        width: 100%;
    }

    .col-md-12 .pull-right {
        float: left !important;
    }

    .card-header .pull-right .blueBtn {
        margin-left: 0 !important;
        margin-top: 10px;
    }

    .responsivesearch {
        width: 68% !important;
    }

    .form-inline {
        width: 100% !important;
    }

    .swal2-popup .swal2-title {
        margin-top: -24px !important;
    }

    .swal2-popup .swal2-title {
        left: 27px !important;
        padding-right: 50px !important;
    }

    .form-inline .form-control {
        width: 60% !important;
    }

    .margin10px {
        margin-bottom: 10px;
    }

    .promoCode {
        padding: 15px !important;
    }

    .cancilBtn {
        min-width: 85px !important;
    }

    [data-submit=company] {
        float: left !important;
    }

    .remove-btn {
        margin-top: 10px;
        margin-bottom: 7px;
    }

    .copyrightblankTxt {
        display: none;
    }

    .copyrightblank {
        display: block;
        text-align: center;
        font-size: 14px;
        margin: 20px 0 0 20px;
        border-top: #ddd solid 1px;
        display: block;
        line-height: 60px;
        color: #636466;
    }

    .footerLink {
        margin-top: 20px;
        margin-left: 8px;
        margin-bottom: 20px;
    }

    .billing-plan .blueBtn {
        float: left !important;
    }

    .blueBtn {
        min-width: initial !important;
    }

    .page-banner-title {
        margin-top: 10px;
        font-size: 40px;
    }

    .unarchive {
        min-width: 85px !important;
    }

    .planBox .text-right {
        text-align: left !important;
    }

    .planBox table {
        margin-top: 20px;
    }

    .planBox {
        margin-top: 20px;
    }

    .auditLogSrch label {
        display: block;
        width: 100%;
    }

    .auditLogSrch .form-control {
        width: 100% !important;
        margin-left: 0 !important;
        margin-bottom: 10px !important;
    }

    .planBox {
        min-height: 150px;
    }

        .planBox .PaymentMethod {
            position: absolute;
            bottom: 0;
            top: 55px;
        }

        .planBox .PaymentMethodTbl {
            position: absolute;
            top: -13px;
        }

    .pull-left .title {
        margin-bottom: 10px;
    }

    #area-Result .col-md-12 {
        padding-right: 15px !important;
        padding-left: 15px !important;
    }

    #das-n-req .col-md-12 {
        padding-right: 15px !important;
        padding-left: 15px !important;
    }

    .mrgin_40 {
        margin-left: 40px;
    }

    #contactUsbox .col-md-6 {
        padding-right: 15px !important;
        padding-left: 15px !important;
    }

    .pci1 {
        display: none;
    }

    .pci2 {
        display: block;
    }

        .pci2 .fa-linkedin {
            margin-left: 0;
            margin-right: 0;
        }

        .pci2 .img-fluid {
            max-width: 70% !important;
        }

    .linkedin2 {
        display: none;
    }

    .badge {
        color: var(--badge-color);
        border-color: #c50707;
        box-shadow: none;
        padding: 2px !important;
        border-radius: 50% !important;
        height: 27px;
        width: 27px;
        top: 0;
        background: #c50707;
        position: relative;
        min-width: 16px;
        text-align: center;
        line-height: 23px;
        font-size: 10px;
    }

    .goBack div {
        float: left;
        font-size: 13px;
        color: #4b4b4b;
        height: 35px;
        line-height: 35px;
        margin-bottom: 18PX;
    }

    div.dataTables_wrapper div.dataTables_info {
        text-align: left;
    }

    .page-link {
        position: relative;
        display: block;
        padding: 7px;
        margin-left: -1px;
        line-height: 1.25;
        color: #007bff;
        background-color: #fff;
        border: 1px solid #dee2e6;
        font-size: 12px;
    }

    div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        margin: 2px 0;
        white-space: nowrap;
        justify-content: flex-start;
    }

    div.dataTables_wrapper div.dataTables_paginate {
        margin: 0;
        margin-bottom: 16px !important;
    }

    .PricingSubscriptionBox .form-inline .pond {
        width: 15% !important;
    }

    .PricingSubscriptionBox .form-inline .amount {
        width: 42% !important;
    }

    .offset-2 {
        margin-left: 4.667% !important;
    }

    .PricingSubscriptionBox h1 {
        font-size: 27px !important;
    }

    .margn50 {
        display: none;
    }

    .PricingSubscriptionBox .form-inline .emailId {
        width: 100% !important;
    }

    .PricingSubscriptionBox2 {
        width: 100% !important;
        margin: 0 auto;
        padding: 20px !important;
    }

        .PricingSubscriptionBox2 h2 {
            font-size: 15px !important;
            margin-bottom: 0 !important;
        }

    .trialExpiredWrp {
        width: 100% !important;
        margin: 50px auto !important;
    }

        .trialExpiredWrp h1 {
            font-size: 25px !important;
            margin-bottom: 15px !important;
        }

        .trialExpiredWrp h2 {
            font-size: 18px !important;
        }

        .trialExpiredWrp h3 {
            font-size: 18px !important;
        }

    .payTxt {
        width: 100% !important;
    }

    .formWrp .amountTxtbox {
        width: 100px !important;
    }

    .formWrp .text-danger {
        width: 100% !important;
        display: inline-block !important;
        position: absolute !important;
        bottom: 23px !important;
        font-size: 12px !important;
    }

    .Dltspace {
        display: none;
    }

    .dilricn2nw.lftbtmicon {
        left: 18px !important;
        right: auto;
        float: left;
    }

    .dilricn2nw {
        bottom: 20px !important;
    }

    .creditCard {
        margin-left: 20px !important;
    }

    .creditCard2 {
        margin-left: 20px !important;
    }

    .pleaseNot {
        width: 100%;
        display: inline-block;
    }

    .quickBooxbox {
        margin-bottom: 0;
        margin-top: 30px;
    }

    .xerobox {
        margin-bottom: 20px;
        margin-top: 20px;
        margin-left: 0;
    }

    .ErpTitle {
        font-size: 25px;
        font-weight: 700;
        line-height: 30px;
        margin-top: 10px;
    }

    .addEmail {
        left: 295px;
    }
}

@media only screen and (min-width:768px) and (max-width:1024px) {
    #about-us-banner {
        background: #000 !important;
    }

    #bannerWrp .col-md-6 {
        --ms-flex: 0 0 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    #gryBg .col-md-6 {
        --ms-flex: 0 0 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }

    #ready-to-start-wrp {
        padding: 30px 0;
        height: auto !important;
    }

    #pricingTable .col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
        padding-left: 1px;
        padding-right: 8px;
    }

    #about-us-banner, #contact-us-wrp, #cookie {
        background: #3f484f;
        height: auto;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .page-banner-title {
        margin-top: 10px;
    }

    #contact-us-addrees .col-md-4 {
        -ms-flex: 0 0 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .or {
        width: 40px;
        height: 40px;
        line-height: 40px;
        position: absolute;
        left: 0;
    }

    .card-header {
        padding: 10px 9px;
        font-size: 14px;
    }

    .area-show .col-md-4 {
        -ms-flex: 0 0 48.333333%;
        flex: 0 0 48.333%;
        max-width: 48.333%;
    }

        .area-show .col-md-4 img {
            margin-right: 10px !important;
        }

    .manageInvoice h1 {
        margin-left: 10px !important;
    }

    .manageInvoice h2 {
        margin-left: 10px !important;
    }

    .uploadLogo .col-md-2 {
        -ms-flex: 0 0 36.666667%;
        flex: 0 0 36.667%;
        max-width: 36.667%;
    }

    .planBox .col-md-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 73%;
        max-width: 73%;
    }

    .planBox .col-md-3 {
        -ms-flex: 0 0 26%;
        flex: 0 0 26%;
        max-width: 26%;
    }

    #contact-us-addrees {
        margin-top: 0;
    }

    #management {
        margin-top: 0;
    }

    #advisoryBoard .col-md-3 {
        display: none;
    }

    #advisoryBoard .col-md-9 {
        --ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    #management .col-md-1 {
        -ms-flex: 0 0 11.333333%;
        flex: 0 0 11.333333%;
        max-width: 11.333%;
    }

    .signIn span {
        color: #636466 !important;
        font-weight: 900;
        background: #fff;
        border-radius: 30px !important;
        padding: 0 !important;
        font-size: 15px;
    }

    .whiteBox .pull-right {
        float: left;
    }

    .fa-bars {
        font-size: 22px;
    }

    .top100 {
        margin-top: 0;
    }

    .we-recommend {
        min-height: auto !important;
        width: 100%;
    }

    .orWrp {
        display: none;
    }

    .drag-and-drop-Box {
        border: none;
    }

    #dropArea {
        border: none;
        height: auto;
        margin-bottom: 0;
    }

        #dropArea .drag-text {
            margin-top: 70px !important;
            line-height: normal;
        }

    #profileDetials .col-md-4 {
        --ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .supplier-profile-card {
        min-height: inherit !important;
    }

    .justify-content-center .col-md-6 {
        -ms-flex: 0 0 80% !important;
        flex: 0 0 80% !important;
        max-width: 80% !important;
    }

    .justify-content-center .col-md-10 {
        -ms-flex: 0 0 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .justify-content-center .col-md-4 {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .dashboardLinkBtn {
        width: 83% !important;
    }

    .dashboardLinTitle {
        font-size: 14px !important;
    }

    .dashboardColmn .col-md-2 {
        -ms-flex: 0 0 32.666667% !important;
        flex: 0 0 32.667% !important;
        max-width: 32.667% !important;
    }

    .card-body .pull-right {
        float: left !important;
    }

    .card-header .pull-left {
        float: left !important;
        margin-bottom: 10px !important;
        width: 100% !important;
    }

    .card-header .pull-right {
        float: left !important;
    }

    .card-footer {
        padding: 5px 0 5px 7px !important;
    }

        .card-footer .pay-btn {
            font-size: 12px !important;
        }

    .Archive {
        right: 0 !important;
    }

    .billing-plan .text-right {
        text-align: left !important;
        margin-left: 39px !important;
    }

    #wrapper #content-wrapper {
        overflow-x: hidden !important;
    }

    .approve-supplier .col-md-4 {
        -ms-flex: 0 0 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .card-body .form-inline {
        margin-top: 20px !important;
    }

    .LoginDetails .col-md-4 {
        -ms-flex: 0 0 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }

    .LoginDetails .col-md-3 {
        -ms-flex: 0 0 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }

    .Logocontainer {
        margin-bottom: 20px !important;
    }

    .usersTbl .edit-btn {
        margin-bottom: 10px !important;
    }

    .planBox {
        min-height: 246px !important;
    }

        .planBox .col-md-3, .planBox .col-md-4, .planBox .col-md-8, .planBox .col-md-9 {
            -ms-flex: 0 0 100% !important;
            flex: 0 0 100% !important;
            max-width: 100% !important;
        }

        .planBox .text-right {
            float: left !important;
            margin-left: 0 !important;
            margin: 20px 0 !important;
        }

    .auditLogSrch .form-control {
        width: 33% !important;
    }

    #about-us-banner, #contact-us-wrp, #cookie, #privacy-policy, #terms-of-use {
        background: #4b4b4b !important;
        height: auto !important;
        padding-bottom: 15px !important;
        margin-bottom: 20px !important;
    }

    .saveDocs {
        float: left !important;
    }

    .magn2 {
        margin-left: 0 !important;
    }

    .PublishedSuppliersScroll {
        height: 495px;
        overflow: scroll;
    }

    #newDetails .col-md-5 {
        -ms-flex: 0 0 79.667%;
        flex: 0 0 79.667%;
        max-width: 79.667%;
    }

    .pagination {
        position: relative !important;
        float: left !important;
        margin-top: 20px !important;
    }
}

@media(min-width:991px) {
    #sidebarToggle {
        display: none;
    }
}

@media(min-width:768px) {
    .no-gutter-left {
        padding-left: 0;
    }
}

.serachWrp .usetwentyfour {
    width: 190px !important;
    height: 230px !important;
}

    .serachWrp .usetwentyfour table {
        width: 100% !important;
        padding: 10px !important;
    }

@media only screen and (max-width:767px) {
    .dashboardLinkTitle {
        margin-top: 0;
        margin-bottom: 10px;
    }

    .DownloadCSV {
        margin-top: 20px !important;
    }

    .blackListTbl .pagination {
        margin-top: 10px !important;
    }

    .serachWrp {
        background: #fff !important;
        box-shadow: 0 0 21px 0 rgba(0,0,0,.08) !important;
        border: #ddd solid 1px !important;
        padding: 20px !important;
        width: 100% !important;
        position: inherit !important;
        will-change: transform !important;
        left: inherit !important;
        transform: inherit !important;
        top: inherit !important;
    }

    ul.pagination {
        margin-top: 0 !important;
    }

    #search-card .form-control {
        width: 100% !important;
    }

    .hideDiv {
        display: none !important;
    }

    .serachWrp .leftpad0 {
        padding-left: 0 !important;
    }

    .serachWrp .rgtpad0 {
        padding-right: 15px !important;
    }

    .serachWrp .leftpad0 {
        padding-left: 15px !important;
    }

    .cardWrp .btn-primary {
        margin-top: 4px !important;
        margin-left: 4px !important;
    }

    .cardWrp .active {
        margin-top: 4px !important;
        margin-left: 4px !important;
        color: #fff !important;
    }

    .cardWrp .fa-bars {
        color: #000 !important;
        background: none !important;
        padding: 8px !important;
        border-radius: 0 !important;
    }
}

.ConfigureBox {
    padding: 15px;
}

    .ConfigureBox .form-group .greenTitle {
        color: #000 !important;
        font-weight: 500 !important;
        font-size: 14px;
        position: relative;
        top: -2px;
    }

.subtitle img {
    position: relative;
    top: -2px;
}

.ConfigureBox .form-group {
    margin-bottom: 5px !important;
}

.ConfigureTipBox {
    padding: 15px;
    border: #d9d4d4 solid 1px;
}

    .ConfigureTipBox .card {
        border-radius: 3px !important;
    }

    .ConfigureTipBox .card-header {
        background: #f5f5f5 !important;
        border-top-left-radius: 3px !important;
        border-top-right-radius: 3px !important;
    }

    .ConfigureTipBox ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .ConfigureTipBox li {
        margin: 0;
        padding: 0;
        font-size: 14px;
        line-height: 30px;
        font-weight: 500;
    }

    .ConfigureTipBox .card-body {
        padding: 10px 20px;
    }

        .ConfigureTipBox .card-body .fa-check {
            font-size: 13px;
            margin-right: 8px;
        }

.toaster {
    background: #76c55e !important;
    color: #fff !important;
    padding: 15px !important;
}

li.in-active {
    padding: 15px;
    cursor: not-allowed;
    color: #ddd;
}

    li.in-active:disabled {
        background: #ddd;
    }

input[type=checkbox]:checked {
    background-color: var(--background-color);
}

.fa-lock {
    font-size: 36px;
    border: var(--border-color) solid 3px;
    border-radius: 50%;
    height: 80px;
    width: 80px;
    padding: 20px;
    margin-bottom: 20px;
}

.fa-globe {
    font-size: 60px;
    margin-bottom: 20px;
}

.fa-check, .fa-lock, .fa-globe, .fa-arrow-circle-right, .fa-folder-open-o, .approval-setting-box-act .fa-plus-circle, .fraud-text-check {
    color: var(--color);
}

.download-erp-csv-card {
    border: var(--border-color) solid 1px !important;
}

.dowbload-erp-csv-header {
    color: var(--color) !important;
    background: var(--background-color);
    border-radius: 0;
}

.fraud-text-check {
    font-weight: 600;
}

.notsupportedBox {
    width: 250px;
    margin: 100px auto;
    text-align: center;
}

.DowloadInvoiceBtn {
    background: var(--background-color) !important;
    border: none !important;
    height: 37px !important;
    width: 37px !important;
    color: var(--w-color);
    border-radius: 3px !important;
    margin: 10px 0 !important;
    text-align: center !important;
    line-height: 37px !important;
    position: relative !important;
    right: 15px !important;
}

    .DowloadInvoiceBtn .fa {
        color: #fff !important;
    }

.DowloadInvoiceBtnBig {
    background: var(--background-color) !important;
    border: none !important;
    color: var(--w-color);
    font-size: 15px !important;
    border-radius: 3px !important;
    margin: 10px 0 !important;
    padding: 5px 20px;
}

    .DowloadInvoiceBtnBig:hover {
        color: var(--w-color) !important;
    }

.notsupportedBox img {
    margin-bottom: 20px !important;
}

.notsupportedBox p {
    margin-bottom: 20px !important;
}

.DowloadInvoiceBtnBig .fa {
    margin-right: 10px;
}

.mark, mark {
    padding: .2em;
    background-color: #ff0 !important;
}

[v-cloak] {
    display: none;
}

.teamDriveHead {
    font-weight: 600 !important;
    margin-bottom: 10px;
}

.width8Pr {
    width: 8%;
}

#TeamDriveId {
    width: 30%;
    margin: 0 auto;
}

.googleDriveWrp {
    position: relative;
    top: -34px;
}

    .googleDriveWrp p {
        padding: 0 !important;
    }

    .googleDriveWrp .DragOr {
        line-height: 50px !important;
    }

.table-loader {
    visibility: hidden;
}

    .table-loader:before {
        visibility: visible;
        display: table-caption;
        content: "";
        width: 100%;
        height: 600px;
        background-image: linear-gradient(#ebebeb 1px,transparent 0),linear-gradient(90deg,#ebebeb 1px,transparent 0),linear-gradient(90deg,rgba(255,255,255,0),rgba(255,255,255,.5) 15%,rgba(255,255,255,0) 30%),linear-gradient(#f0f0f2 35px,transparent 0);
        background-repeat: repeat;
        background-size: 1px 35px,10% 1px,30% 100%,2px 70px;
        background-position: 0 0,0 0,0 0,0 0;
        animation: shine .5s infinite;
    }

thead.oTable-header {
    width: 100%;
}

    thead.oTable-header tr > th {
        white-space: nowrap !important;
    }

@keyframes shine {
    to {
        background-position: 0 0,0 0,40% 0,0 0;
    }
}

.arc-btn {
    display: flex;
}

#manageInvoiceGrid tr td:last-child, #manageInvoiceGrid tr th:last-child, #manageInvoiceGrid tr td:nth-child(18), #manageInvoiceGrid tr th:nth-child(18), .defaultTbl tr th:nth-child(18), .defaultTbl tr td:nth-child(18), .defaultTbl tr td:last-child, .defaultTbl tr th:last-child, #manageInvoiceGrid tr th:last-child, #manageInvoiceGrid tr td:last-child {
    white-space: nowrap !important;
}

.table-bordered thead th {
    background: #ebecee;
    border: #d1d0d1 solid 1px;
}

table.table-bordered {
    border-collapse: collapse !important;
}

.actionWrp {
    background: #fff;
    border: 1px solid rgba(0,0,0,.125);
    padding: 10px 5px;
}

.oldactionWrp {
    background: #fff;
    padding: 10px 5px;
}

.documentSummited {
    background: #f1f1f1 !important;
    text-align: center !important;
}

.Textoverlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    right: 0;
    height: 73%;
    width: 90%;
    opacity: 0;
    transition: .8s ease;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 11px rgba(33,33,33,.2);
    border-color: #000;
}

.Textoverlay1 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .8s ease;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 11px rgba(33,33,33,.2);
    border-color: #000;
}


.DashboardDateSerch{

}

    .DashboardDateSerch .DateWrp {
        float: left;
        margin-right:10px
    }
.translated-original-wrp{
    padding:10px 15px;
}

.fa-language {
    color: #104478;
    margin-left:5px;
}
.Invoice-Data .form-control{
    margin-bottom:10px;
}
.Invoice-Data label{
    margin-bottom: 0px!important;
} 