*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

html, body {
  background-color: #ebeff2;
}

h2{
  font-size: 26px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.46px;
  text-align: center;
  color: #27394d;
  margin: 20px 0 24px 0;
}

.content{
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  min-height: 100vh;
  padding: 0;
  margin: 0;
}

/* HEADER */

.header{
  background-color: #171f2c;
  height: 104px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
  background-image: linear-gradient(to bottom, #30669e , #224b73 100%);

  /*linear gradient to IE old versions*/
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#30669e', endColorstr='#224b73',GradientType=0);
}

.header-logos{
  padding-top: 18px;
  display: flex;
  flex-direction: row;
  width: 75%;
  justify-content: space-between;
}

.header-left-image img{
  height: 64px;
}

.header-right-image img{
  height: 40px;
}

/* ALERT CONTAINER */

.alert-container{
  background-color: #ffe666;
  color: #333333;
}

.alert-container p{
  text-align: center;
  line-height: 25px;
}

.alert-messages{
  padding: 10px 0;
}

.alert-container a:link, .alert-container a:visited, .alert-container a:active {
  text-decoration: none;
  color: #333333;
}

.alert-container a:hover {
  text-decoration: underline;
  color: #333333;
}

.local-status {
  display: none;
  width: 288px;
  margin-top: 10px;
  padding: 8px 10px;
  color: #8a1c1c;
  background-color: #fce8e8;
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
}

.local-status--error {
  border-bottom: 1px solid #f3c4c4;
}

.blocked-link-modal {
  position: fixed;
  z-index: 1100;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(23, 31, 44, 0.58);
}

.blocked-link-modal__content {
  position: relative;
  width: min(430px, 100%);
  padding: 30px 32px 28px;
  border: 1px solid #e1e6ec;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(23, 31, 44, 0.24);
  text-align: center;
  animation: blocked-link-modal-in 0.25s ease-out;
}

.blocked-link-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: 0;
  color: #7b8794;
  background: transparent;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.blocked-link-modal__icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  border-radius: 50%;
  color: #ffffff;
  background: #c96b6b;
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
}

.blocked-link-modal__content h2 {
  margin: 0 0 12px;
  color: #27394d;
  font-size: 23px;
}

.blocked-link-modal__content p {
  margin: 0 0 18px;
  color: #596675;
  font-size: 14px;
  line-height: 1.55;
}

.blocked-link-modal__content textarea {
  display: block;
  width: 100%;
  min-height: 78px;
  margin-bottom: 16px;
  padding: 10px 12px;
  resize: vertical;
  border: 1px solid #c9d2dc;
  border-radius: 6px;
  color: #27394d;
  font: inherit;
  font-size: 14px;
}

.blocked-link-modal__content textarea:focus {
  outline: 2px solid rgba(48, 102, 158, 0.2);
  border-color: #30669e;
}

.blocked-link-modal__send {
  width: 100%;
  min-height: 40px;
  border: 0;
  border-radius: 4px;
  color: #ffffff;
  background: #30669e;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.blocked-link-modal__send:hover {
  background: #224b73;
}

.blocked-link-modal__send:disabled {
  opacity: 0.7;
  cursor: wait;
}

.blocked-link-modal__content .blocked-link-modal__confirmation {
  display: none;
  margin: 12px 0 0;
  color: #39704d;
  font-size: 13px;
}

@keyframes blocked-link-modal-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* MAIN CONTAINER */

.main-container{
  background-color: #ebeff2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  width: 100%;
}

.login{
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 50px 0px;
}

.recordar-password{
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 50px 0px 25px;
}

.left-container{
  width: 40%;
  text-align: center;
  padding: 32px;
  margin-right: 25px;
  border-radius: 5px;
  box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #bdbdbd;
  background-color: #fafafa;
  max-width: 600px;
}

.left-container.login-required {
  border-color: #30669e;
  box-shadow: 0 0 0 4px rgba(48, 102, 158, 0.18), 1px 3px 12px rgba(48, 102, 158, 0.24);
  animation: login-required-pulse 0.75s ease-in-out 3;
}

@keyframes login-required-pulse {
  50% {
    transform: scale(1.012);
  }
}

.left-container img{
  height: 124px;
}

.left-container p{
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.63;
  letter-spacing: -0.11px;
  text-align: center;
  color: #27394d;
}

.left-container form{
  width: 288px;
  margin-top: 34px;
  text-align: center;
}

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

.form p{
  margin: 8px 0px 2px 0px;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.1px;
  color: #27394d;
  text-align: left;
}

.form a:link, a:visited, a:active {
  text-decoration:none;
  color: #27394d;
}

.left-container input{
  width: 288px;
  height: 40px;
  padding: 10px;
  border-radius: 4px;
  border: solid 1px #979797;
  background-color: #ffffff;
}

.left-container span{
  margin-left: 90px;
  font-size: 12px;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 2;
  letter-spacing: -0.09px;
  color: #27394d;
}

.left-container button{
  width: 288px;
  height: 40px;
  margin: 30px 0px;
  padding: 8px 47px 8px 47px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.13px;
  border-radius: 4px;
  border: none;
  color: #fafafa;
  background-color: #30669e;
  cursor: pointer;
}

.right-container{
  width: 40%;
  text-align: center;
  padding: 32px;
  border-radius: 5px;
  box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #bdbdbd;
  background-color: #fafafa;
  max-width: 600px;
}

.right-container img{
  height: 124px;
}

.document-preview {
  position: relative;
  width: 210px;
  height: 142px;
  margin: 0 auto 22px;
  padding: 24px 22px;
  overflow: hidden;
  border: 1px solid #d6dce3;
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(39, 57, 77, 0.14);
  filter: blur(1.2px);
  transform: rotate(-2deg);
}

.document-preview__header,
.document-preview__line {
  height: 7px;
  margin-bottom: 10px;
  border-radius: 3px;
  background: #b8c4d0;
}

.document-preview__header {
  width: 48%;
  height: 10px;
  margin-bottom: 18px;
  background: #7f9ab4;
}

.document-preview__line--long {
  width: 90%;
}

.document-preview__line--medium {
  width: 74%;
}

.document-preview__line--short {
  width: 55%;
}

.document-preview__stamp {
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 5px 8px;
  border: 2px solid #c96b6b;
  color: #c96b6b;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  transform: rotate(-8deg);
}

.right-container button{
  margin: 40px 0 48px 0;
  padding: 7px 23px 9px 25px;
  width: 288px;
  min-height: 40px;
  height: auto;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.13px;
  border-radius: 3px;
  border: none;
  color: #fafafa;
  background-color: #30669e;
  cursor: pointer;
}

.hard-login-loading {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 288px;
  min-height: 40px;
  margin: 40px auto 48px;
  color: #30669e;
  font-size: 15px;
  font-weight: 600;
}

.hard-login-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid #d7e0ea;
  border-top-color: #30669e;
  border-radius: 50%;
  animation: hard-login-spinner 0.8s linear infinite;
}

@keyframes hard-login-spinner {
  to {
    transform: rotate(360deg);
  }
}

.right-container p{
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.63;
  letter-spacing: -0.11px;
  text-align: center;
  color: #27394d;
}

.right-container-text{
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.71;
  letter-spacing: -0.13px;
  text-align: center;
  color: #757575;
}

.disable-container{
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

.disable-container p, .disable-container h2, .disable-container span, .disable-container a{
  color: #b8b8b8 !important;
}

.disable-container input{
  border: solid 1px #dddddd;
}

.disable-container button{
  background-image: none;
  filter: none;
  background-color: #b8b8b8;
  cursor: none;
}

.disable-span a{
  color: #b8b8b8;
}

.disable-button{
  text-align: center;
  margin: 40px auto 48px;
  padding: 7px 23px 9px 25px;
  width: 288px;
  height: 40px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.13px;
  border-radius: 3px;
  border: none;
  color: #fafafa;
  background-color: #b8b8b8;
  cursor: none;
}

#img-left-container-disabled, #img-right-container-disabled, #soft-login-disable-button, #hard-login-disable-button, #seleccionar-notaria-disable-button{
  display: none;
}

.footer{
  background-color: #fafafa;
  height: 88px;
  width: 100%;
}

.footer-logos{
  margin: auto;
  width: 75%;
  padding-top: 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.footer-logos img {
  width: 24px;
}

.left-footer li{
  list-style-type: none;
  display: inline;
  padding-right: 5px;
  font-size: 16px;
  font-weight: 200;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.11px;
  color: #666666;
  margin-right: 25px;
}

.left-footer li, .left-footer a:link, .left-footer a:visited, .left-footer a:active {
  text-decoration:none;
  color: #666666;
}

.left-footer a:hover {
  color: #27394d;
}

.footer-phone img{
  width: 23px;
  height: 22px;
  margin-right: 15px;
  vertical-align: middle;
}

.footer-mail img{
  width: 24px;
  height: 16px;
  margin-right: 15px;
  vertical-align: middle;
}

.footer-support img{
  width: 24px;
  height: 21px;
  margin-right: 15px;
  vertical-align: middle;
}

.right-footer img{
  width: 116.4px;
  height: 44px;
  object-fit: contain;
}

/* NOTARIA.HTML */

.notaria{
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 50px 0px;
}

.notaria-container{
  width: 60%;
  text-align: center;
  padding: 32px;
  margin-right: 25px;
  border-radius: 5px;
  box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #bdbdbd;
  background-color: #fafafa;
}

.notaria-imagen{
  height: 124px;
  margin-top: 50px;
}

.notaria-container a{
  text-decoration:none;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.11px;
  text-align: center;
  color: "#27394d";
  margin-left: 8px;
}

.notaria-container p{
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.63;
  letter-spacing: -0.11px;
  text-align: center;
  color: #27394d;
}

.notaria-container form{
  margin: 34px 0 106px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.notaria-container .form select{
  padding: 8px 10px;
  width: 600px;
  height: 40px;
  border-radius: 4px;
  border: solid 1px #bbbbbb;
  background-color: #ffffff;
  font-size: 16px;
  margin-bottom:48px;
  background-image: url('../img/arrow-select.png'), linear-gradient(to bottom, #ffffff 0%,#f7f7f7 100%);
  background-repeat: no-repeat, repeat;
  background-position: right .7em top 50%, 0 0;
  background-size: .85em auto, 100%;
}

select::-ms-expand {	display: none; }
select{
    -webkit-appearance: none;
    appearance: none;
}

.notaria-container input{
  width: 288px;
  height: 40px;
  padding: 10px;
  border-radius: 4px;
  border: solid 1px #979797;
  background-color: #ffffff;
}

.notaria-container button{
  width: 288px;
  height: 40px;
  padding: 8px 47px 8px 47px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.13px;
  border-radius: 4px;
  border: none;
  color: #fafafa;
  background-color: #30669e;
  cursor: pointer;

}

.disable-notaria-button{
  text-align: center;
  padding: 7px 23px 9px 25px;
  width: 288px;
  height: 40px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.13px;
  border-radius: 3px;
  border: none;
  color: #fafafa;
  background-color: #b8b8b8;
  cursor: none;
}

.volver-container{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.volver-container img{
  width: 16px;
  height: 14px;
}

.volver-container a{
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.11px;
  text-align: center;
  color: #27394d;
  margin-left: 8px;
  text-decoration: none;
}

/* CONTRA-ERROR.HTML */

.contra-error{
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 50px 0px;
}

.contra-error-container{
  width: 60%;
  text-align: center;
  padding: 32px;
  margin-right: 25px;
  border-radius: 5px;
  box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #bdbdbd;
  background-color: #fafafa;
}

.contra-error-imagen{
  height: 124px;
  margin-top: 50px;
}

.contra-error-container a{
  text-decoration:none;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.11px;
  text-align: center;
  color: "#27394d";
  margin-left: 8px;
}

.contra-error-container p{
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.63;
  letter-spacing: -0.11px;
  text-align: center;
  color: #27394d;
  margin-bottom: 104px;
}

.contra-error-container a:link, .alert-container a:visited, .alert-container a:active {
	font-weight: bold;
}

/* CREDENCIALES-ERROR.HTML */

.credenciales-error{
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 50px 0px;
}

.credenciales-error-container{
  width: 60%;
  text-align: center;
  padding: 32px;
  margin-right: 25px;
  border-radius: 5px;
  box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #bdbdbd;
  background-color: #fafafa;
}

.credenciales-error-imagen{
  height: 124px;
  margin-top: 8px;
}

.credenciales-error-container a{
  text-decoration:none;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.11px;
  text-align: center;
  color: "#27394d";
  margin-left: 8px;
}

.credenciales-error-container p{
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.63;
  letter-spacing: -0.11px;
  text-align: center;
  color: #27394d;
  margin-bottom: 78px;
}


@media (max-width: 1024px){

  .left-container{
    width: 45%;
  }

  .right-container{
    width: 45%;
  }

  .left-footer li{
    font-size: 14px;
    margin-right: 12px;
  }

  .notaria-container .form select{
    width: 448px;
  }
}

@media (max-width: 768px){

  .login{
    flex-direction: column;
    align-items: center;
  }
  
  .recordar-password{
    flex-direction: column;
    align-items: center;
  }
  
  .left-container{
    width: 90%;
    margin-right: 0;
    margin-bottom: 25px;
  }
  
  .right-container{
    width: 90%;
  }

  .footer-logos{
    padding: 16px 0;
  }
  .left-footer li {
    display: block;
    padding-bottom: 5px;
  }

  .footer-phone img{
    height: 15px;
  }

  
  .notaria-container .form select{
    width: 208px;
  }

  .disable-notaria-button {
    width: 218px;
  }  
}

@media (max-width: 425px){

  .alert-messages {
    padding: 10px 14px;
    font-size: 14px;
  }
  
  .footer {
  	height: 118px;
  }

  .left-footer li{
    font-size: 12px;
  }

  .footer-phone img{
    width: 23px;
    height: 14px;
    margin-right: 10px;
  }
  
  .footer-mail img{
    width: 23px;
    height: 15px;
    margin-right: 10px;
  }
  
  .footer-support img{
    width: 23px;
    height: 20px;
    margin-right: 10px;
  }
}

/* CONTRA-RECUPERACION.HTML*/

.path-contra{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
  margin-top: 16px;
  background-color: #eeeeee;
  border-radius: 200px 200px 200px 200px;
  -moz-border-radius: 200px 200px 200px 200px;
  -webkit-border-radius: 200px 200px 200px 200px;
}

.path-contra p{
  font-weight: 800;
  font-size: 14px;
}

.path-separator{
  border-top: 1px solid black;
  border-right: 1px solid black;
  height: 5px;
  width: 5px;
  margin: 0px 10px;
  -ms-transform: rotate(35deg); /* IE 9 */
    -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
    transform: rotate(45deg);
}

/*Modales y nuevos elementos del footer */

.welcome-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
  background-color: #dfe6ee;
}

.welcome-modal::before {
  position: absolute;
  content: "";
  inset: -32px;
  background-color: #224b73;
  background-image: url("../img/logo-portal.png");
  background-position: center;
  background-size: min(980px, 90vw) auto;
  background-repeat: no-repeat;
  filter: blur(9px);
  transform: scale(1.08);
  opacity: 0.78;
}

.welcome-modal__content {
  position: relative;
  z-index: 1;
  width: min(410px, 100%);
  min-height: 280px;
  padding: 38px 34px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  color: #171f2c;
  border-radius: 18px;
  background-color: #ffffff;
  box-shadow: 0 16px 42px rgba(23, 31, 44, 0.2);
}

.welcome-modal__logo {
  width: 120px;
  height: auto;
  padding: 10px;
  border-radius: 8px;
  background-color: #224b73;
}

.welcome-modal__content h1 {
  margin: 0;
  color: #171f2c;
  font-size: 28px;
  font-weight: 600;
}

.welcome-modal__content p {
  margin: 0;
  color: #3d4650;
  font-size: 16px;
  line-height: 1.5;
}

.welcome-modal__content button {
  width: min(340px, 100%);
  min-height: 42px;
  padding: 9px 24px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background-color: #30669e;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.welcome-modal__content button:hover {
  background-color: #224b73;
}

.welcome-modal__content button:disabled {
  cursor: wait;
}

.welcome-modal__loading {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  color: #30669e;
  font-size: 15px;
  font-weight: 600;
}

.welcome-modal__spinner {
  width: 20px;
  height: 20px;
  border: 3px solid #d7e0ea;
  border-top-color: #30669e;
  border-radius: 50%;
  animation: welcome-spinner 0.8s linear infinite;
}

@keyframes welcome-spinner {
  to {
    transform: rotate(360deg);
  }
}

.footer__footer-diagnose--img, .footer__footer-downloads--img {
  vertical-align: middle;
  width: 24px;
  height: 21px;
  margin-right: 15px;
}

.footer__diagnose  a:hover, .footer__downloads  a:hover {
  color: #333333;
}

.footer__modal {
  display: none;
  position: fixed;
  background-color: rgba(0,0,0,0.3);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  align-items: center;
  justify-content: center;
}

.footer__modal--content {
  background-color: #ffffff;
  border-radius: 8px;
  width:800px;

}

.footer__modal--content--header {
  padding: 12px 16px 12px 24px;
  color: #090909;
  display:flex;
  align-items: flex-start;
  align-self: stretch;
}

.footer__modal--content--header-title {
  margin-right: auto;
  font-weight: 600;
}

.footer__modal--content--header--close  a  img {
  width: 24px;
  height: 24px;
}

.footer__modal--content--body {
  display:flex;
  align-items: flex-start;
  padding: 12px 16px 12px 24px;
}

.footer__modal--content--body-content {
  font-size: 13px;
  max-height: 391px;
  overflow-y: auto;
}

.footer__modal--content--body-content::-webkit-scrollbar {
  width: 16px;
}

.footer__modal--content--body-content::-webkit-scrollbar-thumb {
  background-color: #DEE0E3;
  border: 4px solid #fff;
  border-radius: 8px;
}

.footer__modal--content--footer {
  padding: 16px 24px;
  display:flex;
  align-items: center;
  justify-content: center;
}

.footer__modal--content--footer-button {
  background-color: #9199A1;
  border-radius: 4px;
  cursor:pointer;
  height: 32px;
  padding: 0px 12px;
}

.footer__modal--content--footer-button:hover {
  background-color: #ABB2BA;
}

.footer__modal--content--footer-button  a {
  text-decoration: none;
  font-weight: 600;
  color: #FFFFFF;
  font-size: 13px;
  line-height: 32px;
}

.footer__modal--content-body-content-dynamic-row {
  display:flex;
  padding-top: 16px;
  padding-bottom: 16px;
}

.footer__modal--content-body-content-dynamic--block {
  border-bottom: 1px solid #D8D8D8;
}

.footer__modal--content-body-content-dynamic-row--title {
  margin-right: auto;
  font-size:14px;
  font-weight: 400;
  display:flex;
  cursor:pointer;
}

.footer__modal--content-body-content-dynamic-row--title p {
  padding: 0 16px 0 4px;
}

.footer__modal--content-body-content-dynamic-row--button {
  padding-left: 16px;
  padding-right: 8px;
  height: 32px;
}


.footer__modal--content-body-content-button--outline {
  color: #4B91E2 !important;
  font-size: 13px;
  font-weight: 600;
  line-height: 24px;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid #4B91E2;
  text-decoration: none !important;
  padding-left: 4px;
  padding-right: 8px;
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.footer__modal--content-body-content-dynamic-row--content {
  display: none;
  padding: 0px 0px 16px 32px;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}


.footer--arrow {
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
  background-image: url("../img/footer_navigation_closed.svg");
}


.span-arrow-opened {
  background-image: url("../img/footer_navigation_opened.svg") !important;
}