@import url(https://fonts.googleapis.com/css?family=Roboto&display=swap);
.loading-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container .loader-container {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.loading-container .loader-container .loader-dot {
    animation: loader-container 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}

.loading-container .loader-container .loader-dot:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--secondary-color);
    margin: -4px 0 0 -4px;
}

.loading-container .loader-container .loader-dot:nth-child(1) {
    animation-delay: -0.036s;
}

.loading-container .loader-container .loader-dot:nth-child(1):after {
    top: 63px;
    left: 63px;
}

.loading-container .loader-container .loader-dot:nth-child(2) {
    animation-delay: -0.072s;
}

.loading-container .loader-container .loader-dot:nth-child(2):after {
    top: 68px;
    left: 56px;
}

.loading-container .loader-container .loader-dot:nth-child(3) {
    animation-delay: -0.108s;
}

.loading-container .loader-container .loader-dot:nth-child(3):after {
    top: 71px;
    left: 48px;
}

.loading-container .loader-container .loader-dot:nth-child(4) {
    animation-delay: -0.144s;
}

.loading-container .loader-container .loader-dot:nth-child(4):after {
    top: 72px;
    left: 40px;
}

.loading-container .loader-container .loader-dot:nth-child(5) {
    animation-delay: -0.18s;
}

.loading-container .loader-container .loader-dot:nth-child(5):after {
    top: 71px;
    left: 32px;
}

.loading-container .loader-container .loader-dot:nth-child(6) {
    animation-delay: -0.216s;
}

.loading-container .loader-container .loader-dot:nth-child(6):after {
    top: 68px;
    left: 24px;
}

.loading-container .loader-container .loader-dot:nth-child(7) {
    animation-delay: -0.252s;
}

.loading-container .loader-container .loader-dot:nth-child(7):after {
    top: 63px;
    left: 17px;
}

.loading-container .loader-container .loader-dot:nth-child(8) {
    animation-delay: -0.288s;
}

.loading-container .loader-container .loader-dot:nth-child(8):after {
    top: 56px;
    left: 12px;
}

@keyframes loader-container {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.containerModal{
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

.containerModal img{
    cursor: pointer;
}

.containerModal div{
   
    margin: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    width: 730px;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgb(80 85 90 / 20%);
    border-radius: 4px;
}

.containerModal section{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.containerModal h1{
    font-weight: bold;
    color: var(--primary-color) ;
    font-size: 1.5rem;
}

.containerModal span:nth-of-type(1){
    margin-top: 2rem;
    line-height: 36px;
    color: #50555A;
}

.containerModal span:nth-of-type(2){
    margin-top: 0;
    line-height: 36px;
    color: #50555A;
}

.containerModal hr{
    width: 100%;
    border: 1px solid #EAEEF0;
    margin: 2rem 0;
}

.containerModal article{
    display: flex;
    justify-content: flex-end;
}

.containerModal article button{
    width: 231px;
height: 48px;
background: #234581;
border-radius: 4px;
border: none;
color: #FFFFFF;
cursor: pointer;
}

* {
  box-sizing: border-box;
}
.center-box-header {
  background-color: var(--primary-color);
  width: 100%;
  position: relative;
  z-index: 9;
}

.header {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  font-family: Roboto;
  /*TODO: param tamanho*/
  height: 100px;
  padding: 0 20px;
}

.header a.logo {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  max-height: 110px;
  height: 100%;
  font-size: 25px;
  grid-column: 1;
  justify-self: flex-start;
  width: 100%;
  max-width: 210px;
}

.header .header-links-container {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
}

.header .header-links-container a {
  margin: 0 16px;
  color: var(--tertiary-font-color);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
}

.header .header-links-container a:hover {
  opacity: 0.9;
}

.header .header-links-container a.header-link-active {
  position: relative;
  font-weight: bold;
  height: 100%;
  /* TODO: combinar com o param tamanho */
  line-height: 100px;
}

.header .header-links-container a.header-link-active::after {
  content: "";
  display: block;
  height: 6px;
  width: 100%;
  background: var(--secondary-color);
  position: absolute;
  bottom: 0;
}

.menu-btn-responsive {
  width: 55px;
  height: 40px;
  position: relative;
  display: none;
  align-items: center;
  margin-right: 15px;
  cursor: pointer;
}

.hamburguer {
  display: block;
  width: 30px;
  height: 5px;
  background: var(--secondary-font-color);
  border-radius: 4px;
  position: relative;
  transition: 0.3s ease-in-out;
}

.hamburguer:before,
.hamburguer:after {
  width: 40px;
  content: "";
  display: block;
  height: 5px;
  background: var(--secondary-font-color);
  border-radius: 4px;
  position: absolute;
  transition: 0.3s ease-in-out;
}

.hamburguer:before {
  top: -11px;
}

.hamburguer:after {
  bottom: -11px;
}

#input-menu-btn-responsive {
  display: none;
}

#input-menu-btn-responsive:checked ~ .menu-btn-responsive .hamburguer {
  transform: rotate(45deg);
  width: 40px;
}

#input-menu-btn-responsive:checked ~ .menu-btn-responsive .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}

#input-menu-btn-responsive:checked ~ .menu-btn-responsive .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}

.full-container-responsive {
  position: fixed;
  z-index: 7;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  transition: 0.5s;
}

#input-menu-btn-responsive:checked ~ .full-container-responsive {
  display: block;
  background: rgba(0, 0, 0, 0.2);
}

.header .notification {
  display: block;
  margin: 0 auto;
  height: 34px;
  width: 34px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  background-color: var(--secondary-color);
}

.header .notification:active {
  transform: translateY(1px);
}

.header .profile-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-left: auto;
}

.header .profile-container .user-points {
  width: 140px;
  height: 42px;
  line-height: 42px;
  padding-left: 22px;
  padding-right: 22px;
  border-radius: 32px 0 0 32px;
  pointer-events: none;
  background: var(--secondary-color);
  box-shadow: 0 3px 6px rgba(0, 217, 198, 0.2);
  color: var(--secondary-font-color);
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  position: relative;
  left: 16px;
}

.profile-container .user-points span {
  font-size: 16px;
  font-weight: normal;
  display: inline-block;
  margin-left: 4px;
}

.header .profile-container .profile-pic {
  width: 48px;
  height: 48px;
  border-radius: 50px;
  background: lightcyan;
  background-size: contain;
  position: relative;
  left: 0;
}

.wrapper-alert-bell {
  position: relative;
  width: 20px;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 36px;
  z-index: 6;
}

.icon-alert-bell {
  position: relative;
  width: 16px;
  height: 20px;
  cursor: pointer;
}

.alert-bell-stroke {
  fill: none;
  stroke: white;
}

.alert-bell {
  fill: white;
}

.ballon-alert-bell {
  position: absolute;
  background: var(--secondary-color);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  top: 20px;
  right: -20px;
  color: var(--secondary-font-color);
  font-size: 12px;
}

.container-info-alert {
  position: absolute;
  width: 285px;
  max-height: 270px;
  background: var(--alternative-background);
  border: 1px solid var(--secondary-color);
  border-radius: 0 0 8px 8px;
  top: 68px;
  right: -8px;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
  padding: 18px 14px 18px 9px;
  overflow: hidden;
}

.sem-conteudo-info-alert {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}

.box-info-alert {
  overflow-y: scroll;
  max-height: calc(270px - 36px);
  padding: 0 14px 0 9px;
}

.item-info-alert {
  position: relative;
  padding-left: 27px;
  margin-bottom: 18px;
}

.img-info-alert {
  position: absolute;
  left: 0;
}

.text-info-alert {
  color: var(--primary-font-color);
  font-size: 14px;
  overflow: hidden;
}

.text-info-alert strong {
  display: block;
  margin-bottom: 4px;
}

.link-info-alert {
  background-color: var(--secondary-color);
  color: var(--secondary-font-color);
  font-size: 15px;
  padding: 10px;
  border-radius: 4px;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  margin-top: 14px;
}

.overlay-info-alert {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 4;
  display: none;
}

@media (max-width: 1024px) {
  .header-links-container {
    position: fixed;
    flex-direction: column;
    bottom: 0;
    top: 100px;
    left: -270px;
    z-index: 9;
    justify-content: flex-start !important;
    background: var(--secondary-font-color);
    box-shadow: -15px -25px 25px 0px var(--primary-color);
    width: 250px;
    padding-top: 40px;
    transition: 0.3s ease-in-out;
  }

  #input-menu-btn-responsive:checked ~ .header-links-container {
    left: 0px;
  }

  .header .header-links-container a {
    color: var(--primary-color);
    font-size: 18px;
    line-height: 24px;
    text-align: left;
    display: flex;
    border-right: 4px solid var(--secondary-font-color);
    width: 100%;
    padding-left: 20px;
    height: 48px;
    max-height: 48px;
    transition: 0.2s;
    align-items: center;
  }

  .header-links-container a:hover {
    right: 4px;
    padding-left: 24px;
    border-right: 4px solid var(--secondary-color);
  }

  .menu-btn-responsive {
    display: flex;
  }

  .header .header-links-container a.header-link-active {
    height: auto;
    line-height: auto;
  }

  .header .header-links-container a.header-link-active::after {
    right: 0;
    bottom: auto;
    height: 100%;
    width: 6px;
  }
}

@media (max-width: 575px) {
  .header .profile-container .user-points {
    width: 115px;
    padding-left: 0px;
    font-size: 17px;
  }

  .wrapper-alert-bell {
    margin: 0 15px;
  }
}

@media (max-width: 455px) {
  .header {
    flex-wrap: wrap;
    height: auto;
    padding-bottom: 20px;
  }
  .wrapper-alert-bell {
    margin: 0 15px 0 0px;
    order: 4;
  }

  .ballon-alert-bell {
    top: -20px;
  }

  .header a.logo {
    min-width: 100%;
    order: 1;
    height: 86px;
    margin-bottom: 8px;
  }

  .header .profile-container {
    order: 3;
    flex-grow: 1;
    justify-content: center;
  }

  .menu-btn-responsive {
    order: 2;
    margin-right: 0;
  }

  #input-menu-btn-responsive:checked ~ .header-links-container {
    top: 0;
  }

  .container-info-alert {
    top: 30px;
  }
}

@media screen and (max-width: 1600px) {
  .header .header-links-container a {
    margin: 0 12px;
    font-size: 16px;
  }
}

:root {
    --primary-color: #00377A;
    --primary-color-rgb: 74, 82, 88;

    --secondary-color: #ff9100;
    --secondary-color-rgb: 255, 145, 0;

    --tertiary-color: #50555a;
    --tertiary-color-rgb: 80, 85, 90;

    --primary-font-color: #50555a;
    --secondary-font-color: #ffffff;
    --tertiary-font-color: #9BA5AE;

    --content-background: #f8fbfc;

    --alternative-background: #ffffff;
    --alternative-background-rgb: 255, 255, 255;

    --hover-color: #D97B00;

    --shadow-color: rgba(250, 169, 50, 0.4);

    --light-color: #eaeef0;

    --status-yellow: #FCCE0F;
    --status-green: #00BF85;
    --status-red: #EA124C;
    --status-orange: #FF9100;
    --status-blue: #269CF4;
}

body {
    background: var(--content-background);
    overflow-y: scroll;
}

body .loading-container {
    position: fixed;
}

html {
    min-height: 100vh;
}

::-webkit-scrollbar {
    width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--light-color);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--hover-color);
}

.middle-page {
    display: grid;
    grid-gap: .5%;
    grid-template-columns: 12% repeat(12, 6%) 12%;
    width: 100%;
    background: var(--content-background);
}

.middle-page {
    min-height: 100vh;
}

.sidenav {
    height: 110%;
}

body .header-wrapper .header .profile-container .profile-pic {
    /*display: none;*/
}

@media screen and (max-width: 415px) {
    .middle-page {
        grid-template-columns: 8.5% repeat(4, 20%) 8.5%;
    }
}

.footer-container {
    margin-top: 54px;
}

.carousel-container {
    display: grid;
    grid-template-columns: 5% 90% 5%;
    align-items: center;
}

/* ---------------------------------------ESTILO DAS ARROWS--------------------------------------- */

.carousel-container .glide__arrows {
    display: flex;
    justify-content: center;
}

.carousel-container .glide__arrows .glide__arrow {
    height: 32px;
    width: 20px;
    border: none;
    background-color: unset;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
}

.carousel-container .glide__arrows .glide__arrow:focus {
    outline: none;
}

.carousel-container .glide__arrows .glide__arrow:active {
    transform: scale(.9);
    transition: transform .1s;
}

/* --------------------------------------------------------------------------------------------- */

.carousel-container .glide__track {
    grid-column: 2;
}

.carousel-container .glide__slides {}

.carousel-container .glide__slides .glide__slide {}

.carousel-container .glide__slides .glide__slide .carousel-card {
    margin: 4px 0;
    border-radius: 4px;
    background-color: var(--alternative-background);
    box-shadow: 0 2px 4px rgba(var(--tertiary-color-rgb), .2);
    cursor: pointer;
}

.carousel-container .glide__slides .glide__slide .carousel-card .carousel-card-header {
    display: grid;
    height: 32px;
    min-width: 100%;
    justify-content: end;
    grid-auto-flow: column;
}

.carousel-container .glide__slides .glide__slide .carousel-card .carousel-card-header .control-button {
    display: block;
    width: 20px;
    margin: 0 8px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.carousel-container .glide__slides .glide__slide .carousel-card .carousel-card-content {
    display: flex;
    grid-template-columns: 100%;
    justify-content: center;
    align-items: center;
    min-height: 120px;
}

.carousel-container .glide__slides .glide__slide .carousel-card .carousel-card-img {
    max-width: 45%;
}

.carousel-container .glide__slides .glide__slide .carousel-card .carousel-card-footer {
    margin: 0;
    padding: 16px 0;
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
    font-family: Roboto;
    color: var(--secondary-color);
    border-top: solid 1px var(--secondary-color);
}

/* ---------------------------------------ESTILO DOS BULLETS--------------------------------------- */

.carousel-container .glide__bullets {
    display: flex;
    justify-content: center;
    grid-column: 2;
}

.carousel-container .glide__bullet {
    width: 8px;
    height: 8px;
    padding: 0;
    margin-left: 8px;
    border-radius: 50%;
    border: none;
    background-color: var(--secondary-color);
    opacity: .5;
    cursor: pointer;
}

.carousel-container .glide__bullet:first-child {
    margin-left: 0;
}

.carousel-container .glide__bullet.glide__bullet--active {
    opacity: 1;
}
/* -----------------------------------------TOGGLE SWITCH----------------------------------------- */

.switch-container {
    display: grid;
    grid-template-columns: 20% 80%;
    grid-auto-flow: column;
    align-items: center;
    min-width: 200px;
}

.switch-container .switch-label {
    margin: 0;
    font-size: 18px;
    font-family: Roboto;
    color: var(--primary-font-color);
    justify-self: start;
}


.switch-container .toggle-switch {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 12px;
    overflow: visible;
    justify-self: center;
    cursor: pointer;
}

/* SUMIR COM CHECKBOX ORIGINAL */
.switch-container .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-container .toggle-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--tertiary-font-color);
    transition: .4s;
    border-radius: 34px;
}

.switch-container .toggle-switch .slider::before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: -4px;
    bottom: -2px;
    background-color: var(--primary-font-color);
    transition: .4s;
    border-radius: 50%;
}

.switch-container .toggle-switch input:checked+.slider {
    background-color: rgba(var(--secondary-color-rgb), .5);
}


.switch-container .toggle-switch input:checked+.slider::before {
    transform: translateX(16px);
    background-color: var(--secondary-color);
}
.controls-container {
    display: grid;
    grid-auto-flow: column;
    justify-content: end;
}

.controls-container .control-button {
    display: grid;
    grid-template-columns: 25% 75%;
    grid-auto-flow: column;
    align-items: center;
    min-width: 130px;
    cursor: pointer;
}

.controls-container .control-button:active {
    transform: translateY(1px) scale(.99);
    transition: transform .2s;
}

.controls-container .control-button img {
    width: 24px;
}

.controls-container .control-button p {
    margin: 0;
    font-size: 18px;
    font-family: Roboto;
    color: var(--primary-font-color);
}

.controls-container .switch-container {
    margin: 0;
}

.account-info-container .account-info-header-container {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 15% 25% 25% 15% 10% 10%;
    margin-top: 28px;
}

.account-info-container .account-info-header-container .account-info-header {
    margin: 0;
    padding-bottom: 8px;
    font-size: 18px;
    font-family: Roboto;
    color: var(--primary-font-color);
    border-bottom: solid 2px var(--light-color);
}

.account-info-container .account-info-values-container {
    display: grid;
    grid-auto-flow: column;
    margin-top: 12px;
    grid-template-columns: 15% 25% 25% 15% 10% 10%;
}

.account-info-container .account-info-values-container p {
    margin: 0;
    font-size: 16px;
    font-family: Roboto;
    color: var(--primary-font-color);
}
.user-feedback-container {
    display: grid;
    grid-auto-flow: column;
}

.user-feedback-container img {
    justify-self: center;
    align-self: center;
    width: 300px;
}

.user-feedback-container .text-container {
    display: grid;
    align-self: center;
    grid-template-rows: 40px 40px 140px;
}

.user-feedback-container .text-container .title {
    margin: 0;
    font-weight: 700;
    font-family: Roboto;
    color: var(--primary-font-color)
}

.user-feedback-container .text-container .description {
    margin: 0;
    font-weight: 400;
    align-self: center;
    font-family: Roboto;
    color: var(--primary-font-color)
}

.user-feedback-container .text-container .action-button {
    outline: none;
    border: none;
    align-self: center;
    width: 200px;
    height: 48px;
    font-size: 16px;
    border-radius: 4px;
    font-weight: 700;
    font-family: Roboto;
    color: var(--secondary-font-color);
    background: var(--secondary-color);
    box-shadow: 0 3px 6px rgba(var(--secondary-color-rgb), .6);
    cursor: pointer;
}

.user-feedback-container .text-container .action-button:hover {
    filter: contrast(95%);
}

.user-feedback-container .text-container .action-button:active {
    transform: translateY(1px);
}
.footer-container {
	width: 100%;
	background: var(--primary-color);
	padding: 0 20px;
}

.centraliza-footer-container {
	position: relative;
	display: flex;
	font-family: Roboto;
	align-items: center;
	max-width: 1300px;
	min-height: 100px;
	margin: 0 auto;
}

.footer-container .copyright {
	justify-self: center;
	font-size: 14px;
	color: var(--tertiary-font-color);

}

.footer-container .footer-links-container {
	display: grid;
	grid-auto-flow: column;
	justify-self: center;
	margin-left: auto;
}

.footer-container .footer-links-container a {
	margin-left: 22px;
	padding-right: 22px;
	font-size: 14px;
	font-weight: 400;
	text-align: center;
	font-family: Roboto;
	color: var(--tertiary-font-color);
	border-right: solid 1px var(--tertiary-font-color);
	cursor: pointer;
}

.footer-container .footer-links-container a:hover {
	opacity: .9;
}

.footer-container .footer-links-container a:last-child {
	border: none;
}

@media (max-width: 1024px) {
	.centraliza-footer-container{
		flex-wrap: wrap;
	}

	.copyright{
		width: 100%;
		order: 2;
		text-align: center;
	}

	.footer-container .footer-links-container{
		width: 100%;
		order: 1;
	}
}

@media (max-width: 680px) {
	.footer-container .footer-links-container {
		display: none;
	}
}
/* -----------------------------------------CUSTOM RADIO----------------------------------------- */

.radio-container .label-container {
    position: relative;
    display: block;
    padding-left: 35px;
    font-size: 18px;
    color: var(--primary-font-color);
    cursor: pointer;
    user-select: none;
}

/* SUMIR COM O RADIO ORIGINAL */
.radio-container .label-container input {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
    cursor: pointer;
}

/* CUSTOM RADIO */
.radio-container .label-container .radio-custom-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid var(--secondary-color);
    background-color: transparent;
}

/* CUSTOM RADIO QUANDO MARCADO */
.radio-container .label-container input:checked~.radio-custom-checkmark {
    background-color: var(--secondary-color);
}

/* CHECK DO CUSTOM RADIO */
.radio-container .label-container .radio-custom-checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 3px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);

}

/* CHECK DO CUSTOM RADIO QUANDO MARCADO*/
.radio-container .label-container input:checked~.radio-custom-checkmark::after {
    display: block;
}
/* -----------------------------------------TOGGLE SWITCH----------------------------------------- */

.switch-container {
    display: grid;
    grid-template-columns: 20% 80%;
    grid-auto-flow: column;
    align-items: center;
    min-width: 200px;
}

.switch-container .switch-label {
    margin: 0;
    font-size: 18px;
    font-family: Roboto;
    color: var(--primary-font-color);
    justify-self: start;
}


.switch-container .toggle-switch {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 12px;
    overflow: visible;
    justify-self: center;
    cursor: pointer;
}

/* SUMIR COM CHECKBOX ORIGINAL */
.switch-container .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-container .toggle-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--tertiary-font-color);
    transition: .4s;
    border-radius: 34px;
}

.switch-container .toggle-switch .slider::before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: -4px;
    bottom: -2px;
    background-color: var(--primary-font-color);
    transition: .4s;
    border-radius: 50%;
}

.switch-container .toggle-switch input:checked+.slider {
    background-color: rgba(var(--secondary-color-rgb), .5);
}


.switch-container .toggle-switch input:checked+.slider::before {
    transform: translateX(16px);
    background-color: var(--secondary-color);
}
.form-fieldset {
    display: grid;
    margin-top: 36px;
    font-family: Roboto;
}

.form-fieldset .submit-btn {
    width: 152px;
    height: 48px;
    margin-top: 24px;
    border-radius: 24px;
    background: #ffffff;
    border: solid 1px var(--secondary-color);
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    cursor: pointer;
    justify-self: end;
}

.form-fieldset .submit-btn:focus {
    outline: none;
}

.form-fieldset .submit-btn:active {
    transform: translateY(1px) scale(.99);
    transition: transform .2s;
}

.form-fieldset .submit-btn-alt {
    width: 250px;
    height: 48px;
    float: right;
    margin-top: -15px;
    border-radius: 5px;
    background: var(--secondary-color);
    border: solid 1px var(--secondary-color);
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    justify-self: end;
}

.form-fieldset .submit-btn-alt:focus {
    outline: none;
}

.form-fieldset .submit-btn-alt:disabled {
    background: var(--tertiary-font-color);
    border: solid 1px var(--tertiary-font-color);

    cursor: not-allowed;

    color: var(--primary-font-color);
}

.form-fieldset .submit-btn-alt:active {
    transform: translateY(1px) scale(.99);
    transition: transform .2s;
}

.form-fieldset .radio-container {
    display: grid;
    width: 50%;
    grid-template-columns: 50% 50%;
    justify-self: end;
}

.form-fieldset .radio-container-alt {
    width: 95%;
    padding-left: 21px;
}

/* -----------------------------------------INPUT FIELDS----------------------------------------- */
.form-fieldset .inputs-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.form-fieldset .inputs-container .input-set {
    display: grid;
    padding: 12px 0 0 0;
    margin-left: 21px;
}

.form-fieldset .inputs-container .input-set .form-input-label {
    margin-bottom: 8px;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-font-color);
}

.form-fieldset .inputs-container .input-set .account-form-input {
    height: 40px;
    width: 100%;
    padding: 0 0 0 12px;
    border-radius: 4px;
    background-color: #ffffff;
    border: 1px solid var(--secondary-color);
    box-shadow: 0 3px 6px rgba(var(--secondary-color-rgb), .1);
    color: var(--primary-font-color);
    font-family: Roboto;
    font-size: 16px;
}

.form-fieldset .inputs-container .input-set .account-form-input:focus {
    outline: none;
}


.form-fieldset .inputs-container .input-set .account-form-input.input-readonly {
    color: var(--tertiary-font-color)
}

/* -----------------------------------------TOGGLE----------------------------------------- */
.switch-container {
    width: 30%;
    justify-self: end;
    margin-top: 28px;
}

.form-convert {
    /*TODO: atrapalha um pouco o cálculo de %*/
    margin: 15px 0px 0 18px;
}

.form-input-without-label {
    margin-top: 27px;
}

.form-long-text, .form-container-check {
    /*padding: 25px 0 0 25px;*/
}

.form-long-text-title {
    font-weight: bolder;
}

.form-checkbox {
    /*position: absolute;*/
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid var(--secondary-color);
    background-color: transparent;
}

.form-line-separator {
    display: block;
    border-top: 1px solid lightgray;
    grid-column: 1 / span 2;
    margin: 24px 0% 24px 0%;
}


.containerBr{
    width: 100%;

}

.erroContainer{
    width: 100%;
    display: none;
    margin: 2rem 1.5rem;
}

.erroContainer div{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F9DDDE;
    border: 1px solid #FF3535;
    box-sizing: border-box;
    border-radius: 4px;
    padding: 10px;
    gap: 10px;
    color: #992020;
    font-size: 12px;
}
.we-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    animation: fadeIn .3s ease-in-out;
    z-index: 9;
}

.we-modal-backdrop .we-modal-view {
    width: 400px;
    background: #FFFFFF;
    position: absolute;
    top: 50%;
    left: 50%;
    animation: slideUp .5s;
    transform: translate(-50%, -50%);
    padding: 52px 32px;
}

.we-modal-backdrop .we-modal-view .we-modal-title-container .we-modal-title {
    font-family: Roboto, sans-serif;
    color: var(--primary-font-color);
    margin: 0;
}

.we-modal-backdrop .we-modal-view .we-modal-text {
    font-family: Roboto, sans-serif;
    color: var(--primary-font-color);
    font-size: 1.1rem;
}

.we-modal-backdrop .we-modal-view .we-modal-btns-container {
    display: flex;
    justify-content: flex-end;
    border-top: solid 1px #EEEEEE;
    padding-top: 16px;
}

.we-modal-backdrop .we-modal-view .we-modal-btns-container button {
    height: 42px;
    width: 92px;
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
}

.we-modal-backdrop .we-modal-view .we-modal-accept-button {
    border: none;
    border-radius: 4px;
    color: var(--secondary-font-color);
    background: var(--secondary-color);
    margin-left: 12px;
}

.we-modal-backdrop .we-modal-view .we-modal-cancel-button {
    border-radius: 4px;
    color: var(--secondary-color);
    background: #FFFFFF;
    border: solid 1px var(--secondary-color);
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}
.searchbar-container {
    display: grid;
    grid-template-columns: 80% 20%;
}

.searchbar-container .search-input {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 4px 0 0 4px;
    background-color: #ffffff;
    padding: 0 20px;
    font-size: 16px;
    color: var(--primary-font-color);
    box-shadow: 0 2px 4px rgba(var(--primary-color-rgb), .4);
    transition: box-shadow .5s;
}

.searchbar-container .search-input:focus {
    outline: none;
    box-shadow: 0 2px 4px rgba(var(--secondary-color-rgb), .7);
}

.searchbar-container .search-btn {
    height: 48px;
    border-radius: 0 4px 4px 0;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bolder;
    font-family: Roboto;
    color: var(--secondary-font-color);
    background-color: var(--secondary-color);
    box-shadow: 0 3px 6px rgba(var(--secondary-color-rgb), .4);
}
.searchbar-container .search-btn:active {
    transform: translateY(1px);
    filter: saturate(150%);
}
.engagement-select-container select {
    height: 42px;
    width: 100%;
    padding: 0 0 0 12px;
    border-radius: 4px;
    background-color: #ffffff;
    border: 1px solid var(--secondary-color);
    box-shadow: 0 3px 6px rgba(var(--secondary-color-rgb), .1);
    color: var(--primary-font-color);
    font-family: Roboto;
    font-size: 16px;
}

.engagement-select-container select:focus {
    outline: none;
}
body {
    font-family: Roboto;
}

.sidenav {
    background-color: var(--alternative-background);
    padding-top: 40px;
    box-shadow: -15px -25px 25px 0px var(--primary-color);
    grid-column-start: 1;
    grid-column-end: 3;
}

.sidenav p {
    font-weight: bolder;
    margin-left: 70px;
    color: var(--tertiary-color);
    font-size: 21px;
    text-transform: uppercase;
}

.sidenav a {
    cursor: pointer;
    padding: 18px 6px 18px 70px;
    text-decoration: none;
    display: block;
    height: 24px;
    color: var(--tertiary-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.sidenav a.active-sidemenu {
    color: var(--secondary-color);
    font-weight: bolder;
    border-right: inset;
    border-color: var(--secondary-color);
}

.sidenav a:hover {
    font-weight: bolder;
    border-right: inset;
    border-color: var(--secondary-color);
}

.main {
    margin-left: 200px;
    /* Same as the width of the sidenav */
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

@media screen and (max-width: 1440px) {
    .sidenav p {
        margin-left: 30px;
    }

    .sidenav a {
        padding: 18px 6px 18px 30px;
    }
}
::-webkit-scrollbar {
  width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--light-color);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--hover-color);
}

.terms-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 25%);
  grid-template-rows: 50px auto 50px;
  grid-auto-flow: row;
  row-gap: 22px;
  font-family: "Roboto", sans-serif;
}

.terms-wrapper .terms-segment-container {
  display: grid;
  grid-column: 4;
  grid-template-columns: repeat(2, 50%);
}

.terms-wrapper .terms-segment-container .terms-menu {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: var(--primary-font-color);
  border-bottom: 3px solid var(--light-color);
  cursor: pointer;
}

.terms-wrapper .terms-segment-container .terms-menu.terms-menu-selected {
  border-color: var(--secondary-color);
  font-weight: 700;
}

.terms-wrapper .terms-content-container {
  overflow: auto;
  max-height: 540px;
  grid-column: 1 / span 4;
}

.terms-wrapper .terms-content-container .terms-content-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--secondary-color);
}

.terms-wrapper .terms-content-container .terms-content-description {
  font-size: 16px;
  font-weight: 300;
  line-height: 27px;
  padding-right: 100px;
  color: var(--primary-font-color);
}

.terms-wrapper .terms-action-btns-container {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  grid-column: 4;
  grid-auto-flow: column;
}

.terms-wrapper .terms-action-btns-container .terms-accepbutton,
.terms-wrapper .terms-action-btns-container .terms-cancelbutton {
  cursor: pointer;
  font-size: 18px;
  outline: none;
  width: 95%;
  justify-self: end;
}

.terms-wrapper .terms-action-btns-container .terms-cancelbutton {
  font-weight: 700;
  border-radius: 4px;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
    background-color: #FFFFFF;
}

.terms-wrapper .terms-action-btns-container .terms-cancelbutton:hover {
  border: 1px solid var(--hover-color);
  color: var(--hover-color);
}

.terms-wrapper .terms-action-btns-container .terms-accepbutton {
  border: none;
  font-weight: 700;
  border-radius: 4px;
  color: var(--content-background);
  background-color: var(--secondary-color);
}

.terms-wrapper .terms-action-btns-container .terms-accepbutton:hover {
  background-color: var(--hover-color);
}

@media screen and (max-width: 1800px) {
  .terms-wrapper .terms-segment-container {
      grid-column: 3 / span 2;
  }

  .terms-wrapper .terms-action-btns-container {
    grid-column: 3 / span 2;
  }
}
