html, body, .unsubscribe-wrapper{
  height: 100%;
}
.unsubscribe-wrapper{
  display: flex;
  flex-flow: column nowrap;
  font-family: 'Open Sans', sans-serif;
}

.unsubscribe-content{
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 10%;
  font-size: 15px;
  font-weight: 300;
  flex: 1;
}
@media (min-width: 768px) {
  .unsubscribe-content{
    padding: 0 20%;
  }
}

.unsubscribe-content .status-banner{
  color: #172328;
}
.unsubscribe-content .status-banner .title{
  font-family: 'Noto Serif', serif;
  font-size: 24px;
  padding: 60px 0px 0px;
  font-weight: 600;
}
.unsubscribe-content .subtitle{
  padding: 20px 0px 10px;
  font-weight: 600;
}

.unsubscribe-content .status-banner.success,
.unsubscribe-content .status-banner.error{
  margin-top: 50%;
  font-size: 16px;
}
.unsubscribe-content .status-banner.success .subtitle,
.unsubscribe-content .status-banner.error .subtitle{
  font-weight: 400 !important;
}
.unsubscribe-content .status-banner.success .title-block{
  display: inline-flex;
  margin-left: -10px;
}
.unsubscribe-content .status-banner.success .icon{
  background: url(/assets/common/check.png) no-repeat;
  height: 30px;
  width: 60px;
  margin-top: 62px;
}

.unsubscribe-content .status-banner.success,
.unsubscribe-content .status-banner.error{
  text-align: center;
}
.unsubscribe-content .status-banner.error .title-block{
  display: flex;
}
.unsubscribe-content .status-banner.error .subtitle span{
  color: #00819F;
  font-weight: 600;
  cursor: pointer;
}
.unsubscribe-content .status-banner.error .icon{
  background: url(/assets/common/times-light.png) no-repeat;
  height: 25px;
  width: 35px;
  margin-top: 65px;
}

.unsubscribe-content .form-container section{
  margin-top: 6px;
}
.unsubscribe-content .form-container section .danger-text{
  color: #EB434F;
  display: block;
  font-size: 12px;
  margin-top: -20px;
  margin-left: 15px;
}
@media (max-width: 550px) {
  .unsubscribe-content .form-container section{
    margin-top: 16px;
  }
}

.unsubscribe-content .form-container section .input-field{
  height: auto;
  margin-bottom: 10px;
}
.unsubscribe-content .form-container section ui-radio{
  margin-right: 5px !important;
}
.unsubscribe-content .form-container section ui-radio label{
  outline: none;
  border-color: #C6C6C6 !important;
  width: 23px !important;
  height: 23px !important;
}

.unsubscribe-content .form-container section ui-radio label:hover{
  border-color: #00A3C9 !important;
}

.unsubscribe-content .form-container section ui-radio .checked{
  background-color: #00819F !important;
  border-color: #00819F !important;
  color: #00819F !important;
}
.unsubscribe-content .form-container section ui-radio .checked:hover{
  border-color: #00819F !important;
}

.unsubscribe-content .form-container section ui-radio .checked .radio-on{
  width: 40% !important;
  height: 40% !important;
  top: 55%;
  left: 53%;
  background-color: white;
}

.unsubscribe-content .form-container section label.radio-label{
  font-size: 16px;
  font-weight: 300;
}
@media (max-width: 550px) {
  .unsubscribe-content .form-container section label.radio-label{
    display: block;
    border-bottom: 1px solid gainsboro;
  }
}


.unsubscribe-content .form-container section textarea.form-control{
  resize: none;
  max-width: 350px;
  padding: 13px !important;
  border: 1px solid #808080 !important;
}
.unsubscribe-content .form-container section textarea.form-control.danger{
  border-color: #EB434F !important;
}
.unsubscribe-content .form-container section .error-icon{
  position: relative;
  top: -83px;
  left: 355px;
  height: 17px;
  width: 17px;
}
.unsubscribe-content .form-container section textarea.form-control:hover{
  background-color: #F3FAFF;
}
.unsubscribe-content .form-container section textarea.form-control:focus{
  border: 1px solid #77A0D4 !important;
  background-color: white;
}

.unsubscribe-content .form-container footer{
  margin-top: 25px;
}

.unsubscribe-content .form-container footer button{
  border: none;
  background-color: #00819F;
  color: white;
  padding: 10px 17px;
  font-size: 17px;
  font-weight: 400;
  border-radius: 4px;
  min-height: 40px;
}
.unsubscribe-content .form-container footer button:hover{
  border: none;
  background-color: #00A3C9;
}
.unsubscribe-content .form-container footer button:focus{
  outline: none;
}

.unsubscribe-content .lang-panel .lang-item{
  display: inline-block;
}

.unsubscribe-footer{
  width: 100vw;
  height: 113px;
  background-color: #E6E7E9;
  margin-top: 50px;
  text-align: center;
}

.unsubscribe-footer img {
  margin-top: 33px;
  max-width: 150px;
}

.unsubscribe-footer .footer-text{
  font-size: 12px;
  margin-top: 0px;
}

/*** spinner de carga ***/
.spinner-loader {
	width: 25px;
	height: 25px;
	margin: -3px auto;
	-webkit-animation: load3 1.4s infinite linear;
	animation: load3 1.4s infinite linear;
  }
  @-webkit-keyframes load3 {
	0% {
	  -webkit-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
	100% {
	  -webkit-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
  }
  @keyframes load3 {
	0% {
	  -webkit-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
	100% {
	  -webkit-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
}