@import url(https://fonts.googleapis.com/css2?family=Quicksand:wght@500;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Quicksand:wght@500;600;700&display=swap);
/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}

#loader1 {
  display: block;
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #3e0fd7;
  -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}
#loader1:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #3e0fd7;
  -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}
#loader1:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #3e0fd7;
  -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg); /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg); /* IE 9 */
    transform: rotate(0deg); /* Firefox 16+, IE 10+, Opera */
  }
  100% {
    -webkit-transform: rotate(360deg); /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg); /* IE 9 */
    transform: rotate(360deg); /* Firefox 16+, IE 10+, Opera */
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg); /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg); /* IE 9 */
    transform: rotate(0deg); /* Firefox 16+, IE 10+, Opera */
  }
  100% {
    -webkit-transform: rotate(360deg); /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg); /* IE 9 */
    transform: rotate(360deg); /* Firefox 16+, IE 10+, Opera */
  }
}

.ct-grid {
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1px;
  stroke-dasharray: 2px;
}
*{
	font-family: 'Quicksand', sans-serif;
}

.ct-series-a .ct-point,
.ct-series-a .ct-line,
.ct-series-a .ct-bar,
.ct-series-a .ct-slice-donut {
  stroke: rgba(255, 255, 255, 0.8);
}

.ct-label.ct-horizontal.ct-end {
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}

.ct-label {
  color: rgba(255, 255, 255, 0.7);
}

.ct-chart-line .ct-label,
.ct-chart-bar .ct-label {
  display: block;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.ct-label {
  fill: rgba(0, 0, 0, 0.4);
  line-height: 1;
}
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background-color:#F7F8F9;
  color: #3c4858;
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  line-height: 1.5em;
}

blockquote footer:before,
blockquote small:before {
  content: "\2014   \A0";
}

small {
  font-size: 80%;
}

h1 {
  font-size: 3em;
  line-height: 1.15em;
  padding: 0px;
  margin: 0px;
}

h2 {
  font-size: 2.4em;
  padding: 0px;
  margin: 0px;
}

h3 {
  font-size: 1.825em;
  line-height: 1.4em;
  padding: 0px;
  margin: 0px;
}

h4 {
  font-size: 1.3em;
  line-height: 1.4em;
  padding: 0px;
  margin: 0px;
}

h5 {
  font-size: 1.25em;
  line-height: 1.4em;
  padding: 0px;
  margin: 0px;
}

h6 {
  font-size: 1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0px;
  margin: 0px;
}

body {
  background-color:#F7F8F9;
  color: #3c4858;
}

blockquote p {
  font-style: italic;
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  line-height: 1.5em;
}

a {
  color: #9c27b0;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #3e0fd7;
  text-decoration: none;
}

legend {
  border-bottom: 0;
}

* {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
}

*:focus {
  outline: 0;
}

a:focus,
a:active,
button:active,
button:focus,
button:hover,
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
select::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
  outline: 0 !important;
}

legend {
  margin-bottom: 20px;
  font-size: 21px;
}

output {
  padding-top: 8px;
  font-size: 14px;
  line-height: 1.42857;
}

label {
  font-size: 14px;
  line-height: 1.42857;
  color: #aaaaaa;
  font-weight: 400;
}

footer {
  padding: 15px 0;
}

footer ul {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

footer ul li {
  display: inline-block;
}

footer ul li a {
  color: inherit;
  padding: 15px;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  border-radius: 3px;
  text-decoration: none;
  position: relative;
  display: block;
}

footer ul li a:hover {
  text-decoration: none;
}

@media (max-width: 991px) {
  body,
  html {
    position: relative;
     }

  #bodyClick {
    height: 100%;
    width: 100%;
    position: fixed;
    opacity: 0;
    top: 0;
    left: auto;
    right: 260px;
    content: "";
    z-index: 9999;
    overflow-x: hidden;
  }
}
.fixed-plugin {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  line-height: 1.5em;
  position: fixed;
  top: 180px;
  right: 0;
  width: 64px;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1031;
  border-radius: 8px 0 0 8px;
  text-align: center;
  top: 120px;
  
}

.fixed-plugin .SocialMediaShareButton,
.fixed-plugin .github-btn {
  display: inline-block;
}

.fixed-plugin li > a,
.fixed-plugin .badge {
  transition: all 0.34s;
  -webkit-transition: all 0.34s;
  -moz-transition: all 0.34s;
  text-decoration: none;
}

.fixed-plugin .fa-cog {
  color: #ffffff;
  padding: 10px;
  border-radius: 0 0 6px 6px;
  width: auto;
}

.fixed-plugin .dropdown-menu {
  right: 80px;
  left: auto;
  width: 290px;
  border-radius: 0.1875rem;
  padding: 0 10px;
  position: absolute;
  color: rgba(0, 0, 0, 0.87);
  display: inline-block;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  background: #fff;
  border-radius: 3px;
}

.fixed-plugin .fa-circle-thin {
  color: #ffffff;
}

.fixed-plugin .active .fa-circle-thin {
  color: #00bbff;
}

.fixed-plugin .dropdown-menu > .active > a,
.fixed-plugin .dropdown-menu > .active > a:hover,
.fixed-plugin .dropdown-menu > .active > a:focus {
  color: #777777;
  text-align: center;
}

.fixed-plugin img {
  border-radius: 0;
  width: 100%;
  height: 100px;
  margin: 0 auto;
}

.fixed-plugin .dropdown-menu li > a:hover,
.fixed-plugin .dropdown-menu li > a:focus {
  box-shadow: none;
}
.fixed-plugin .badge {
  border: 3px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  height: 23px;
  margin-right: 5px;
  position: relative;
  width: 23px;
  background-color: rgba(30, 30, 30, 0.97);
}

.fixed-plugin .badge.active,
.fixed-plugin .badge:hover {
  border-color: #00bbff;
}

.fixed-plugin .badge-purple {
  background-color: #9c27b0;
}

.fixed-plugin .badge-blue {
  background-color: #00bcd4;
}

.fixed-plugin .badge-green {
  background-color: #4caf50;
}

.fixed-plugin .badge-orange {
  background-color: #ff9800;
}

.fixed-plugin .badge-red {
  background-color: #f44336;
}

.fixed-plugin .badge-white {
  background-color: #f1f1f1;
}

.fixed-plugin h5 {
  font-size: 14px;
  margin: 10px;
}
.fixed-plugin .dropdown-menu li {
  display: block;
  padding: 4px 0px;
  width: 25%;
  float: left;
}

.fixed-plugin li.adjustments-line,
.fixed-plugin li.header-title,
.fixed-plugin li.button-container {
  width: 100%;
  height: 50px;
  min-height: inherit;
  padding: 0px;
  text-align: center;
}

.fixed-plugin li.adjustments-line p {
  margin: 0;
}

.fixed-plugin li.adjustments-line div,
.fixed-plugin li.header-title div,
.fixed-plugin li.button-container div {
  margin-bottom: 5px;
}
.fixed-plugin li.header-title {
  height: 30px;
  line-height: 25px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.fixed-plugin .adjustments-line p {
  float: left;
  display: inline-block;
  margin-bottom: 0;
  font-size: 1em;
  color: #3c4858;
}

.fixed-plugin .adjustments-line a {
  color: transparent;
}

.fixed-plugin .adjustments-line a .badge-colors {
  position: relative;
  top: -2px;
}

.fixed-plugin .adjustments-line a a:hover,
.fixed-plugin .adjustments-line a a:focus {
  color: transparent;
}
.fixed-plugin .adjustments-line .dropdown-menu > li.adjustments-line > a {
  padding-right: 0;
  padding-left: 0;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  margin: 0;
}

.fixed-plugin .dropdown-menu > li > a.img-holder {
  font-size: 16px;
  text-align: center;
  border-radius: 10px;
  background-color: #fff;
  border: 3px solid #fff;
  padding-left: 0;
  padding-right: 0;
  opacity: 1;
  cursor: pointer;
  display: block;
  max-height: 100px;
  overflow: hidden;
  padding: 0;
}

.fixed-plugin .dropdown-menu > li > a.img-holder img {
  margin-top: auto;
}
.fixed-plugin .dropdown-menu > li:hover > a.img-holder,
.fixed-plugin .dropdown-menu > li:focus > a.img-holder {
  border-color: rgba(0, 187, 255, 0.53);
}

.fixed-plugin .dropdown-menu > .active > a.img-holder,
.fixed-plugin .dropdown-menu > .active > a.img-holder {
  border-color: #00bbff;
  background-color: #ffffff;
}
.fixed-plugin .dropdown .dropdown-menu {
  -webkit-transform: translateY(-15%);
  -moz-transform: translateY(-15%);
  -o-transform: translateY(-15%);
  -ms-transform: translateY(-15%);
  transform: translateY(-15%);
  top: 27px;
  opacity: 0;
  transform-origin: 0 0;
  display: none;
}

.fixed-plugin .dropdown .dropdown-menu:before {
  border-bottom: 0.4em solid transparent;
  border-left: 0.4em solid rgba(0, 0, 0, 0.2);
  border-top: 0.4em solid transparent;
  right: -16px;
  top: 46px;
}
.fixed-plugin .dropdown .dropdown-menu:after {
  border-bottom: 0.4em solid transparent;
  border-left: 0.4em solid #ffffff;
  border-top: 0.4em solid transparent;
  right: -16px;
}

.fixed-plugin .dropdown .dropdown-menu:before,
.fixed-plugin .dropdown .dropdown-menu:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 46px;
  width: 16px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
}

.fixed-plugin .dropdown.show .dropdown-menu {
  display: block;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-13%);
  -moz-transform: translateY(-13%);
  -o-transform: translateY(-13%);
  -ms-transform: translateY(-13%);
  transform: translateY(-13%);
  transform-origin: 0 0;
}
* {
  letter-spacing: normal !important;
}
.body-page-transition {
  overflow: hidden;
}
.body-page-transition #page-transition {
  position: fixed;
  z-index: 9999;
  width: 100%;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.body-page-transition #page-transition > div:after {
  content: "";
  background-size: cover;
  position: fixed;
  z-index: 9998;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.body-page-transition #page-transition > div:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  z-index: 9999;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
}

/*font*/
* {
	font-family: 'Quicksand', sans-serif!important;
}


/*Login*/

img.logo2 {
	display: none;
}

.bg-color {
	background-image: url(/_next/static/images/bg-adm-d51c533d5e265785960b46e49da53ccd.svg);
	background-size: cover;
	width: 100%;
	height: 100vh;
	position: relative;
	background-color: #3800d6;
	background-repeat: no-repeat;
}

.phases {
	padding-bottom: 64px;
}

.bg-color .contLog {
	padding-top: 70px;
	padding-bottom: 70px;
}

.centrarCirculo {
	height: 150px;
	/*IMPORTANTE*/
	display: flex;
	justify-content: center;
	align-items: center;
}

.login,
.recovery {
	height: 100vh;
}

.singup .bg-color {
	height: 100%;
}

.contLog .MuiGrid-justify-xs-flex-end {
	justify-content: center;
}

.paper h1 {
	font-size: 18px;
}

.recovery .paper {
	width: 420px;
}


/*FIN LOGIN*/

.closebtn {
	float: right;
}

.bold {
	font-weight: bold;
}

.subtitle {
	color: #172ca5;
	font-weight: bold;
}

a {
	cursor: pointer!important;
}

.titulos-int {
	padding-top: 40px
}

.makeStyles-cardIcon-107.makeStyles-warningCardHeader-108,
.makeStyles-cardIcon-107.makeStyles-successCardHeader-109,
.makeStyles-cardIcon-107.makeStyles-dangerCardHeader-110,
.makeStyles-cardIcon-107.makeStyles-infoCardHeader-111,
.makeStyles-cardIcon-107.makeStyles-primaryCardHeader-112,
.makeStyles-cardIcon-107.makeStyles-roseCardHeader-113,
.makeStyles-cardIcon-107.makeStyles-darkCardHeader-114 {
	border-radius: 100%!important;
}

.makeStyles-white-243 .makeStyles-itemIcon-235 {
	color: white;
}

.MuiButton-textPrimary {
    color: #172ca5;
    padding-right: 15px;
    padding-left: 15px;
    font-weight: bold;
}
td.MuiTableCell-root.MuiTableCell-body.solo-icono {
    text-align: center;
}
li.MuiButtonBase-root.MuiListItem-root:hover {
	background: #e6e6e6;
	color: black!important;
}
td.MuiTableCell-root.MuiTableCell-body {
    text-align: left;
}
.Mui-disabled {
    opacity: 0.5;
}
th.MuiTableCell-root.MuiTableCell-head.MuiTableCell-stickyHeader {
	border-bottom: 2px solid #1db577;
	color: #172ca5;
	background: transparent;
	font-size: 14px;
	font-weight: bold;
}

table svg.MuiSvgIcon-root {
	color: #1db577;
}

.MuiButton-containedPrimary {
	background-color: #3c20d7;
	text-transform: uppercase;
	border-color: #3c20d7;
	border-radius: 40px;
	font-weight: bold;
	color: white;
}

.MuiPaper-root.MuiDialog-paper.MuiDialog-paperScrollPaper.MuiDialog-paperWidthSm.MuiPaper-elevation24.MuiPaper-rounded .MuiButton-root:hover
{
	font-weight: bold;
    text-decoration: underline;
}
.MuiDialogContent-root
{
	background: transparent;
    font-weight: bold;
    text-decoration: underline;
}
.MuiTableRow-root.MuiTableRow-hover:hover {
	background-color: #1db57708!important;
}
.MuiButton-containedSecondary {
	color: #172CA5;
    background-color: transparent;
    box-shadow: none;
    border: 0;
    font-weight: bold;
}

.MuiButton-containedSecondary:hover {
    background-color: transparent;
    text-decoration: underline!important;
    box-shadow: none;
}

.navbarlinks button {
	margin: 0;
	margin-left: 12px;
}

.toolbar {
	background: #fdf0aa;
	top: -10px;
}

.phases.jsx-1636552777 {
	position: relative;
	height: 100%;
	background: white;
	margin-top: 28px;
}

.MuiCardContent-root .MuiButton-containedPrimary {
	margin-right: 10px;
	padding-right: 15px;
	padding-left: 15px;
}

.MuiButton-containedPrimary:hover {
	background: #172ca5;
	border-color: #172ca5;
}

h2.MuiTypography-root.MuiTypography-h6 {
	color: #172ca5;
	font-weight: bold;
}

.MuiGrid-root.MuiGrid-item h3 {
	color: #172ca5;
	font-weight: bold;
}

label#rolLabelId {
	padding-bottom: 10px;
}

label {
	font-weight: 600!important;
}
.barra-footer header {
	background: white;
	box-shadow: none;
	box-shadow: 0px 2px 4px 2px rgb(0 0 0 / 14%);
}

.MuiPaper-root.MuiDrawer-paper span {
	color: white!important;
	margin-left: 14px;
}

.MuiPaper-root.MuiDrawer-paper svg {
	color: white!important;
	margin-left: 0;
}


/*login*/

form.divlogin {
	padding-bottom: 40px;
}

.paper {
	padding: 30px;
	margin: 0 auto;
	text-align: center;
	max-width: 420px;
}

.paper button {
	margin-top: 20px;
	margin-bottom: 20px;
}

.paper img {
	width: 250px;
}

.MuiDrawer-root.MuiDrawer-docked svg {
	color: white;
}

.MuiDrawer-root.MuiDrawer-docked ul div {
	color: white;
}

.MuiDialogActions-root.MuiDialogActions-spacing {
	padding: 10px 22px 20px 22px;
}

.inputWidth {
	width: 40%;
	margin-right: 10%;
}

.rolbox {
	padding-top: 35px;
}

.rolbox .MuiCardHeader-root {
	color: #172ca5;
}

.rolboxinside {
	width: 45%;
}

.jsx-1636552777.design-phase__side {
	padding: 10px;
}

.btnComp a {
	background-color: #3c20d7;
	text-transform: uppercase;
	border-color: #3c20d7;
	border-radius: 40px;
	font-weight: bold;
	color: white;
	padding: 6px 16px;
	font-size: 0.875rem;
	min-width: 64px;
	box-sizing: border-box;
	transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
	line-height: 1.75;
	text-transform: uppercase;
	box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 5px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%);
	color: white;
	float: right;
	text-align: center !important;
	margin: 0 auto !important;
	flex: inherit;
	flex-grow: inherit;
	flex-grow: initial;
	margin-bottom: 10px !important;
}

.documento-activo {
	background: #172ca5;
	color: white;
}

.documento-activo svg {
	color: white;
}

.documento-activo:hover {
	background: #172ca5;
	color: white;
}

.jsx-3274285103.design-phase__side ul {
	padding: 0;
}

.jsx-3274285103.design-phase__side {
	height: fit-content;
}

.btnComp a:hover {
	background: #172ca5;
	border-color: #172ca5;
	color: white;
	text-decoration: none;
}

.container {
	padding-top: 30px;
}


/*proceso*/

.proceso .MuiStepIcon-root.MuiStepIcon-active {
	color: #3c20d7;
	font-size: 35px;
}

.proceso {
	max-width: 1920px;
	margin: 0 auto;
}

.MuiDrawer-paperAnchorRight .MuiListItemText-root {
	color: white!important;
}

.MuiDrawer-paperAnchorRight #profile-menu-list-grow ul li a,
.MuiDrawer-paperAnchorRight #profile-menu-list-grow ul li {
	color: white;
	margin: 0;
	border-radius: 0;
	box-shadow: none;
}

div#profile-menu-list-grow ul li {
	margin: 0;
	border-radius: 0;
	box-shadow: none;
}

.design-phase__side-annotations.jsx-1636552777 {
	overflow: hidden;
	border: 0;
}

.jsx-1636552777.design-phase__side {
	border: 0;
}

.proceso span.MuiStepLabel-iconContainer {
	color: white;
}

.proceso main.MuiContainer-root.MuiContainer-maxWidthLg {
	padding: 0;
}

.proceso .MuiPaper-root.MuiStepper-root.MuiStepper-horizontal.MuiStepper-alternativeLabel.MuiPaper-elevation0 {
	background: transparent;
	padding-top: 40px!important;
	padding-bottom: 40px!important;
}

.MuiSelect-root.MuiSelect-select.MuiSelect-selectMenu.MuiInputBase-input.MuiInput-input svg {
	position: relative;
	top: 7px;
}

.proceso .MuiStepper-root {
	display: flex;
	padding: 0!important;
}

.titulos {
	color: #172ca5;
	font-weight: bold;
	font-size: 1.825em;
}

.proceso .MuiDropzoneArea-icon {
	color: #172ca5;
	width: 51px;
	height: 51px;
}

.proceso p.MuiTypography-root.MuiDropzoneArea-text.MuiTypography-h5 {
	font-size: large;
}

.proceso .MuiDropzoneArea-root {
	min-height: 100%!important;
	margin-bottom: 20px;
	margin-top: 20px;
}

.proceso .MuiChip-root.MuiChip-outlined.MuiChip-deletable {
	background: white;
}

.proceso span.MuiTypography-root.MuiTypography-subtitle1 {
	color: #172ca5;
	font-weight: bold;
}

.proceso header.MuiPaper-root.MuiAppBar-root.MuiAppBar-positionFixed.MuiAppBar-colorPrimary.mui-fixed.MuiPaper-elevation4 {
	background: white;
	box-shadow: 0px 2px 4px 2px rgb(0 0 0 / 14%);
}

.proceso svg.MuiSvgIcon-root.MuiStepIcon-root {
	font-size: 35px;
}

.proceso .MuiStepConnector-alternativeLabel {
	top: 18px;
}

.proceso .MuiStepIcon-root.MuiStepIcon-completed {
	color: #1db577;
}

.MuiGrid-root.box-seleccionar.MuiGrid-item.MuiGrid-grid-xs-true,
.box-preparar {
	background: transparent;
	margin-top: 20px;
}

.MuiPaper-root.MuiStepper-root.MuiStepper-vertical {
	background: transparent;
}

.botonesBarra {
	width: 100%;
	margin: 0 auto;
	max-width: 1920px;
}

.proceso .MuiStepConnector-vertical {
	padding: 0 0 8px;
	margin-left: 22px;
}

.proceso span.MuiStepConnector-line.MuiStepConnector-lineVertical {
	border-color: #172CA5;
}

.proceso .MuiPaper-root.MuiStepper-root.MuiStepper-vertical span div svg {
	background: #172ca5;
	padding: 10px;
	border-radius: 100%;
	border: 1px solid;
}

.tablas {
	background: white;
	padding: 7px 7px;
	margin-top: 32px;
}

.paispop {
	width: 50%;
	margin-bottom: 25px;
}

.tablas span {
	color: #172ca5;
	font-weight: bold;
	text-transform: uppercase;
}

.interProc {
	width: 80%;
	margin: 0 auto;
}

.MuiPaper-root.MuiDrawer-paper span {
	color: white!important;
}

.MuiPaper-root.MuiDrawer-paper select {
	color: white!important;
}

.MuiPaper-root.MuiDrawer-paper svg {
	color: white!important;
}

.atras {
	float: left;
	color: #172ca5;
	font-weight: bold;
}

.siguiente {
	float: right;
}

.proceso .MuiDropzoneArea-text {
	margin-top: 24px!important;
	padding: 0px 10px 0px 10px!important;
	margin-bottom: 0!important;
}

.proceso .MuiPaper-elevation1 {
	border-radius: 0;
	border: 1px solid #bdbdbd;
	box-shadow: none;
	width: 100%
}

.jsx-1636552777.design-phase {
	padding-bottom: 80px;
	background: transparent!important;
}

.proceso .MuiList-padding {
	padding-top: 8px;
	padding-bottom: 8px;
	width: 100%;
}

.proceso .MuiBox-root.MuiBox-root-8 {
	margin-left: 0;
}

.proceso select.MuiNativeSelect-root.MuiNativeSelect-select.MuiInputBase-input.MuiInput-input {
	margin-top: 32px;
}

.proceso svg.MuiSvgIcon-root.MuiNativeSelect-icon {
	margin-top: 15px;
}

.proceso button.MuiButtonBase-root.MuiIconButton-root.MuiIconButton-colorSecondary {
	position: relative;
	top: 32px;
}

.menuright {
	padding: 0;
}

.selectOrd {
	position: relative;
	top: 24px;
}

header.MuiPaper-root.MuiAppBar-root.MuiAppBar-positionFixed.MuiAppBar-colorPrimary.makeStyles-appBar-55.mui-fixed.MuiPaper-elevation4 {
	position: relative;
}

.makeStyles-buttonLink-66 {
	margin: 0;
}

.makeStyles-white-85 .makeStyles-itemText-78 {
	color: white;
}

.orden {
	position: relative;
	color: white;
	font-weight: bold;
	width: max-content;
	padding-right: 14px;
	padding-left: 14px;
	padding-top: 6px;
	padding-bottom: 6px;
}

.signing-form {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 2rem;
	padding-top: 0;
}

.name-label {
	font-size: 0.75rem;
	padding-bottom: 0.5rem;
}

.MuiAlert-standardWarning {
	color: rgb(102, 60, 0);
	background-color: rgb(255, 244, 229);
	position: relative;
	top: -10px;
}

.signing-input {
	padding: 0.25rem 0.5rem;
	border: 1px solid #bbb;
	border-radius: 3px;
}

.signing-card {
	flex: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 0.75rem;
	margin-top: 0.75rem;
}

.signing-card-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2rem;
	overflow: hidden;
	line-height: 1.5;
	background-color: #f6f6f6;
	border: 1px solid #231e46;
	border-radius: 4px;
	margin: 0;
	padding: 0;
}
.design-phase__side-annotation-description.jsx-3274285103{
	font-size:14px;
}
.jsx-3274285103.design-phase__side-annotation-heading span{
	font-weight: bold;
	font-size:16px;
}
.btngoogle {
	width: 100%;
	background-color: rgb(255, 255, 255);
	display: inline-flex;
	align-items: center;
	color: rgba(0, 0, 0, 0.54);
	box-shadow: rgb(0 0 0 / 24%) 0px 2px 2px 0px, rgb(0 0 0 / 24%) 0px 0px 1px 0px;
	padding: 0px;
	border-radius: 2px;
	border: 1px solid transparent;
	font-size: 14px;
	height: 35px;
}

.btngoogle button {
	background-color: rgb(255, 255, 255);
	display: inline-flex;
	align-items: center;
	color: rgba(0, 0, 0, 0.54);
	width: fit-content;
	border: 0;
	text-align: center;
	margin: 0 auto;
	box-shadow: none!important;
	height: 35px;
}

.btngoogle div {
	height: 35px;
}

.olvidopass {
	text-align: right;
	float: right;
	margin: 10px 0px 0 0;
}

.btngoogle span {
	color: rgba(0, 0, 0, 0.87)!important;
	text-transform: uppercase;
}

.btngoogle button div {
	padding: 8px!important;
}

.signing-preview-p {
	text-align: center;
	white-space: nowrap;
}

.MuiGrid-root.MuiGrid-item h3 {
	padding-bottom: 12px;
}

.singup svg.MuiSvgIcon-root.MuiSelect-icon.MuiSelect-iconOutlined {
	color: black;
}

.proceso .MuiStep-horizontal {
	padding: 0
}

.signing-form div h4 {
	margin: 0 auto;
	text-align: center;
	padding-bottom: 5px;
	color: #172ca5;
	font-weight: bold;
}

header.MuiPaper-root.MuiAppBar-root.MuiAppBar-positionFixed.MuiAppBar-colorPrimary.makeStyles-appBar-6.mui-fixed.MuiPaper-elevation4 {
	background: white;
	box-shadow: 0 4px 15px 0px rgb(0 0 0 / 5%)!important;
	padding: 0;
	position: relative;
}

header.MuiPaper-root.MuiAppBar-root.MuiAppBar-positionFixed.MuiAppBar-colorPrimary.makeStyles-appBar-41.mui-fixed.MuiPaper-elevation4 {
	background: white;
	box-shadow: 0 4px 25px 0px rgb(0 0 0 / 7%)!important;
	padding: 0;
}

div#profile-menu-list-grow {
	border-radius: 0;
}

.makeStyles-content-3 {
	padding: 78px 15px;
	margin-top: 0;
}

img.logoNav {
	max-width: 108px;
}

.adminNavLinks div {
	float: right;
	text-align: right;
}

.adminNavLinks div p {
	display: none;
}

button.MuiButtonBase-root.MuiButton-root.MuiButton-text.makeStyles-buttonLink-65 {
	margin: 0;
}

.header2 {
	max-width: 1920px;
	margin: 0 auto;
	min-height: auto;
	background: white;
	padding-top: 9px
}

header.MuiPaper-root {
	background: white;
	padding: 0;
	box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 16%);
}

button.MuiButtonBase-root.MuiButton-root.MuiButton-text.makeStyles-buttonLink-16 {
	margin: 0;
	padding: 0;
}

span.subtitle {
	color: #172ca5;
	font-weight: bold;
	margin-top: 25px;
}

select.MuiNativeSelect-root.MuiNativeSelect-select.MuiInputBase-input.MuiInput-input {
	margin-left: 12px;
}

.sub-title {
	color: #172ca5;
	font-weight: bold;
	text-transform: uppercase;
	padding-bottom: 12px;
}

.MuiDialog-paperWidthSm {
	max-width: 720px;
}

.makeStyles-buttonLink-114 {
	margin: 0;
}

span.jsx-4259854181.design-phase__side-annotation-label {
	font-size: small;
	line-height: normal;
}

.design-phase__side-annotations .MuiSelect-select.MuiSelect-select {
	padding-right: 24px;
	text-align: left;
}

.comp {
	margin: 0 auto;
	text-align: center;
	padding-top: 40px;
}

.comp-adm {
	padding-top: 40px;
}

.btnComp {
	padding-top: 20px;
	width: 30%;
	margin: 0 auto;
}

.revEnv {
	padding-bottom: 45px;
}

.comp h3 {
	padding-bottom: 12px;
}

.btnComp button {
	width: 100%;
	margin: 18px 0;
	margin-left: 0!important;
}

.resultados {
	margin-top: 30px;
}

.nopad {
	padding: 0;
}

.validarbtn {
	margin-top: 15px
}

.MuiGrid-root.nopad.MuiGrid-item.MuiGrid-grid-xs-8 {
	padding: 0;
}

.MuiPaper-root.MuiDrawer-paper select option {
	color: black
}

.makeStyles-buttonLink-223 {
	margin: 0px!important;
}

.revisar6 {
	margin-bottom: 35px;
}

.bandeja .MuiPaper-root.MuiCard-root.MuiPaper-elevation1.MuiPaper-rounded {
	background: transparent;
	border: none;
	box-shadow: none;
}

.envelope-activo:hover {
	text-decoration: none;
	background-color: rgba(0, 0, 0, 0.04);
	color: #6C6D6D;
}

.vista-activa:hover {
	text-decoration: none;
	background-color: rgba(0, 0, 0, 0.04);
	color: #6C6D6D;
}

.envelope-activo {
	background: #e6e6e6;
	color: #3c4858;
}

.envelope-activo svg {
	color: #3c4858;
}

.vista-activa {
	background: #e6e6e6;
	color: #3c4858;
}

.vista-activa svg {
	color: white;
}

.bandeja .MuiCardContent-root {
	padding: 0;
}

.inter-ban {
	margin-top: 20px;
}

.right-interban {
	padding-right: 15px;
}

.vista-activa:hover {
	background-color: #188c5a;
	color: white;
}

@media (max-width:1200px) {
	.jsx-3274285103.design-phase__side div {
		font-size: 12px;
		line-height: normal;
	}
	.jsx-3274285103.design-phase__side-annotation-heading span {
		padding-top: 7px;
	}
	.jsx-3274285103.design-phase__side {
		height: 140px;
	}
}

@media (min-width: 1000px) {
	.MuiStepContent-root.MuiStepContent-last {
		width: 70%;
	}
	.proceso .MuiPaper-elevation1 {
		width: 90%;
	}
	.proceso .revisar6 {
		width: 50%;
	}
}

.proceso .MuiStepConnector-vertical {
	padding: 0 0 8px;
	margin-left: 22px;
}

.proceso span.MuiStepConnector-line.MuiStepConnector-lineVertical {
	border-color: #172CA5;
}

div#profile-menu-list-grow ul li a {
	color: #333;
}

.imgpop:hover {
	transform: scale(1.1);
	transition: transform .6s ease;
}

.proceso .MuiPaper-root.MuiStepper-root.MuiStepper-vertical span div svg {
	background: #172ca5;
	padding: 10px;
	border-radius: 100%;
	border: 1px solid;
}

form.profile {
	padding: 20px;
	margin-top: 20px;
}

.profilebtn {
	margin-top: 20px
}

.MuiPaper-root.MuiPaper-elevation0.MuiPaper-rounded {
	width: 50%;
}

.interProc {
	width: 80%;
	margin: 0 auto;
}

form.profile svg {
	position: relative;
	top: 6px;
	padding-right: 6px;
}

.MuiStepContent-root.MuiStepContent-last {
	padding-bottom: 115px;
}

.imgpop span {
	font-size: 12px;
	color: gray;
}

.atras {
	float: left;
	color: #172ca5;
	font-weight: bold;
}
.atras:hover {
    background: transparent;
    text-decoration: underline;
}

.siguiente {
	float: right;
}


/*.navbarlinks div {
    display: inline-flex;
}*/

.proceso .MuiDropzoneArea-text {
	margin-top: 24px!important;
	padding: 0px 10px 0px 10px!important;
	margin-bottom: 0!important;
}

.proceso .MuiPaper-elevation1 {
	border-radius: 0;
	border: 1px solid #bdbdbd;
	box-shadow: none;
	width: 100%
}

.jsx-1636552777.design-phase {
	padding-bottom: 80px;
	background: transparent!important;
}

.proceso .MuiList-padding {
	padding-top: 8px;
	padding-bottom: 8px;
	width: 100%;
}

.proceso .MuiBox-root.MuiBox-root-8 {
	margin-left: 0;
}

.proceso select.MuiNativeSelect-root.MuiNativeSelect-select.MuiInputBase-input.MuiInput-input {
	margin-top: 32px;
}

.proceso svg.MuiSvgIcon-root.MuiNativeSelect-icon {
	margin-top: 15px;
}

.cruzroja {
	color: red;
}

.tickverde {
	color: green;
}

.imgpop {
	width: 115px;
	padding: 15px;
	display: table-cell;
}

.signing-cancel-btn {
	color: white;
	background: #3c20d7 !important;
	border-color: #3c20d7 !important;
	text-transform: uppercase;
	font-weight: bold;
	margin-top: 1rem;
	width: 30%;
	padding: 0.5rem;
	border-radius: 5px;
	box-shadow: 0px 3px 1px -2px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%), 0px 1px 5px 0px rgb(0 0 0 / 12%);
	border: 0;
}

.signing-cancel-btn:hover {
	background: #172ca5 !important;
	border-color: #172ca5 !important;
}

.proceso .MuiStep-horizontal {
	padding: 0
}

.recovery form.divlogin {
	padding-bottom: 40px;
	width: 100%;
}

.select-style {
	width: 100%;
	margin-top: 16px;
	text-align: left;
}

.select-style label {
	padding-bottom: 6px;
}

.proceso button.MuiButtonBase-root.MuiIconButton-root.MuiIconButton-colorSecondary {
	position: relative;
	top: 32px;
}

.cruzroja {
	color: #de1c1c;
}

.tickverde {
	color: green;
}

.regisLog {
	padding-top: 25px;
	padding-bottom: 15px;
}

.popup-firma {
	text-align: center;
	margin: 0 auto;
	width: 100%;
	margin-top: 20px;
}

.signing-card-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2rem;
	overflow: hidden;
	line-height: 1.5;
	background-color: #f6f6f6;
	border: 1px solid #231e46;
	border-radius: 4px;
	margin: 0;
	padding: 0;
}

.signing-preview-p {
	text-align: center;
	white-space: nowrap;
}

.proceso .MuiStep-horizontal {
	padding: 0
}

@media (min-width: 1000px) {
	.proceso .revisar6 {
		width: 50%;
	}
}

@media (max-width: 1198px) {
	.proceso .jsx-1636552777.design-phase__side-annotations {
		border: 0;
	}
	label#choose_persona {
		text-align: left;
	}
	.jsx-1636552777.design-phase__side-annotations span {
		font-size: 12px;
		line-height: 1.5;
	}
	.jsx-1636552777.design-phase__side-annotations {
		overflow-y: hidden;
		height: initial;
	}
	.proceso .jsx-1636552777.design-phase__side-annotation {
		width: 20%;
	}
}

@media (max-width: 1000px) {
	.proceso {
		max-width: 100%;
	}
	ul.MuiList-root.menuright.MuiList-padding li {
		color: #5b5b5b!important;
	}
	ul.MuiList-root.menuright.MuiList-padding li:hover {
		color: white;
	}
}

@media (min-width: 600px) {
	.proceso .revisar6 {
		width: 50%;
	}
	.jsx-1636552777.design-phase__side-annotation-heading {
		width: 100%;
	}
	.jsx-1636552777.design-phase__side-annotation {
		width: 40%;
	}
	.jsx-1636552777.design-phase__side-annotation-heading {
		width: 100%;
	}
	.jsx-1636552777.design-phase__side-annotation {
		width: 40%;
	}
}

@media (max-width: 1000px) {
	.proceso .revisar6 {
		width: 100%;
	}
	.proceso {
		max-width: 100%;
	}
	.makeStyles-buttonLink-229 {
		margin: 0!important;
	}
	button.MuiButtonBase-root.MuiButton-root.MuiButton-text.makeStyles-buttonLink-11 {
		width: 0;
	}
	button.MuiButtonBase-root.MuiButton-root.MuiButton-text.makeStyles-buttonLink-11 svg {
		text-align: center;
		margin: 0 auto;
	}
	.navbarlinks button {
		margin-left: 0px;
	}
}

@media (max-width: 800px) {
	.signing-cancel-btn {
		width: 100%;
	}
	.imgpop {
		width: 150px;
		text-align: center;
		text-align: center;
		margin: 0 auto;
		display: inline-block;
	}
	.MuiFormControl-root.paispop {
		width: 100%;
		margin-bottom: 25px;
	}
	form.signing-form h4 {
		margin-bottom: 20px;
	}
}

@media (max-width: 600px) {
	.login .MuiButton-containedPrimary {
		background: #32d08f !important;
		border-radius: 45px !important;
		color: #172ca5 !important;
		font-weight: bold !important;
	}
	.tablas {
		background: white;
		padding: 15px;
		margin-top: 25px;
		padding-top: 25px;
	}
	.botonesBarra button {
		font-size: 12px
	}
	.botonesBarra svg {
		display: none;
	}
	.MuiPaper-root.MuiPaper-elevation0.MuiPaper-rounded {
		width: 100%;
	}
	.singup span.MuiIconButton-label {
		color: white;
	}
	.singup svg.MuiSvgIcon-root.MuiSelect-icon.MuiSelect-iconOutlined {
		color: white;
	}
	.select-style div {
		border-bottom: 1px solid white;
		border-radius: 0;
	}
	.MuiFormHelperText-root.Mui-error {
		color: white;
	}
	.MuiInput-underline.Mui-error:after {
		border-bottom-color: white;
	}
	.container {
		width: 95%;
		margin: 0 auto;
	}
	.bg-color .MuiPaper-root {
		background: transparent;
		box-shadow: none;
	}
	.divlogin .MuiInputBase-input {
		color: white;
	}
	.divlogin .MuiFormLabel-root {
		color: white;
	}
	.divlogin .MuiInput-underline:before {
		border-bottom: 1px solid rgb(255 255 255 / 42%);
	}
	.proceso .jsx-1636552777.design-phase__side-annotations {
		border: 0;
	}
	label#choose_persona {
		text-align: left;
	}
	.jsx-1636552777.design-phase__side-annotations span {
		font-size: 12px;
		line-height: 1.5;
	}
	.jsx-1636552777.design-phase__side-annotations {
		overflow-y: hidden;
		height: initial;
	}
	.proceso .jsx-1636552777.design-phase__side-annotation {
		width: 20%;
	}
	.recovery .paper {
		width: auto;
	}
	.regisLog {
		color: white;
	}
	.btnComp {
		width: 100%;
	}
	.bg-color .MuiPaper-root {
		background: transparent;
		box-shadow: none;
	}
	.divlogin .MuiInputBase-input {
		color: white;
	}
	.divlogin .MuiFormLabel-root {
		color: white;
	}
	.divlogin .MuiInput-underline:before {
		border-bottom: 1px solid rgb(255 255 255 / 42%);
	}
	form.divlogin a {
		color: white;
	}
	img.logo1 {
		display: none;
	}
	img.logo2 {
		display: inline;
	}
	.rolboxinside {
		width: 100%;
	}
	.inputWidth {
		width: 100%;
		margin-right: 0;
	}
	.paper h1 {
		color: white;
	}
	.paper .MuiInput-underline:before {
		border-color: white;
	}
	.login .MuiFormHelperText-root.Mui-error {
		color: white;
	}
	.login .MuiFormLabel-root.Mui-error {
		color: white;
	}
	.login .MuiFormLabel-root {
		color: white;
	}
	.bg-color .contLog {
		padding-top: 0;
		padding-bottom: 0;
	}
	.proceso {
		max-width: 100%;
	}
	.proceso .MuiPaper-elevation1 {
		width: 100%
	}
	.botonesBarra {
		width: 100%
	}
	.interProc {
		width: 100%;
		margin: 0 auto;
		padding-bottom: 115px;
	}
}

@media (max-width: 1600px) {
	.header2,
	.proceso,
	.botonesBarra {
		max-width: 1280px;
	}
}

/*LO QUE ESTÁ EN EL ARCHIVO PSDFKIT.CSS


@media (orientation: landscape) and (max-width: 992px){
    .PSPDFKit-3d3f556r9dtxzhzwpkudh2pg7u {
        max-width: 640px!important;
        width: 100%!important;
        height: fit-content!important;
        border-radius: 0!important;
        position: relative;
    bottom: 60px;
    }
    }

    .PSPDFKit-4zxfgg3dqppyj7x3hvrq1a15tj.PSPDFKit-4dsuqehkrkc2p5y777phf7behh,.PSPDFKit-4zxfgg3dqppyj7x3hvrq1a15tj{
        background-color: #3c20d7;
    text-transform: uppercase;
    border-color: #3c20d7;
    border-radius: 40px;
    font-weight: bold;
    color: white;
    }

    .PSPDFKit-2uhck5n5bq1sunwamjj2dhm8jg {
        color: #172ca5;
        font-weight: bold;
        background: transparent;
        border: 0;
    }
    .PSPDFKit-2uhck5n5bq1sunwamjj2dhm8jg:hover{
        background: transparent;
        text-decoration: underline;
        color:#172ca5;
    }
    .PSPDFKit-4zxfgg3dqppyj7x3hvrq1a15tj:hover{
        background: #172ca5;
        border-color: #172ca5;
    }
    .PSPDFKit-2uhck5n5bq1sunwamjj2dhm8jg.PSPDFKit-719u2z1ph6n9sbpd222a66j7bb{
       color: #172ca5;  
    }
    .PSPDFKit-2uhck5n5bq1sunwamjj2dhm8jg.PSPDFKit-4dsuqehkrkc2p5y777phf7behh{
        background:transparent;
    }


*/
