 
@import url("https://fonts.googleapis.com/css2?family=Honk&family=Nabla:EDPT,EHLT@193,22&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");


* {
  margin: 0;
  box-sizing: border-box;
  user-select: auto;
}

html {
  font-size: 62.5%;
}

:root {
  --container-height: 90%;
  --container-width: 90%;
  --component-background: rgba(0, 0, 0, 0.45);
}

body {
  background: url('../img/bg2.png');
  background-size: cover;
  background-attachment: fixed;
  display: block;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
}

@mixin windowButton($color) {
  width: 1.5rem;
  height: 1.5rem;
  background: $color;
  display: inline-block;
  border-radius: 50%;
  transition: 0.3s ease;
  &:hover {
    transform: scale(1.2);
  }
}

.container {
  background: rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
  backdrop-filter: blur(30px);
  border-radius: 15px;
  max-width:99%;
   
  position: relative;
}

header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 30px;
  position: relative;
}

section.window--buttons {
  position: absolute;
  top: 15px;
  left: 15px;
  .window__close {
    @include windowButton(#f00);
  }

  .window__minimize {
    margin-left: 5px;
    @include windowButton(#f57c00);
  }

  .window__maximize {
    margin-left: 5px;
    @include windowButton(#4caf50);
  }
}

aside {
  overflow: scroll;
  height: 90%;
  margin-top: 20px;
  float: left;
  width: 200px;
  position: sticky;
  top: 0;
  button {
    display: block;
    margin-top: 7px;
    margin-left: 15px;
    padding: 0.7rem 4rem;
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    background: none;
    width: 170px;
    border-radius: 10px;
    border: 0;
    color: white;
    transition: 0.2s ease;
    cursor: pointer;
    &:hover {
      background: rgba(0, 0, 0, 0.55);
      backdrop-filter: blur(20px);
    }
    &.active {
      background: rgba(0, 0, 0, 0.55);
      backdrop-filter: blur(20px);
    }
  }
  input[type="text"] {
    font-size: 1.5rem;
    width: 170px;
    margin-left: 15px;
    padding: 0.9rem;
    border-radius: 10px;
    background: #000;
    color: #fff;
    font-family: "Poppins", sans-serif;
    border: 0;
    outline: 0;
    text-align: center;
    transition: 0.3s ease;

    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: white;

    &::-webkit-input-placeholder {
      text-align: center;
    }

    &:-moz-placeholder {
      /* Firefox 18- */
      text-align: center;
    }

    &::-moz-placeholder {
      /* Firefox 19+ */
      text-align: center;
    }

    &:-ms-input-placeholder {
      text-align: center;
    }
  }
  .profile {
    position: absolute;
    left: 15px;
    display: flex;
    bottom: 15px;
    align-items: center;
    .profile--pic {
      width: 4rem;
      border-radius: 50%;
    }
    h1 {
      color: #fff;
      font-weight: 400;
      margin-left: 10px;
      font-size: 40px;
    }
  }
}

.content {
  color: white;
  padding: 40px;
  border-radius: 30px;
  height: 90%;
  margin-right: 20px;
  margin-top: 20px;
   
  .ideas {
    display: flex;
    .idea {
      background: none;
      width: 100%;
      padding: 20px;
      border-radius: 20px;
      backdrop-filter: blur(20px);
      transition: 0.3s ease;
      &:nth-of-type(2) {
        margin-left: 15px;
      }
      
      &:hover {
        
      }
    }
  }

  .updates {
    margin-top: 20px;
    h1:nth-of-type(1) {
      font-size: 40px;
    }

    .update {
      width: 100%;
      background: var(--component-background);
      padding: 1.3rem 0.7rem;
      border-radius: 10px;
      margin-top: 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: 0.4s ease;
      &:hover {
        transform: scale(1.03);
      }
      .updt-left {
        display: flex;
        align-items: center;
        h1 {
          font-size: 1.7rem;
          margin-left: 10px;
        }

        img {
          width: 35px;
        }
      }

      .buttons {
        button {
          background: none;
          color: dodgerblue;
          border: 0;
          font-size: 1.6rem;
          transition: 0.2s ease;
          cursor: pointer;
          font-family: "Poppins", sans-serif;
          &:hover {
            color: blue;
          }
        }
      }
    }
  }

  .trending {
    margin-top: 20px;
    h1:nth-last-of-type(1) {
      font-size: 40px;
    }

    .grid {
      display: grid;
      grid-template-rows: repeat(4, 25%);
      grid-template-columns: 25% 25% 25% 25%;
      margin-top: 10px;
      gap: 5px;
      .grid__app {
        background: var(--component-background);
        padding: 13px;
        display: inline-block;
        display: flex;
        height: fit-content;
        border-radius: 10px;
        justify-content: space-between;
        &.margin {
          margin-top: 20px;
        }
        h1 {
          font-size: 40px;
        }
        button {
          background: dodgerblue;
          color: #fff;
          border: 0;
          outline: 0;
          border-radius: 30px;
          width: 30%;
          cursor: pointer;
        }
      }
    }
  }

  .links {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    grid-template-rows: repeat(2, 50%);
    a {
      text-align: center;
      color: #fff;
      font-size: 1.4rem;
      &:nth-of-type(3),
      &:nth-of-type(4) {
        margin-top: 7px;
      }
    }
  }
}

@media (max-width: 768px) {
  .content .trending .grid {
    grid-template-columns: repeat(2, 50%);
    grid-template-rows: repeat(4, 25%);
  }
  aside {
    display: none;
  }

  .links {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
  }
}

.idea {
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.idea h2{
  padding:20px;
  font-size: 35px;
}
.ideabox{
  height:250px;
}
.ideaimg{
  width:50px;
}
img.special{
    height: 200px;
    right: 4px;
    bottom:0;
    position: absolute;
}
p.here{
  font-size: 16px;
  color: #efefef;
  text-align: right;
  position: absolute;
  right: 15px;
  top:5px;

}
p.lang_en{
  color:#fff;
  font-size: 20px;
  margin-top: 15px;
}
p.lang_pt{
  color:#fff;
  font-size: 20px;
  margin-top: 15px;
}
.lang_en{
  display: block;
}

.lang_pt{
  display: none;
}
.showen_yes{
  display:block;
}
.showen_no{
  display:none;
}
.showpt_yes{
  display:block;
}
.showpt_no{
  display:none;
}
.idea>p>button{
  background-color: green;
  color: #fff;
  height:35px;
  width:250px;
  font-size: 18px;
  position: absolute;
  bottom: 20px;
  right:20px;
}

.footer-copy{
            font-size:14px;
            text-shadow:1px 1px 1px #000;
        }
        h2.welcome1{
            left:10px;
            top:20px;
        }
        h2.welcome2{
            left:70px;
            top:100px;
        }
        h2.welcome3{
            left:40px;
            top:60px;
        }
        span.flagsicon{
            width:50px;
            height:50px;
        }

.content_text{
	text-align:left;
	font-size:20px;
	padding-left: 20px;
}

.content_text_thanks{
	text-align:right;
	font-size:20px;
}

.header_etrs_headline{
	font-size: 40px;
	text-shadow: 4px 4px 4px black;
}

/*  */
.form-label {
    margin-bottom: .5rem;
    font-size: 18px;
}



p.dou, p.dou a{
   font-size:1.5rem; 
   color:#fff; 
      padding-top: 10px;
    padding-bottom: 10px;
}
p.dou a:hover {
  color:#000
}

div#emailerror {
    font-size: 16px;
    background-color: #efefef;
    padding: 5px;
    font-weight: bold;
}
div#passworderror {
    font-size: 16px;
    background-color: #efefef;
    padding: 5px;
    font-weight: bold;
}
div#tokenerror {
    font-size: 16px;
    background-color: #efefef;
    padding: 5px;
    font-weight: bold;
}
div#pass1error {
    font-size: 16px;
    background-color: #efefef;
    padding: 5px;
    font-weight: bold;
}
div#pass2error {
    font-size: 16px;
    background-color: #efefef;
    padding: 5px;
    font-weight: bold;
}

.design_error {
    font-size: 15px;
    background-color: #efefef;
    padding: 5px;
    font-weight: bold;
    border-radius: 0 0 5px 5px;
}

input#forEmail {
    font-size: 18px;
}
input#forPassword {
    font-size: 18px;
}
input.form-control ,select.form-select {
    font-size: 18px;
     
}
a.btn.submit_form_button , button.btn.submit_form_button{
  background-color: #00c852; 
  font-size:18px; 
  color:#fff;   
}

a.btn.submit_form_button, button.btn.submit_form_button {
    font-size: 18px;
    width: 100%;
}
a.btn.submit_form_button, button.btn.submit_form_button:hover{
    background-color: #429f45;
    color:#fff
}
@media only screen and (max-width: 575px) {

            /* Custom styles for extra small devices (<576px) */
                #yestablet{
                    display: none;

                }   
                #nomobile{
                    display: block;
                } 
            }
            @media only screen and (min-width: 576px) {

            /* Custom styles for small devices (≥576px) */
                #yestablet{
                    display: none;

                }   
                #nomobile{
                    display: block;
                } 
            }
            @media only screen and (min-width: 768px) {

            /* Custom styles for medium devices (≥768px) */
                #yestablet{
                    display: block;

                }   
                #nomobile{
                    display: none;
                } 
            }            
            @media only screen and (min-width: 992px) {

            /* Custom styles for medium devices (≥992px) */
                #yestablet{
                    display: block;

                }   
                #nomobile{
                    display: none;
                } 
            }  
            @media only screen and (min-width: 1200px) {

            /* Custom styles for medium devices (≥992px) */
                #yestablet{
                    display: block;

                }   
                #nomobile{
                    display: none;
                } 
            } 
            @media only screen and (min-width: 1400px) {

            /* Custom styles for medium devices (≥992px) */
                #yestablet{
                    display: block;

                }   
                #nomobile{
                    display: none;
                } 
            }      
            #footer{

            }   
            
#nomobile b {
    font-size: 24px;
    color: #fff;
    text-shadow: 2px 2px 2px #000;
    padding-left: 20px;
}
#nomobile{
  color:#fff
}

.alert.alert-danger {
    font-size: 18px;
    box-shadow: 1px 1px 1px #000;
}
.alert.alert-success {
    font-size: 18px;
    box-shadow: 1px 1px 1px #000;
}

div.content {
    margin: 5px;
    padding: 15px;
}


.user_login_tab {
    box-shadow: 1px 1px 3px #000;
    position: absolute;
    right: 30px;
    top: 0px;
    background-color: #efefef;
    color: #000;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
    border-radius: 0 0 10px 10px;
}
.user_login_tab_a_logout {
    color: #000;
    text-decoration: none;
}
.user_login_tab_a_logout:hover{
    color: red;
    text-decoration: none;
}



ul {
    list-style: none;
    color: #000;
    text-align: left;
}

ul li a {
    color: #000;
    text-decoration: none;
    text-align: left;
    :hover{
        color: #fff;
        text-shadow: 1px 1px 1px #000;
    }
}

li.list-group-item.list-group-item-action {
    font-size: 16px;
}


li.list-group-item.list-group-item-action.checkOK {
    background-color: green;
    color: white;
}

li.list-group-item.list-group-item-action.checkNotOK {
    background-color: red;
    color: white;
}


div#character10, 
div#character64, 
div#characterlow, 
div#characterup,
div#characternum, 
div#charactersec, 
div#charactersam {
    position: absolute;
    right: 10px;
    top: 6px;
    font-size: 20px;
    color: lightgray;      
}

div#character10.checkOK, 
div#character64.checkOK, 
div#characterlow.checkOK, 
div#characterup.checkOK,
div#characternum.checkOK, 
div#charactersec.checkOK, 
div#charactersam.checkOK {
    color: green;      
}
div#character10.checkNotOK, 
div#character64.checkNotOK, 
div#characterlow.checkNotOK, 
div#characterup.checkNotOK,
div#characternum.checkNotOK, 
div#charactersec.checkNotOK, 
div#charactersam.checkNotOK {
    color: lightgray;      
}

.ideas2 {
    background-color: #efefef;
    color: black;
    border-radius: 10px;
    box-shadow: 1px 1px 1px #000;
}

.idea2 {
    padding: 10px;
}


ul a {
    color: black;
}

ul a:hover {
    color: #fff;
}


ul a:hover {
    color: white;
    text-decoration: underline;
    text-shadow: 1px 1px 1px #000;
}

h4.card-title {
    font-size: 1.7rem;
}

h4.card-title svg{
    padding-right:10px;
    font-size: 20px;
}

                        .ezrs-card{
                            background-color: #efefef;
                            color: black;
                            border-radius: 10px;
                            box-shadow: 1px 1px 1px #000;
                        }
                        .ezrs-card-footer {
                            background-color: #efefef;
                            border-top: 1px solid #efefef;
                        }
                        .ezrs-body {
                            border-radius: 10px;;
                        }
            .ezrs-list-group-menu {
                border-radius:10px; 
                font-size:16px;
            }
            .ezrs-accordion-button {
                font-size: 16px;
            }         
            
            .ezrs-menue-sub-ul {
                padding-left: 10px;
            }

ul.timeline {
    list-style-type: none;
    position: relative;
}
ul.timeline:before {
    content: ' ';
    background: #d4d9df;
    display: inline-block;
    position: absolute;
    left: 29px;
    width: 2px;
    height: 100%;
    z-index: 400;
}
ul.timeline > li {
    margin: 20px 0;
    padding-left: 20px;
}
ul.timeline > li:before {
    content: ' ';
    background: white;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #429f45;
    left: 20px;
    width: 20px;
    height: 20px;
    z-index: 400;
}


.user_login_tab a:hover {
    color: #429f45;
    text-decoration: none;
}
.user_login_tab a {
    color: #000;
}
.user_login_tab a.user_login_tab_a_logout {
    color: #000;
    text-decoration: none;
}
.user_login_tab a.user_login_tab_a_logout:hover{
    color: red;
    text-decoration: none;
}


input.form-control, select.form-select {
            font-size: 18px;
            border-color: black;
        }  
        .active-subnav{           
             
            color: #fff;
            font-size: 18px;
            background-image: linear-gradient(to right, #00c852, #429f45);
        } 
        .notactive-subnav:hover{           
             
            color: #fff;
            font-size: 18px;
            background-image: linear-gradient(to right, #429f45, #00c852);
        } 
        .notactive-subnav{           
             
            color: #000;
            font-size: 18px;
            
        } 
        .ezrs-card {
            background-color: #fff;
            color: black;
            border-radius: 10px;
            box-shadow: 1px 1px 1px #000;
            width: 100%;
        }
        label{
            padding-top: 10px;
        }
        .btn-group-width{
            width:90%;
        }
        .btn-group-vertical .btn-group-width button{
            font-size:16px;
        }
        input.form-control:focus, select.form-select:focus {
          border-color: #429f45;
          box-shadow: 1px 1px 1px #429f45;
        }
.form-check-input:checked {
    background-color: #429f45;
    border-color: #429f45;
}
.form-check-input:focus {
     
    border-color: #429f45;
    box-shadow: 0 0 0 0.25rem #429f45;
}

.accordion-button:not(.collapsed) {
    background-color: #429f45;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    font-size: 18px;
}

button.accordion-button.collapsed.ezrs-accordion-button b {
    padding-left: 30px;
    position: absolute;
    font-size: 18px;
}

button.accordion-button.ezrs-accordion-button b {
    padding-left: 30px;
    position: absolute;
    font-size: 18px;
}
li.list-group-item {
    padding-left: 30px;
}

label.form-label.mustfield:after{
    content: "*";
    color: black;
    padding-left: 5px;
}

h1{
    font-size: 40px;
    text-shadow: 1px 1px 1px #000;
}
h2{
    font-size: 35px;
     
}
h3{
    font-size: 30px;
}
h4{
    font-size: 25px;
    
}
h5{
    font-size: 20px;
    
} 
h6{
    font-size: 15px;
    
}
p{
  font-size: 18px;
}