@charset "UTF-8";
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    background-color: #fff;
    color: #333;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
   
}



h2 {
    color: #555;
    font-weight: 600;
}

h3 {
    color: #555;
   
}

h4 {
  color: #555;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 2;
}

h5 {
  color: #626262;
  font-size: 14px;
  font-weight: 500;
}

a { 
  text-decoration: none;
  color: #71c55d;
}

a:hover {
  color: #92d283;
}



p {
  color: #505050;
 
}



.img-fluid {
  height: 60px;
  margin-bottom: 30px;
  width: 60px;
}

.container-full {
  padding-left: 0;
  padding-right: 0;
}



.side-sticky-bar {
    position: fixed;
    display: none;
    color: #fff;
    left: 15px;
    top: 15px;
    z-index: 3;
    width: 36px;
}

    .side-sticky-bar .side-dd {
        position: relative;
        display: inline-block;
    }



        .side-sticky-bar .side-dd .side-dd-content {
            display: none;
            position: absolute;
            left: 100%;
            top: 0;
            background-color: #fff;
            min-width: 120px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 1;
            border: 1px solid #ddd;
            border-radius:3px;
        }

        .side-sticky-bar .side-dd:hover .side-dd-content {
            display: block;
        }

        .side-sticky-bar .side-dd .side-dd-content a {
            color: #333;
            font-size:14px;
            padding: 7px 9px;
            text-decoration: none;
            display: block;
            cursor: pointer;        
        }

            .side-sticky-bar .side-dd .side-dd-content a:hover
            {
  background-color: rgba(0,0,0,.04);
            }

            .side-sticky-bar button {
                background: #71c55d;
                width: 40px;
                height: 36px;
                color: #fff;
                border: none;
                font-size: 20px;
                border-radius: 2px;
                margin-bottom: 6px;
            }

        .side-sticky-bar button .dx-icon {
            font-size: 20px;
        }
        /* Back to top button */
        .back-to-top {
            position: fixed;
            display: none;
            background: #71c55d;
            line-height: 1;
            color: #fff;
            padding: 7px 12px 13px 12px;
            font-size: 16px;
            border-radius: 2px;
            left: 15px;
            bottom: 15px;
            transition: background 0.5s;
            z-index: 2;
        }

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

.back-to-top:focus {
  background: #71c55d;
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #55b03f;
  color: #fff;
}

main.dashboard {
    background-color: #f5f5f5;
    padding-bottom: 10px;
    padding-top: 80px;
    flex: 1;
}
    main.dashboard row{
        padding-bottom:10px;
    }
    /*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
    #header {
        background: #fff;
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        z-index: 3;
        transition: all 0.5s ease;
        padding: 20px 0;
    }

#header #logo {
  padding: 6px 0 0 0;
}

#header #logo h1 {
  color: #505050;
  font-family: "Philosopher", sans-serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 0;
}

#header #logo h1 a {
  color: #555;
  line-height: 1;
  display: inline-block;
  text-decoration: none;
}

#header #logo h1 a span, .ecogreen {
  color: #71c55d;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

#header.header-scrolled {
  background: #fff;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu *, .menu_lk {
    margin: 0;
    padding: 0;
    list-style: none;
}
    .menu_lk li {
        line-height: 30px;
    }

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
a.sf-with-ul {
    padding-right: 14px !important;
    position: relative;
    cursor:pointer;
}

 .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 0px;
  margin-top: 1px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

.tour {
    margin-left: 45px !important;
    font-size: 30px;
    /* vertical-align: super; */
    color: #ddd;
    cursor:pointer;
}

.tour i{
    vertical-align:text-top;
}

/* Nav Meu Container */
#nav-menu-container {
  float: right;
  margin: 0 0 0 0;
}

@media (max-width: 1024px) {
  #nav-menu-container {
    display: none;
  }
}

/* Nav Meu Styling */
.nav-menu a, .menu_lk a{
    padding: 8px 8px;
    text-decoration: none;
    display: inline-block;
    color: #555;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    outline: none;
    letter-spacing: 0;
    transition: 0.3s;
}
.menu_lk a {
    padding:0;
}
.nav-menu li:hover > a, .nav-menu > .menu-active > a, .menu_lk li:hover > a {
    color: #71c55d;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu ul {
  margin: 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 5px 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 14px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #71c55d;
}

.nav-menu ul ul {
  margin: 0;
}



a.invisible-link {
    color: white !important;
}


    a.invisible-link:hover {
        color: #71c55d !important;
    } 

/* Mobile Nav Toggle */
#mobile-nav-toggle {
 
  margin: 4px 0 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #555;
  font-size: 24px;
}

@media (max-width: 1024px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(52, 59, 64, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 14px;
  overflow: hidden;
  padding: 6px 22px 6px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
  letter-spacing: 0;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #71c55d;
}

#mobile-nav ul .menu-active a {
  color: #71c55d;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(52, 59, 64, 0.9);
  display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

.padd-section {
  padding-bottom: 80px;
  padding-top: 80px;
}

@media (max-width: 992px) {
  .padd-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.section-title {
  margin-bottom: 80px;
}

@media (max-width: 992px) {
  .section-title {
    margin-bottom: 40px;
  }
}

.section-title h2 {
  font-family: "Roboto", sans-serif;
  font-size: 45px;
  font-weight: 100;
  letter-spacing: 2px;
  margin-bottom: 20px;
 
}

.section-title .separator {
  margin: 0;
}

.separator {
  color: #626262;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f5fbf3;
  min-height: 40px;
  margin-top: 82px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li {
  letter-spacing: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}






.btn-get-started {
    font-family: "Roboto", sans-serif !important;
    text-transform: uppercase !important;
    font-weight: 400 !important;
    font-size: 13px !important;
    letter-spacing: 1px !important;
    display: inline-block !important;
    padding: 11px 36px !important;
    border-radius: 50px !important;
    transition: 0.5s !important;   
    border: 2px solid #71c55d !important;
    background: #fff !important;
    color: #71c55d !important;
    text-decoration: none !important;
    line-height:19px;
}

    .btn-get-started:hover {
        background: #71c55d !important;
        color: #fff !important;
    }









/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #2a2c30;
  padding-top: 50px;
}

.footer .footer-logo .navbar-brand {
  color: #fff;
  display: inline-block;
  float: none;
  font-family: "Philosopher", sans-serif;
  font-size: 24px;
  font-weight: 500;
  height: 100%;
  letter-spacing: 0.2em;
  padding-left: 0;
  padding-top: 0;
}

.footer .footer-logo p {
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
}

.footer .list-menu > h4 {
  color: #fff;
  padding-bottom: 20px;
}

.footer .list-menu ul li a {
  color: #fff;
  font-size: 12px;
  padding-left: 5px;
  text-decoration: none;
  letter-spacing: 0;
}
    .footer .list-menu table
    {
        font-size:12px;
        color:white;
    }
        .footer .list-menu table tr td:first-child{
            padding-right:30px;
        }

        .footer .copyrights {
            background: #fff;
            margin-top: 50px;
            text-align: center;
            padding: 25px;
        }

.footer .copyrights p, .footer .copyrights .credits {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0;
}

.footer .copyrights p a, .footer .copyrights .credits a {
  letter-spacing: 0;
  color: #71c55d;
}



a.social:nth-of-type(2) {
    margin-left: 0 !important;
}

a.social {
    display: inline-block;
    height: 30px;
    margin-left: 10px;
}

   

    a.ttp {      
        width: 15px;
        background: url('../img/social/social7.png') 0 center no-repeat;
    }

    a.ttp:hover {
        background: url('../img/social/social7.png') -15px center no-repeat;
    }

a.vk {  
    width: 25px;
    background: url('../img/social/social1.png') 0 center no-repeat;
}

    a.vk:hover {
        background: url('../img/social/social1.png') -25px center no-repeat;
    }

a.fb {
    width: 10px;
    background: url('../img/social/social2.png') 0 center no-repeat;
}

    a.fb:hover {
        background: url('../img/social/social2.png') -10px center no-repeat;
    }


a.insta {
    width: 19px;
    background: url('../img/social/social3.png') 0 center no-repeat;
}

    a.insta:hover {
        background: url('../img/social/social3.png') -19px center no-repeat;
    }

a.twi {
    width: 22px;
    background: url('../img/social/social5.png') 0 center no-repeat;
}

    a.twi:hover {
        background: url('../img/social/social5.png') -22px center no-repeat;
    }

a.tlg {
    width: 19px;
    background: url('../img/social/social6.png') 0 center no-repeat;
}

    a.tlg:hover {
        background: url('../img/social/social6.png') -19px center no-repeat;
    }

a.youtube {
    width: 23px;
    background: url('../img/social/social4.png') 0 center no-repeat;
}

    a.youtube:hover {
        background: url('../img/social/social4.png') -23px center no-repeat;
    }



/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 0 solid transparent;
    border-radius: .1429rem
}

    .card > hr {
        margin-right: 0;
        margin-left: 0
    }

.card-body {
    flex: 1 1 auto;
    padding: 24px
}

.card {
    box-shadow: 0 3px 1px -2px rgba(0,0,0,.02),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)
}

.col > .card, [class*=col-] > .card {
    margin-bottom: 24px
}

    .col > .card.h-100, [class*=col-] > .card.h-100 {
        height: calc(100% - 24px) !important
    }


/*--------------------------------------------------------------
# dashboard
--------------------------------------------------------------*/



#admin-dashboard {
}

    #admin-dashboard .card-body
    {
        text-align:center;
    }

    #admin-dashboard .card-body img {
        max-width: 100%;
        max-height: 200px;
        margin:10px;
    }


    /*------------BTN TEXT-----------*/


.btn-text, .btn-text:not(:disabled):not(.disabled) {
    background: none;
    border: none;
    box-shadow: none
}

    .btn-text:active, .btn-text:active:focus, .btn-text:focus, .btn-text:hover, .btn-text:not(:disabled):not(.disabled):active, .btn-text:not(:disabled):not(.disabled):active:focus, .btn-text:not(:disabled):not(.disabled):focus, .btn-text:not(:disabled):not(.disabled):hover {
        box-shadow: none
    }

    .btn-text:not(:disabled):not(.disabled).btn-primary {
        color: #2196f3
    }

        .btn-text:not(:disabled):not(.disabled).btn-primary:hover {
            background: rgba(33,150,243,.1)
        }

        .btn-text:not(:disabled):not(.disabled).btn-primary:active {
            color: #2196f3;
            background: rgba(33,150,243,.3)
        }

    .btn-text:not(:disabled):not(.disabled).btn-secondary {
        color: #9e9e9e
    }

        .btn-text:not(:disabled):not(.disabled).btn-secondary:hover {
            background: hsla(0,0%,62%,.1)
        }

        .btn-text:not(:disabled):not(.disabled).btn-secondary:active {
            color: #9e9e9e;
            background: hsla(0,0%,62%,.3)
        }

    .btn-text:not(:disabled):not(.disabled).btn-danger {
        color: #ff1744
    }

        .btn-text:not(:disabled):not(.disabled).btn-danger:hover {
            background: rgba(255,23,68,.1)
        }

        .btn-text:not(:disabled):not(.disabled).btn-danger:active {
            color: #ff1744;
            background: rgba(255,23,68,.3)
        }


        /*----------------------img svg----------------*/
        img.mw120{
            max-width:120px;
        }

        img.mw45{
            max-width:45px;
        }

img.mw32 {
    max-width: 32px;
}

img.mw30 {
    max-width: 30px;
}

img.mw24 {
    max-width: 24px;
}

img.mw16 {
    max-width: 16px;
   
}

/*------------page account-----------*/

.participant_stngs{
    padding:10px 0;
    display:none;
}

    .participant_stngs > .dx-button{
        margin-top:10px;
                                    }

.participant_stngs_fields {
    display: flex !important;
    justify-content: space-between !important;
    padding: 2px 0;
    color: #6c757d;
    font-size:smaller;
}

ul.profileinfo {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.profileinfo li
{
    margin:5px 0;
    font-size:20px;
}

ul.profileinfo li img
{
    padding-right:10px;
}

#tagBoxInvitation
{
    width:100%;
}

/*---------REPORTS--------*/

.child-margin10 > *{
    margin-left:10px;
}

.pl-40
{
    padding-left:40px;
}

.p100{
    padding:0 100px;
}


.edit-coordinates-grd-cell
{
    visibility:hidden;
    color:#9e9e9e;
}

    .edit-coordinates-grd-cell > .dx-button-content {
        padding: 0;
    }

    .dx-row-focused .edit-coordinates-grd-cell {
        visibility: visible;
    }


.side-collapse-bar-tag {
    position: fixed;
    top: 50px;
    right: 0px;
    font-size: 20px;
    font-weight: 400;
    display: none;
    cursor: pointer;
    background-color: whitesmoke;
    z-index: 3;
    box-shadow: 0 3px 1px -2px rgba(0,0,0,.02),0 2px 2px 0 rgba(0,0,0,.14);
    padding: 10px;
    border-radius:5px 0 0 5px;
}
.side-collapse-bar-tag  i {
    margin-right: 10px;
}

.side-collapse-bar {
    display: none;
    position: fixed;
    height: 100%;
    right: 0;
    width: 400px;
    max-width: 100%;
    background-color: whitesmoke;
    overflow-y: scroll;
    z-index: 3;
    box-shadow: 0 3px 1px -2px rgba(0,0,0,.02),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);
    padding: 20px;
}

    .side-collapse-bar span {
        font-size: 25px;
        font-weight: 400;
        position: relative;
        display: inline-block;
        width: 100%;
    }

    .side-collapse-bar span:after {
        content: '×';
        display:inline-block;
        position:absolute;
        right:0px;
       cursor:pointer;
    }

    .side-collapse-bar::before {
        content: ' ';       
        position: absolute;
        top:0;
        left: 0;
        width: 10px;
        height: 100%;
        cursor: ew-resize;
    }


    .side-collapse-bar span i {
        margin-right: 15px;
    }

    .side-collapse-bar ul {
        list-style: none;
        padding: 0;
        word-break: break-word;
        font-size:13px;
    }

    .side-collapse-bar ul li {
        color:#555;
    }





    /*---------DXHOOKS------------------*/


td[role=columnheader] {
    text-align: left !important
}

    td[role=columnheader][colspan], td.dx-command-select {
        text-align: center !important
    }  

    .dx-toolbar, .dx-datagrid {
        background-color: transparent;
    }

.above-dx-toolbar {
   margin-bottom: -35px;
    z-index: 2;
    position: absolute;
  vertical-align:middle;
  display:flex;
}
    .above-dx-toolbar .dx-fileuploader,   
    .dx-file-hook .dx-fileuploader {
        margin-left: 10px;
        width: 200px;
        display: inline-block;
    }

        .above-dx-toolbar .dx-fileuploader div, .dx-file-hook .dx-fileuploader div {
            max-height: 36px;
        }

    .above-dx-toolbar .dx-fileuploader-input-wrapper,
    .dx-toolbar .dx-fileuploader-input-wrapper,
    .dx-file-hook .dx-fileuploader-input-wrapper {
        padding: 0;
        border: none;
    }
    .above-dx-toolbar .dx-fileuploader-wrapper,
    .dx-toolbar .dx-fileuploader-wrapper,
    .dx-file-hook .dx-fileuploader-wrapper {
        padding: 0;
    }
.dx-file-hook .dx-fileuploader-input-container
{
    display:none;
}

.dx-command-select {
    width: 45px !important;
    min-width: 45px !important;
}

#close .dx-buttongroup-item, #close .dx-buttongroup-item .dx-icon {
    border-color: #d43f3a;
    color: #d43f3a;
}


#close .dx-buttongroup-item:hover {
   
    background-color: rgba(212,63,58,.1);
}


/*-------------------CookieToast------------------*/
.cookie-toast {
    background: #5CB85C;
    border: none;
    border-radius: 8px;
    padding: 0;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    font-size: 16px;
    color: white;
}

.cookie-toast-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px 16px 20px;
    gap: 10px;
}

.cookie-toast-text {
    flex: 1;
    overflow: hidden;
}

.cookie-toast-text a {
    color: #fff;
    text-decoration: underline;
    letter-spacing: 0px !important;
}

.cookie-toast-text a:hover {
    text-decoration: none;
}

.cookie-toast-button .dx-button {
    min-width: 120px;
    background: rgba(255,255,255,0.25);
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
    font-weight: 500;
}

.cookie-toast-button .dx-button:hover {
    background: rgba(255,255,255,0.35);
}

@media (max-width: 795px) {
    .cookie-toast-text {
        line-height: 24px;
    }
}

@media (max-width: 560px) {
    .cookie-toast-inner {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
    }

    .cookie-toast-button {
        width: 100%;
    }

    .cookie-toast-button .dx-button {
        width: 100%;
        max-width: 200px;
    }
}