:root {
  --orange-100: #DB6900;
  --orange-200: #EF7D00;
  --orange-300: #FFA142;
  --gray-100: #3C3C3B;
  --gray-200: #787878;
  --gray-300: #B7B7B7;
  --gray-400: #E2E2E2;
  --gray-400-50: #E2E2E280;
  --gray-500: #F5F5F5;
  --white: #FFFFFF;
  --blue-link: #337AB7;
  --red-warning: #CF3200;
  --gray-400-box-shadow: #D2D2D2;
  --orange-200-box-shadow: #D16D00;
  --oracle-clean: #F6E3D0;
  --card-box-shadow: rgba(0, 0, 0, 0.25);
  --gray-background-dark: rgba(0, 0, 0, 0.9);
}

html,
body {
  overflow: hidden;
  height: 100%;
}

body,
button,
html,
input,
select,
textarea {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  color: var(--gray-100);
  line-height: 22px;
  font-weight: 400;
}

label {
  margin: 0;
}

md-dialog {
  max-height: unset;
  max-width: unset;
}

.md-dialog-container.ng-scope {
  height: auto;
  overflow: auto;
}

.md-dialog-is-showing {
  overflow: hidden;
}

md-input-container {
  text-align: left;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  padding: 0;
}

md-input-container label {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  padding: 0 !important;
}

.card-body {
  overflow: auto;
  margin-left: 0px;
  margin-right: 0px;
}

.card-body.max-height {
  padding-bottom: 180px;
}

.footer {
  display: flex;
  justify-content: space-between;
  padding-top: 8px;
  align-items: center;
}

.footer-welcome {
  margin-left: 258px;
  margin-bottom: 8px;
  margin-right: 8px;
}

/********* scrollbar ***********/
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background: var(--gray-400);
}

::-webkit-scrollbar-thumb {
  /* Handle */
  background: var(--gray-300);
  border-radius: 10px;
}

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

/********** social *************/
.face:hover {
  content: url('/vassets/images/facebook-hover.png');
}

.insta:hover {
  content: url('/vassets/images/instagram-hover.png');
}

.mail:hover {
  content: url('/vassets/images/mail-hover.png');
}

.youtube:hover {
  content: url('/vassets/images/youtube-hover.png');
}
/********** navbar ************/

.logo {
  position: absolute;
  left: 16px;
  top: 9px;
}

.filter-icon-mob {
  right: 16px;
  position: absolute;
  top: 11px;
}

.card-column {
  position: absolute;
  top: 11px;
  right: 68px;
}

.filter-icon {
  margin-bottom: auto;
  cursor: pointer;
  border-radius: 24px;
}

.filter-icon:hover {
  background-color: var(--gray-500);
}

.toggled .filter-icon {
  background-color: var(--oracle-clean);
}

.action-bar-right {
  position: absolute;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 16px;
}

.navbar {
  height: 70px;
  border: 0;
  z-index: 1000;
  transition: height 0.5s;
  background-color: var(--white);
  width: 100%;
  position: absolute;
  display: flex;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}

.navbar-opened {
  height: 130px;
}

/********** sidebar *************/

.sidebar {
  min-width: 250px;
  max-width: 250px;
  margin-top: 70px;
  left: -250px;
  height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  position: absolute;
  z-index: 1000;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.toggled .sidebar {
  left: 0px;
  box-shadow: 0px 14px 12px 4px var(--gray-300);
}

.sidebar-close {
  right: -40px;
  margin-left: auto;
  position: absolute;
  margin-top: 8px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
  padding: 4px;
  cursor: pointer;
}

.sidebar-close img {
  height: 22px;
  width: 22px;
}

.panel {
  min-height: 40px;
  margin-bottom: 4px;
}

.sidebar-content {
  height: 100%;
}

.panel-body {
  -webkit-transition: max-height 0.5s ease-in;
  -moz-transition: max-height 0.5s ease-in;
  -o-transition: max-height 0.5s ease-in;
  transition: max-height 0.5s ease-in;
  padding: 0;
  height: auto;
  overflow: hidden;
}

.panel-body div {
  font-size: 12px;
}

.panel-active .panel-heading {
  background: var(--gray-400);
  position: sticky;
  top: 0;
  z-index: 1;
}

.panel-heading {
  background: var(--gray-500);
  padding: 10px 15px;
  border-radius: 2px;
  outline: none;
  display: flex;
  justify-content: space-between;
}

.panel-body-inner {
  padding-left: 8px;
  padding-top: 8px;
}

.drop {
  border: 1px solid var(--gray-300);
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin: 0;
  color: var(--gray-100);
}

.drop md-select-value {
  border: 0;
}

.required-label {
  color: var(--red-warning);
}

md-radio-button,
md-checkbox {
  margin-bottom: 8px;
}

.optionSelectedRemove {
  margin-left: 4px;
  width: 7px;
  height: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.option-selected-chevron {
  width: 12px;
  height: 7px;
  margin-top: auto;
  margin-bottom: auto;
}

.optionSelectedContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 8px;
  border: 1px solid var(--gray-100);
  box-sizing: border-box;
  border-radius: 50px;
  height: 20px;
}

.optionsSelected {
  color: var(--gray-100);
  white-space: nowrap;
  max-width: 65px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebarBtnSearch {
  height: 44px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  line-height: 19px;
}

/********** recaptcha ***************/

.grecaptcha-badge {
  visibility: hidden;
}

/********** componentes ***************/

.link {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  text-decoration-line: underline;
  color: var(--orange-200);
}

.button-primary {
  background: var(--orange-200);
  box-shadow: 0px 2px 0px var(--orange-200-box-shadow);
  border-radius: 2px;
  border: 0px;
  color: var(--white);
  text-transform: uppercase;
  margin: unset;
  padding: unset;
  width: 100%;
  font-weight: 500;
  font-size: 12px;
  line-height: 19px;
  justify-content: center;
  display: flex;
  align-items: center;
}

.button-secondary {
  background: var(--white);
  border: 1.5px solid var(--orange-200);
  border-radius: 2px;
  color: var(--orange-200);
  height: 35px;
  text-transform: uppercase;
  margin: unset;
  padding: unset;
  font-weight: 500;
  font-size: 12px;
  line-height: 19px;
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
}

.button-secondary.button-margin {
  padding-left: 24px;
  padding-right: 24px;
  width: unset;
}

.button-primary.button-margin {
  padding-left: 32px;
  padding-right: 32px;
  width: unset;
}

.button-secondary:hover {
  color: var(--orange-200);
}

.button-primary:disabled {
  background-color: var(--gray-400);
  box-shadow: 0px 2px 0px var(--gray-400-box-shadow);
}

.title {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: var(--gray-100);
}

.title-2 {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: var(--gray-100);
}

.subtitle {
  font-weight: 400;
  font-size: 12px;
  line-height: 19px;
  color: var(--gray-100);
}

.text {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--gray-100);
}

.description {
  font-size: 12px;
  line-height: 19px;
  font-weight: 400;
  color: var(--gray-300);
}

.description-light {
  font-size: 12px;
  line-height: 19px;
  font-weight: 300;
  color: var(--gray-100);
}

.paragraph {
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
  color: var(--orange-200);
  text-transform: uppercase;
}

.orange-200 {
  color: var(--orange-200);
}

.gray-100 {
  color: var(--gray-100);
}

.gray-200 {
  color: var(--gray-200);
}

.red-warning {
  color: var(--red-warning);
}

.blue-link {
  color: var(--blue-link);
}

.default-modal {
  background: var(--white);
  width: 624px;
  max-height: 95%;
}

.default-modal-container {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 32px;
  padding-right: 32px;
}

.default-modal-close {
  right: 24px;
  position: absolute;
  top: 32px;
  z-index: 10;
  padding: 8px;
}

.bullet {
  width: 8px;
  height: 8px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid var(--gray-300);
  margin-right: 8px;
  margin-top: 3px;
}

/**************** alert cookies ****************/

.cookies-notice-container {
  display: none;
  bottom: 16px;
  position: fixed;
  max-width: 992px;
  margin: auto;
  left: 0;
  right: 0;
  z-index: 1035;
}

.cookies-notice-div {
  background: var(--gray-background-dark);
  border-radius: 4px;
  min-height: 76px;
  padding-left: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-right: 16px;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.cookies-notice-text {
  color: var(--gray-400);
  margin-right: 24px;
}

.bt-cookies {
  width: 92px;
  height: 38px;
}

/**************** notificacaoes ***************/
@media only screen and (max-width: 435px) {
  .notifications {
    left: 16px;
  }
}

.notifications {
  display: flex;
  padding: 16px;
  max-width: 407px;
  min-width: 300px;
  background: var(--white);
  box-shadow: 0px 0px 20px var(--card-box-shadow);
  border-radius: 4px;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1034;
}

.notifications-image {
  margin-right: 24px;
  width: 118px;
  height: 118px;
  display: flex;
  align-items: center;
}

.notifications-info-container {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}

.notifications-close {
  right: 16px;
  top: 16px;
  position: absolute;
  height: 16px;
  width: 16px;
}

.notification-allow {
  background: var(--white);
  box-shadow: 0px 0px 20px 10px var(--card-box-shadow);
  border-radius: 4px;
  padding: 24px;
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1031;
}

/**************** language ****************/
.lang-bt {
  border: 0;
  background-color: transparent;
}

.lang-bt>img:hover {
  content: url('/vassets/images/ac-language-hover.png');
}

.lang-menu {
  padding: 0px;
}

.lang-menu-item {
  height: 36px;
  min-height: 36px;
}

.lang-menu-item:hover {
  background-color: var(--gray-500);
}

.lang-menu-text {
  outline: transparent;
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-100);
}

/**************** onde comprar ****************/

.where-buy-btn {
  height: 44px;
  width: unset;
  padding-left: 24px;
  padding-right: 24px;
  align-items: center;
}

.where-buy-modal > md-dialog-content > .default-modal-container {
  padding-bottom: 48px;
}

.where-buy-0800 {
  font-size: 14px;
}

.where-buy-btn:hover {
  text-decoration: none;
}

/**************** select veiculo / referencia  ****************/
.selection {
  width: 100%;
  max-width: 250px;
  min-height: 40px;
  max-height: 40px;
  background: transparent;
  border-radius: 4px;
  color: var(--gray-300);
  box-shadow: none;
  border: 2px solid var(--gray-300);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  line-height: 19px;
  outline: none;
}

.selection-active {
  background: var(--orange-300);
  color: var(--white);
  border: 2px solid var(--orange-300);
}

.search-button-arrow {
  transform: rotate(45deg);
  background-color: var(--orange-300);
  margin-top: -8px;
  width: 16px;
  height: 16px;
}

md-autocomplete-wrap+.md-whiteframe-1dp,
.md-whiteframe-z1 {
  box-shadow: unset;
  background-color: var(--white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  height: 46px;
}

md-autocomplete-wrap {
  border: 1px solid var(--gray-300);
}

md-autocomplete-wrap:focus-within {
  border: 1px solid var(--orange-200);
}

.btn-clean-reference {
  right: 68px;
  position: relative;
  width: 21px;
  height: 21px;
}

md-virtual-repeat-container.md-autocomplete-suggestions-container {
  z-index: 1033 !important;
}

.autocomplete-not-found {
  padding: 14px 15px 5px 15px;
  font-size: 15px;
  line-height: 22px;
}

/* fix autocomplete not found results in mobile */
@media only screen and (max-width: 387px) {
  md-virtual-repeat-container.md-not-found {
    min-height: 63px;
  }
}

.md-autocomplete-suggestion:hover {
  background-color: var(--gray-500);
}

.md-autocomplete-suggestion.selected {
  border: 1px solid var(--gray-300);
  color: #45547F;
}

.reference-fix-autofill {
  height: 46px;
  cursor: pointer;
  position: absolute;
  opacity: 0;
  outline: none;
  width: 100%;
}

.reference {
  background-color: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  height: 46px;
  min-height: 46px;
  flex: 1;
  outline: none;
  padding-left: 12px;
}

.reference:focus {
  border: 1px solid var(--orange-200);
}

.btn-reference {
  width: 60px;
  height: 46px;
  box-shadow: unset;
  margin-left: -60px;
}

.btn-reference:disabled {
  box-shadow: unset;
}

.btn-close-search {
  position: absolute;
  right: 24px;
  top: 98px;
  cursor: pointer;
}

.btn-close-search-xs {
  text-align: right;
  margin-top: 8px;
}

.list-vs-card {
  right: 35px;
  position: absolute;
  top: 45px;
}

.list-card {
  max-width: 16px;
  max-height: 16px;
  outline: none;
}

.list:hover {
  content: url('/vassets/images/list-hover.png');
}

.card:hover {
  content: url('/vassets/images/card-hover.png');
}

.search-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  position: sticky;
  top: 0;
}

.search-container-no-space {
  background-color: var(--white);
  transition: height 0.5s;
  height: 118px;
  padding: 8px;
  width: 420px;
}

@media(max-width:768px) {
  .search-container {
    justify-content: unset;
    margin-right: 8px;
    margin-left: 8px;
  }

  .search-container-no-space {
    height: 212px;
  }
  .search-inside-container {
    margin-bottom: 24px!important;
  }
  .news-content {
    margin-right: 8px!important;
    margin-left: 8px!important;
    padding: 16px 24px!important;
  }

  .footer {
    flex-direction: column-reverse;
    padding: 0px;
    margin: 16px;
  }

  .footer>div {
    margin: 0;
    text-align: center;
  }

  .social-media{
    text-align: center;
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .feedback-social-media {
    margin-top: 8px;
  }
}

.search-container-hide input {
  cursor: pointer;
  background-image: url(/vassets/images/search-gray.png) !important;
  background-position: calc(100% - 12px) center !important;
  background-repeat: no-repeat !important;
}

.search-container-hide .btn-reference,
.search-container-hide md-autocomplete-wrap button {
  display: none;
}

.search-animation {
  transition: margin 0.5s, opacity 0.5s;
  opacity: 1;
}

.search-container-hide .search-animation {
  margin-top: -56px;
  opacity: 0;
}

.search-container-hide {
  height: 62px;
  display: block !important;
}

.search-inside-container {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  flex-direction: column;
  max-width: 470px;
  width: 100%;
}


/**************** campo imagem ****************/

.product-image {
  width: 100%;
  height: auto;
  max-height: 50px;
}

.imageTemplateHover {
  position: fixed;
  z-index: 1055;
  left: auto;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  max-height: 500px;
}

.img-hover {
  box-shadow: 0px 4px 4px 0px var(--card-box-shadow);
}

/**************** card ****************/

.card-container {
  width: 328px;
  background: var(--white);
  box-shadow: 0px 4px 4px var(--card-box-shadow);
  margin-bottom: 32px;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.card-img {
  width: 150px;
  height: 150px;
}

.card-header {
  text-align: center;
  margin-bottom: 24px;
  margin-top: 8px;
}

.card-content {
  margin-bottom: 8px;
}

.card-show-more {
  width: 296px;
  height: 44px;
}

.card-release {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 32px;
  padding-right: 32px;
  background-color: var(--gray-100);
  color: var(--white);
  top: 16px;
  float: left;
  position: absolute;
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
  border-radius: 2px;
}

.card-more-inf-box-informations {
  background: var(--gray-500);
  border-radius: 8px;
  padding: 24px;
}

/**************** Filter Tip **************/

.filter-tip {
  width: 240px;
  background-color: #2A334D;
  position: absolute;
  margin-left: -95px;
  box-shadow: 0px 1px 4px var(--card-box-shadow);
  border-radius: 8px;
  margin-top: 8px;
  transition: all 0.5s linear;
}

.filter-tip-0 {
  opacity: 0;
}

.filter-tip-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-top: 6px;
}

.filter-tip-text {
  color: var(--white);
  text-align: center;
}

.filter-tip-line {
  border: 1px solid #384362;
  width: 196px;
  height: 1px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.filter-tip-ok {
  width: 180px;
  height: 30px;
  color: var(--orange-200);
  display: flex;
  justify-content: center;
  align-items: center;
}

.filter-tip-ok:hover {
  cursor: pointer;
}

.filter-tip-up {
  margin-left: auto;
  margin-right: auto;
  background-color: #2A334D;
  height: 20px;
  width: 20px;
  transform: rotate(45deg);
  margin-top: -10px;
}

/**************** back top **************/

.back-top {
  background-color: #45547F;
  border-radius: 100px;
  z-index: 50;
  border: 0;
}

.back-top-desk{
  box-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
  color: var(--white);
  padding: 8px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 32px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 150px;
  position: sticky;
}

.back-top-mob {
  padding: 16px;
  bottom: 16px;
  right: 16px;
  opacity: 0.8;
  position: absolute;
}

.back-top-text {
  display: none;
}
.back-top-desk-img {
  display: none;
}
.back-top-mob-img {
  display: none;
}

.back-top-desk .back-top-text,
.back-top-desk .back-top-desk-img {
  display: block;
}

.back-top-mob .back-top-mob-img {
  display: block;
}

/****************  ie old ***************/

.old-ie {
  color: #787878 !important;
  display: none;
  text-align: center;
  height: 100%;
}

.old-ie-container {
  display: inline-block;
  margin-top: 6%;
  overflow: auto;
}

.old-ie-button {
  color: #787878 !important;
  font-weight: 600;
  display: block;
  margin-top: 16px;
  width: 246px;
  background: #E2E2E2;
  border-radius: 8px;
  margin-left: auto;
  margin-right: auto;
  padding: 16px
}

.old-ie-f600 {
  font-weight: 600;
}

.old-mw-500 {
  max-width: 500px;
}

.old-ie-button-mt40 {
  margin-top: 40px;
}

/**************** news ************************/
.news-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 470px;
  background: var(--gray-400-50);
  border-radius: 4px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
}

md-checkbox.news-checkbox {
  margin-left: auto;
}

/**************** profile modal ****************/

.welcome-modal-left-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
  width: 325px;
  background-color: var(--orange-200);
  background-image: url('/vassets/images/welcome_wallpaper.png');
}

.welcome-modal-title {
  font-family: "Oswald";
  text-transform: uppercase;
  font-size: 54px;
  line-height: 65px;
  color: var(--white);
  width: 240px;
  margin-bottom: 24px;
}

.welcome-modal-subtitle {
  color: var(--white);
  width: 240px;
}

.welcome-modal-title-mobile-div {
  width: 290px;
  margin: auto;
  margin-top: 44px;
}

.welcome-modal-title-mobile {
  font-family: "Oswald";
  text-transform: uppercase;
  font-size: 24px;
  line-height: 28px;
  color: var(--gray-100);
  margin: 0px;
  text-align: left;
  margin-bottom: 8px;
}

.welcome-modal-right-div {
  background-color: var(--white);
  text-align: center;
  width: 475px
}

.welcome-modal-close-button {
  right: 0;
  position: absolute;
  margin: 16px 16px 0 0;
}

.welcome-modal-options-label {
  margin-bottom: 24px;
  margin-top: 24px;
}

.welcome-modal-profile-button {
  background-color: var(--white);
  color: var(--gray-200);
  width: 290px;
  display: flex;
  height: 61px;
  border-radius: 4px;
  border: 1px solid var(--gray-200);
  text-transform: none;
  margin: 0;
  padding: 0;
  margin-bottom: 4px;
  text-align: left;
}

.welcome-modal-profile-button.btn-active {
  border: 4px solid var(--orange-200);
  color: var(--orange-200);
}

.welcome-modal-button-img {
  margin-left: 32px;
}

.welcome-modal-button-text {
  width: 150px;
  white-space: normal;
  margin-left: 16px;
  line-height: 16px;
  font-weight: 500;
  font-size: 14px;
}

.welcome-modal-send-button {
  margin-top: 24px;
  margin-bottom: 32px;
  width: 290px;
  height: 44px;
}

.welcome-modal-profile-input {
  width: 290px;
  margin-top: 24px;
  margin-bottom: 0px;
}

.welcome-modal-profile-input .md-errors-spacer {
  display: none;
}

/**************** feedback ****************/

.feedback-modal {
  margin-right: 10px;
  margin-left: 10px;
  background: var(--white);
}

.feedback-modal-close {
  right: 21px;
  position: absolute;
  top: 21px;
}

.feedback-modal-primary {
  height: 44px;
}

.feedback-modal-container {
  margin-top: 48px;
  display: flex;
  max-width: 368px;
  flex-direction: column;
  align-items: center;
  margin-right: 48px;
  margin-left: 48px;
}

.feedback-bt-score {
  background: var(--gray-300);
  border-radius: 2px;
  color: var(--white);
  font-weight: 500;
  font-size: 20px;
  border: 3px solid var(--gray-300);
  box-sizing: border-box;
  border-radius: 2px;
  height: 48px;
  width: 48px;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 520px) {
  .feedback-bt-score {
    height: 40px;
    width: 40px;
  }

  .feedback-modal-container {
    margin-right: 5px;
    margin-left: 5px;
  }

  .feedback-modal-container {
    max-width: 300px;
  }
}

.feedback-bt-score:hover {
  background: var(--orange-200);
  border: 3px solid var(--orange-200);
}

.feedback-bt-score-selected {
  background: var(--orange-200);
  border: 3px solid var(--orange-200);
}

/**************** utils ****************/

.p-0 {
  padding: 0px;
}

.capitalize {
  text-transform: capitalize;
}

.line {
  border: 0.5px solid var(--gray-300);
  margin-top: 24px;
  margin-bottom: 24px;
}

.r-16 {
  right: 16px;
}

.m-0 {
  margin: 0px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-48 {
  margin-top: 48px;
}

.mt-30 {
  margin-top: 30px;
}

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

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

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

.mb-12 {
  margin-bottom: 12px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}


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

.mb-48 {
  margin-bottom: 48px;
}

.ml-8 {
  margin-left: 8px;
}

.ml-16 {
  margin-left: 16px;
}

.mr-4 {
  margin-right: 4px;
}

.mr-8 {
  margin-right: 8px;
}

.mr-16 {
  margin-right: 16px;
}

.mr-24 {
  margin-right: 24px;
}

.mr-32 {
  margin-right: 32px;
}

.pr-4 {
  padding-right: 4px;
}

.pt-8 {
  padding-top: 8px;
}

.flex-row {
  display: flex;
  flex-direction: row
}

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

.flex-1 {
  flex: 1;
}

.d-flex {
  display: flex;
}

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

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

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

.flex-justify-center {
  display: flex;
  justify-content: center;
}

.justify-center {
  justify-content: center;
}

.flex-align-center {
  display: flex;
  align-content: center;
}

.flex-center-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.m-auto {
  margin: auto;
}

.w-100 {
  width: 100%;
}

.fw-500 {
  font-weight: 500;
}

.m-auto-vert {
  margin-top: auto;
  margin-bottom: auto;
}

.m-auto-horizontal {
  margin-left: auto;
  margin-right: auto;
}

.overflow-auto {
  overflow: auto;
}

.uppercase {
  text-transform: uppercase;
}

.h-100 {
  height: 100%;
}

.outline-none {
  outline: none;
}
