* {
  margin: 0;
  padding: 0;
  outline: 0;
  text-decoration: none;
  color: inherit;
  list-style: none;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button {
  background-color: transparent;
  border: 0;
  font-size: inherit;
}

body {
  color: #333;
}

.container {
  width: 1024px;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
  .container {
    width: 100%;
    padding: 0 30px;
  }
}
.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-1 {
  flex: 1;
}

.flex-2 {
  flex: 2;
}

.flex-3 {
  flex: 3;
}

.space-between {
  justify-content: space-between;
}

.aligm-end {
  align-items: flex-end;
}

.justify-end {
  justify-content: flex-end;
}

.align-items-center {
  align-items: center;
}

.ml-1 {
  margin-left: 5px;
}

.ml-2 {
  margin-left: 10px;
}

.ml-3 {
  margin-left: 15px;
}

.mr-1 {
  margin-right: 5px;
}

.mr-2 {
  margin-right: 10px;
}

.mr-3 {
  margin-right: 15px;
}

.mr-6 {
  margin-right: 30px;
}

.mr-12 {
  margin-right: 60px;
}

.mt-2 {
  margin-top: 10px;
}

.mt-3 {
  margin-top: 15px;
}

.mt-4 {
  margin-top: 20px;
}

.mb-1 {
  margin-bottom: 5px;
}

.mb-2 {
  margin-bottom: 10px;
}

.mb-3 {
  margin-bottom: 15px;
}

.mb-4 {
  margin-bottom: 20px;
}

.mb-5 {
  margin-bottom: 25px;
}

.mb-6 {
  margin-bottom: 30px;
}

.mb-8 {
  margin-bottom: 40px;
}

h2 {
  font-size: 42px;
}

.font-size-xs {
  font-size: 12px;
}

.font-bold {
  font-weight: 700;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.float-right {
  float: right;
}

.pointer {
  cursor: pointer;
}

.text-center {
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .hide-xs {
    display: none;
  }
}
.breadcrumb {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
.breadcrumb h2 {
  font-size: 42px;
}
.breadcrumb .breadcrump-history {
  font-size: 18px;
}

.overlay {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.modal {
  background-color: #fff;
  padding: 30px;
  min-width: 500px;
  max-width: 90vw;
  max-height: 80vh;
  position: relative;
  border-radius: 5px;
  overflow: auto;
}
.modal h2 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
  padding: 0 32px;
}

.bottom-modal {
  max-width: none;
  align-self: flex-end;
  background-color: #fff;
  border-radius: 25px 25px 0 0;
  padding: 30px 30px 60px 30px;
  width: 100%;
}
.bottom-modal h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 30px;
}
.bottom-modal .close-modal {
  right: 30px;
  top: 30px;
}

.close-modal {
  font-size: 28px;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  line-height: 100%;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #fff;
}

@media only screen and (max-width: 768px) {
  .modal {
    min-width: 0;
  }
  .modal .container {
    padding: 0;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.form-group:not(:last-of-type) {
  margin-bottom: 20px;
}
.form-group.has-error input, .form-group.has-error textarea, .form-group.has-error select, .form-group.has-error textarea {
  background-color: #e7bfc2;
  border: 1px solid #e7605e;
}
.form-group.has-error label {
  color: #e7605e;
}
.form-group.has-error .error-message {
  color: #e7605e;
  font-size: 12px;
  margin-top: 3px;
}

.form-style label {
  font-size: 16px;
  margin-bottom: 5px;
}
.form-style input, .form-style textarea, .form-style select {
  background-color: #ddd;
  font-size: 16px;
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
}
.form-style input[disabled], .form-style textarea[disabled], .form-style select[disabled] {
  color: #666;
  opacity: 0.8;
  cursor: not-allowed;
}
.form-style textarea {
  min-height: 150px;
  resize: none;
}

.course-filters {
  display: flex;
  justify-content: center;
}
.course-filters .course-filter-item:not(:last-of-type) {
  margin-right: 10px;
}
.course-filters .course-filter-button {
  background-color: #ddd;
  padding: 5px 15px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.course-filters .course-filter-button .icon {
  margin-right: 10px;
  height: 14px;
}
.course-filters .course-filter-button .icon:before {
  margin: 0;
}
.course-filters .course-filter-button:hover {
  background-color: #d0d0d0;
}
.course-filters .course-filter-button.active {
  background-color: #4054B2;
  color: #fff;
}
.course-filters .course-filter-button.active:hover {
  background-color: #394b9f;
}

.course-list {
  margin-top: 60px;
  display: grid;
  grid-gap: 34px;
  grid-template-columns: 1fr 1fr 1fr;
}

.course-card {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  max-width: 320px;
  display: flex;
  flex-direction: column;
}

.course-card-image {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.course-card-image img {
  display: block;
}
.course-card-image .course-card-image-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  padding: 5px 10px;
  border-radius: 5px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  background-color: #fff;
}
.course-card-image .course-card-image-tag .icon {
  color: #F27F3C;
  margin-right: 5px;
  height: 10px;
}
.course-card-image .course-card-image-tag .icon:before {
  margin: 0;
}

.course-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.course-card-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.course-card-short-description {
  font-size: 14px;
  line-height: 170%;
  text-align: center;
  margin-bottom: 20px;
  flex: 1;
}

.course-card-price {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}
.course-card-price small {
  font-size: 14px;
  font-weight: 500;
}

.course-card-promotion {
  font-size: 14px;
  text-decoration: line-through;
  opacity: 0.6;
}

.course-search {
  background-color: #eee;
  display: flex;
  align-items: center;
  height: 30px;
  border-radius: 5px;
  width: 350px;
}
.course-search .icon-search {
  color: #666;
  margin-left: 15px;
  margin-right: 10px;
}
.course-search input {
  background-color: transparent;
  border: 0;
  height: 100%;
  font-size: 16px;
  flex: 1;
}

#courseDetailModal .modal {
  width: 900px;
}

.course-detail-modal-body {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.course-detail-modal-left {
  flex: 2;
  margin-right: 40px;
}
.course-detail-modal-left h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.course-detail-modal-left p {
  font-size: 14px;
  line-height: 170%;
  margin-bottom: 20px;
}

.course-detail-modal-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 320px;
}
.course-detail-modal-right .course-card-image {
  margin-bottom: 10px;
}

.course-detail-modal-short-description {
  font-size: 14px;
  line-height: 170%;
  text-align: right;
  margin-bottom: 15px;
}

@media only screen and (max-width: 768px) {
  .course-filters {
    flex-wrap: wrap;
  }
  .course-filters .course-filter-item {
    margin: 0 5px 10px 5px;
  }

  .course-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .course-list .course-card:not(:last-of-type) {
    margin-bottom: 32px;
  }

  .course-filter-wrapper {
    display: flex;
    flex-direction: column;
  }
  .course-filter-wrapper .course-search {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .course-detail-modal-body {
    flex-direction: column;
  }
  .course-detail-modal-body .course-detail-modal-left {
    margin: 0;
    margin-bottom: 25px;
  }
  .course-detail-modal-body .course-detail-modal-right {
    max-width: 100%;
  }
  .course-detail-modal-body .no-image {
    width: auto !important;
    max-width: 100%;
  }
}
.course-detail-modal-list-class-rooms li {
  padding: 5px;
  border-radius: 5px;
}
.course-detail-modal-list-class-rooms li:nth-of-type(odd) {
  background-color: #ececec;
}

.no-image {
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}
.no-image svg {
  width: 50%;
  max-width: 50%;
  max-height: 50%;
}
.no-image svg path, .no-image svg circle, .no-image svg polygon, .no-image svg rect {
  fill: #CCCCCC;
}

.alert-wrapper {
  position: fixed;
  top: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  left: 0;
  right: 0;
}

.alert {
  max-width: 80vw;
  width: 500px;
  background-color: #eee;
  color: #333;
  padding: 5px 15px;
  font-size: 14px;
  line-height: 120%;
  border-radius: 10px;
  text-align: center;
}

.alert-success {
  background-color: #2ab140;
  color: #fff;
}

.alert-warning {
  background-color: #f6993f;
  color: #fff;
}

.alert-danger {
  background-color: #ff3b36;
  color: #fff;
}

@-webkit-keyframes live {
  from {
    background-color: #ff3b36;
  }
  to {
    background-color: #ff6d69;
  }
}

@keyframes live {
  from {
    background-color: #ff3b36;
  }
  to {
    background-color: #ff6d69;
  }
}
.live-alert-wrapper {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  width: 250px;
  z-index: 999;
}
.live-alert-wrapper .live-alert {
  display: flex;
  background-color: #ff3b36;
  border-radius: 5px;
  margin-top: 10px;
  padding: 10px;
  color: #fff;
  font-size: 14px;
  line-height: 170%;
  cursor: pointer;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: "live";
          animation-name: "live";
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}
.live-alert-wrapper .live-alert .icon-live {
  margin-right: 10px;
}

@-webkit-keyframes loading {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes loading {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes loading-icon {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loading-icon {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#loading {
  background-color: rgba(32, 32, 32, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999999;
  display: flex;
  align-items: center;
  justify-content: center;
}
#loading .loading-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 4px solid #fff;
  border-bottom-color: rgba(34, 34, 34, 0);
  -webkit-animation: loading 1s linear infinite;
          animation: loading 1s linear infinite;
}

.loading-in-element {
  position: relative;
}
.loading-in-element.loading:before {
  content: "";
  z-index: 9;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.loading-in-element.loading:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 99;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 4px solid #328af1;
  border-bottom-color: rgba(34, 34, 34, 0);
  -webkit-animation: loading 1s linear infinite;
          animation: loading 1s linear infinite;
}

.loading-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #fff;
  border-bottom-color: transparent;
  -webkit-animation: loading-icon 1s linear infinite;
          animation: loading-icon 1s linear infinite;
}
.loading-icon.blue {
  border-color: #328af1;
  border-bottom-color: transparent;
}

.btn {
  min-width: 150px;
  color: #fff;
  padding: 10px 30px;
  font-size: 16px;
  cursor: pointer;
  background-color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}
.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.8;
}
.btn:not([disabled]):hover {
  background-color: #737373;
}
.btn.btn-rounded {
  border-radius: 25px;
}
.btn.btn-rounded-sm {
  border-radius: 5px;
}
.btn.btn-orange {
  background-color: #F27F3C;
}
.btn.btn-orange:not([disabled]):hover {
  background-color: #f48f54;
}
.btn.btn-blue {
  background-color: #4054B2;
}
.btn.btn-blue:not([disabled]):hover {
  background-color: #4d61bf;
}
.btn.btn-google {
  background-color: #f44336;
  color: #fff;
}
.btn.btn-google:not([disabled]):hover {
  background-color: #f55a4e;
}
.btn.btn-ghost {
  background-color: transparent;
  color: #333;
}
.btn.btn-ghost:not([disabled]):hover {
  background-color: #f3f3f3;
}
.btn.btn-ghost.btn-red {
  color: #ff3b36;
}

.btn-subtitle {
  font-size: 12px;
  font-weight: 300;
  margin-top: 5px;
}

header {
  background-color: #263476;
  color: #fff;
  padding: 10px 0;
  min-height: 70px;
  display: flex;
  align-items: center;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header #logo h1 {
  font-size: 28px;
}
header #menu ul {
  display: flex;
  align-items: center;
}
header #menu ul li {
  font-size: 16px;
  font-weight: 400;
}
header #menu ul li:not(:first-child) {
  margin-left: 30px;
}
header #menu ul li button {
  cursor: pointer;
}
header .account-link {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .account-link img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 10px;
  border: 2px solid #fff;
}

.menu-toggler {
  display: none;
  padding: 15px;
}

@media only screen and (max-width: 768px) {
  .menu-toggler {
    display: block;
  }

  header {
    min-height: 50px;
    height: 50px;
  }
  header .container {
    padding-right: 5px;
  }
  header #menu.opened ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  header #menu.opened .menu-toggler {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 99999;
  }
  header #menu ul {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.2s;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 9999;
    background-color: #263476;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header #menu ul li, header #menu ul li:not(:first-child) {
    margin: 0;
    padding: 10px 15px;
    font-size: 28px;
  }
  header #menu ul li:last-child, header #menu ul li:not(:first-child):last-child {
    position: fixed;
    bottom: 25px;
  }
  header #logo h1 {
    font-size: 18px;
  }
}
#banner {
  height: 600px;
  color: #fff;
  background: url("/images/banner-student.png") no-repeat bottom center, url("/images/banner-forms.png") no-repeat bottom right, radial-gradient(89.31% 170.08% at 86.87% 0%, rgba(64, 84, 178, 0) 0%, #4054B2 0.01%, #263476 100%);
}
#banner .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#banner .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#banner .content .banner-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
}
#banner .content .banner-subtitle {
  font-size: 22px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  #banner {
    height: calc(100vh - 189px);
    background: url("/images/banner-student.png") no-repeat bottom right -200px, radial-gradient(89.31% 170.08% at 86.87% 0%, rgba(64, 84, 178, 0) 0%, #4054B2 0.01%, #263476 100%);
  }
}
#uninaSection {
  background: linear-gradient(3.06deg, #F27F3C 31.9%, #C7662E 212.09%);
  padding: 24px 0;
  color: #fff;
}
#uninaSection p {
  font-size: 18px;
  font-weight: 500;
}
#uninaSection p small {
  font-size: 14px;
  font-weight: normal;
}
#uninaSection .btn svg {
  margin-bottom: -4px;
}

@media only screen and (max-width: 768px) {
  #uninaSection {
    padding: 15px;
  }
  #uninaSection .container .flex {
    flex-direction: column;
  }
  #uninaSection .container .flex button {
    margin-top: 15px;
  }
}
#howItWorks article {
  padding: 90px 0;
}
#howItWorks article .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: right;
}
#howItWorks article .title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 22px;
}
#howItWorks article .content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#howItWorks article .content p {
  max-width: 388px;
  line-height: 170%;
  font-size: 18px;
  color: #7b7b7b;
}
#howItWorks .assista-online {
  padding-top: 180px;
  background: url("/images/assista-online-bg.svg") no-repeat top -170px right;
}
#howItWorks .aulas-gravadas {
  padding-top: 180px;
  background: url("/images/aulas-gravadas-bg.svg") no-repeat top 80px left;
}
#howItWorks .aulas-gravadas .container {
  flex-direction: row-reverse;
  text-align: left;
}
#howItWorks .aulas-gravadas .content {
  flex-direction: column;
  align-items: flex-start;
}
#howItWorks .aulas-presenciais {
  padding-bottom: 180px;
}

@media only screen and (max-width: 768px) {
  #howItWorks article {
    padding: 0 !important;
    padding-top: 90px !important;
  }
  #howItWorks article .container, #howItWorks article.aulas-gravadas .container {
    flex-direction: column-reverse;
  }
  #howItWorks article .container svg, #howItWorks article.aulas-gravadas .container svg {
    max-width: 100%;
  }
  #howItWorks article .container p, #howItWorks article .container .title, #howItWorks article.aulas-gravadas .container p, #howItWorks article.aulas-gravadas .container .title {
    width: 100%;
    text-align: center !important;
  }
}
#home-courses .title {
  text-align: center;
  margin-bottom: 22px;
}
#home-courses .view-all {
  margin-top: 20px;
  width: 100%;
  text-align: center;
  display: block;
  font-size: 18px;
}

#aboutPage .about-section .content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
#aboutPage .about-section .content p {
  font-size: 14px;
  line-height: 170%;
  margin-bottom: 20px;
}
#aboutPage .about-section .content img {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  max-width: 100%;
}
#aboutPage #howItWorks .assista-online {
  background-position: top right;
  padding-top: 340px;
}

.my-account-section:not(:last-child) {
  margin-bottom: 45px;
}
.my-account-section .my-account-section-title {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.my-account-section .my-account-section-title h3 {
  font-size: 22px;
}
.my-account-section .my-account-section-title h3 svg {
  margin-right: 10px;
}
.my-account-section .my-account-section-title h3 .icon {
  margin-right: 5px;
}
.my-account-section .my-account-section-title p {
  line-height: 140%;
  margin-top: 5px;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.schedule-list .schedule-item {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 0.2s;
  border-radius: 5px;
  padding-right: 15px;
  transform-origin: left;
  transition-delay: 0.1s;
}
.schedule-list .schedule-item:hover {
  transform: scale(1.1);
}
.schedule-list .schedule-item:first-child .schedule-item-date span:first-child {
  font-size: 22px;
  background-color: #F27F3C;
  padding: 3px 14px;
}
.schedule-list .schedule-item:first-child .schedule-item-date span:last-child {
  font-size: 14px;
  background-color: #C7662E;
  padding: 8px 6px;
}
.schedule-list .schedule-item .schedule-item-date {
  margin-right: 15px;
  display: flex;
  color: #fff;
  text-align: center;
  font-weight: 700;
  align-items: center;
}
.schedule-list .schedule-item .schedule-item-date span:first-child {
  font-size: 16px;
  background-color: #4054B2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px 0 0 5px;
  padding: 2px 8px;
}
.schedule-list .schedule-item .schedule-item-date span:last-child {
  font-size: 10px;
  background-color: #263476;
  padding: 5px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 5px 5px 0;
}

.my-account-list li {
  background-color: #eee;
  padding: 10px 20px;
  font-size: 14px;
  display: flex;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.2s;
  overflow: hidden;
}
.my-account-list li:hover {
  background-color: #ddd;
}
.my-account-list li:not(:last-child) {
  margin-bottom: 10px;
}
.my-account-list .my-account-list-item-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.my-account-list-tag {
  background-color: #F27F3C;
  color: #fff;
  padding: 2px 14px;
  border-radius: 5px;
  text-align: center;
}
.my-account-list-tag:not(:first-child) {
  margin-left: 20px;
}
.my-account-list-tag:not(:last-child) {
  margin-right: 20px;
}
.my-account-list-tag.warning {
  background-color: #FFED4A;
  color: #222;
}
.my-account-list-tag.success {
  background-color: #2ab140;
}
.my-account-list-tag.danger {
  background-color: #ff3b36;
}

@media only screen and (max-width: 768px) {
  .my-account-list .my-account-list-item-wrapper {
    flex-direction: column;
  }
  .my-account-list .my-account-list-item-wrapper > *:not(:first-child) {
    margin-top: 10px;
  }
}
.my-account-actions-section ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 25px;
}
.my-account-actions-section ul li button, .my-account-actions-section ul li a, .my-account-actions-section ul li > div {
  background-color: #eee;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #333;
  font-size: 18px;
  height: 200px;
  padding: 40px;
  transition: 0.2s;
  cursor: pointer;
  width: 100%;
}
.my-account-actions-section ul li button:hover, .my-account-actions-section ul li a:hover, .my-account-actions-section ul li > div:hover {
  background-color: #ddd;
}
.my-account-actions-section ul li button svg, .my-account-actions-section ul li a svg, .my-account-actions-section ul li > div svg {
  margin-bottom: 15px;
}
.my-account-actions-section ul li button p, .my-account-actions-section ul li a p, .my-account-actions-section ul li > div p {
  font-weight: 500;
}

@media only screen and (max-width: 768px) {
  .my-account-actions-section ul {
    display: flex;
    flex-direction: column;
  }
  .my-account-actions-section ul li:not(:last-child) {
    margin-bottom: 25px;
  }
}
.payment-methods {
  display: flex;
}

.payment-method-option {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #e2e2e2;
  color: #333;
  margin-right: 25px;
  cursor: pointer;
}
.payment-method-option:hover {
  background-color: #efefef;
}
.payment-method-option svg {
  margin-right: 10px;
}
.payment-method-option.active {
  background-color: #4054B2;
  color: #fff;
}
.payment-method-option.active:hover {
  background-color: #4d61bf;
}
.payment-method-option.active svg path, .payment-method-option.active svg circle, .payment-method-option.active svg polygon, .payment-method-option.active svg rect {
  fill: #fff;
}

footer {
  margin-top: 120px;
  color: #fff;
}
footer .footer-bottom {
  background-color: #263476;
  display: flex;
  justify-content: center;
  padding: 10px 0;
  font-size: 16px;
}
footer .footer-head {
  width: 100%;
  display: block;
}
footer .content {
  background-color: #4054B2;
  padding-bottom: 60px;
}
footer #logo {
  margin-bottom: 20px;
}
footer #logo h1 {
  font-size: 48px;
}
footer .footer-links {
  font-size: 16px;
}
footer .footer-links li {
  transition: 0.2s;
}
footer .footer-links li:not(:last-child) {
  margin-bottom: 10px;
}
footer .footer-address {
  text-align: right;
  font-size: 16px;
  line-height: 170%;
}
footer #map {
  width: 320px;
  height: 210px;
  border-radius: 5px;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  footer .footer-head {
    position: relative;
    bottom: -1px;
  }
  footer #logo h1 {
    font-size: 22px;
  }
  footer .content {
    padding: 30px 0;
  }
  footer .content .container > .flex.space-between {
    flex-direction: column;
  }
  footer .content .container > .flex.space-between > .flex.flex-column {
    margin-bottom: 25px;
  }
  footer #map {
    width: 100%;
    max-width: 320px;
  }
  footer .footer-address {
    text-align: left;
  }
}
.link-style {
  font-size: 14px;
  color: #1766DC;
}
.link-style:hover {
  text-decoration: underline;
}

.load-more {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
  cursor: pointer;
  transition: 0.2s;
}
.load-more:hover {
  color: #595959;
}

@media only screen and (max-width: 768px) {
  #contatoModal .form-style .flex {
    display: flex;
    flex-direction: column;
  }
  #contatoModal .form-style .flex > * {
    margin: 0;
  }
  #contatoModal .form-style .flex > *:first-of-type {
    margin-bottom: 25px;
  }

  .my-account-list-item-wrapper > .flex {
    flex-direction: column;
    text-align: center;
  }
  .my-account-list-item-wrapper > .flex .my-account-list-tag {
    margin: 0;
  }
  .my-account-list-item-wrapper > .flex > *:not(:first-child) {
    margin: 5px 0;
  }
}