.response{
	width: 100%;
	height: 35px;
	margin-bottom: 9px;
}
#btnIconContainer {
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}
.msg{
	width: 100%;
	color: #ec1f00;
	font-weight: 800;
	padding: 4px;
	text-align: center;
	font-size: 13px;
	border-radius: 4px;
}
.msg-sucess{
	width: 100%;
	color: #f7f7f7;
	font-weight: 600;
	padding: 4px;
	background: #0097eb;
	text-align: center;
	font-size: 13px;
	border-radius: 4px;
	margin-bottom: 1rem !important;
}

.msg-danger {
    width: 100%;
    color: #ffffff;
    font-weight: 800;
    padding: 4px;
    text-align: center;
    font-size: 13px;
    border-radius: 4px;
    background: #ec1f00;
}

 .ivalid {
      padding-right: calc(1.49em + 1rem) !important;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23EC1F00'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23EC1F00' stroke='none'/%3e%3c/svg%3e");
      background-repeat: no-repeat !important;
      background-position: right calc(0.3725em + 0.25rem) center !important;
      background-size: calc(0.745em + 0.5rem) calc(0.745em + 0.5rem) !important;
      border: 1px solid #ec1f00 !important;
      animation: piscar 1s infinite;
    }

    .containervalidate {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 200px;
      width: 100%;
      background-color: #f0f0f0;
      text-align: center;
      animation: fadein 2s forwards;
      border-radius: 13px;
    }

    .step {
      display: none;
    }

    .active {
      display: block;
    }

    @keyframes piscar {
      0% {
        border-color: red;
      }
      50% {
        border-color: transparent; 
      }
      100% {
        border-color: red; 
      }
    }

    #loading-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #f5f7fa;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }