@import url('https://fonts.googleapis.com/css?family=Merriweather:400,700,700i,900i&display=swap');
@font-face {
  font-family: 'Inter';
  font-style:  normal;
  font-weight: 400;
  font-display: swap;
  src: url("webfonts/Inter-Regular.woff2?v=3.11") format("woff2"),
       url("webfonts/Inter-Regular.woff?v=3.11") format("woff");
}
@font-face {
  font-family: 'Inter';
  font-style:  normal;
  font-weight: 800;
  font-display: swap;
  src: url("webfonts/Inter-ExtraBold.woff2?v=3.11") format("woff2"),
       url("webfonts/Inter-ExtraBold.woff?v=3.11") format("woff");
}
@font-face {
  font-family: 'Inter';
  font-style:  italic;
  font-weight: 800;
  font-display: swap;
  src: url("webfonts/Inter-ExtraBoldItalic.woff2?v=3.11") format("woff2"),
       url("webfonts/Inter-ExtraBoldItalic.woff?v=3.11") format("woff");
}
@font-face {
  font-family: 'Inter';
  font-style:  normal;
  font-weight: 500;
  font-display: swap;
  src: url("webfonts/Inter-Medium.woff2?v=3.11") format("woff2"),
       url("webfonts/Inter-Medium.woff?v=3.11") format("woff");
}
@font-face {
  font-family: 'Inter';
  font-style:  italic;
  font-weight: 500;
  font-display: swap;
  src: url("webfonts/Inter-MediumItalic.woff2?v=3.11") format("woff2"),
       url("webfonts/Inter-MediumItalic.woff?v=3.11") format("woff");
}
*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}
body{margin: 0;padding: 0; font-family: 'Inter', sans-serif;color:#213331;}

.login-container {
	width: 525px;
	background: #fff;
	position: fixed;
	margin: 0 auto;
	left: 0;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.login-container::before {
	content: "";
	display: block;
	border-top: 50px solid #fff;
	width: calc(100% - 1px);
	height: auto;
	position: absolute;
	top: -25px;
	transform: skewY(-5deg);
}
.login-container::after {
	border-bottom: 50px solid #fff;
	content: "";
	display: block;
	width: calc(100% - 1px);
	height: auto;
	position: absolute;
	bottom: -25px;
	transform: skewY(-4deg);
}
.cont1{
	position: relative;
	height: 100%;
	overflow: auto;
}
.login-box {
	padding: 50px;
}
.login-wrapper{
	background:url("../images/bg-img.png") no-repeat center top;
	background-size: cover;
	width: 100%;
	height: 100vh;
}
.error{
	/*background-color: #FFC0A4 !important; */
	color: #FF2E63 !important;
	/*border-color: #EB5E28 !important;*/
	border-bottom: 1px solid #FF2E63 !important;
}
.error .login__input{
	color: #FF2E63 !important;
}
.error_message{
	color: #FF2E63 !important;
	visibility: hidden;
	padding-bottom:10px;
}
.show_error{
	visibility: visible;
}
.login-logo {
	text-align: center;
	padding-bottom: 20px;
}
.text-hading {
	text-align: center;
	font-size: 2.325rem;
     font-family: 'Inter', sans-serif;
    padding-bottom: 20px;
}
.login-box .login__row{
	padding-bottom: 25px;
}
.login-box .form-control {
	width: 100%;
	height: 55px;
	-webkit-box-shadow: 0px 2px 21px 0 rgba(0,0,0,.1);
	-moz-box-shadow: 0px 2px 21px 0 rgba(0,0,0,.1);
	box-shadow: 0px 2px 21px 0 rgba(0,0,0,.1);
	border: none;
	/* padding: 0 20px; */
	font-size: 1.25rem;
	color: rgba(145, 80, 35,.5);
	outline: none;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;	
}

.login-box .login__submit {
	background: #213331;
	color: #E8E3D8;
	border: none;
	display: block;
	width: 100%;
	min-height: 70px;
	font-size: 1.685rem;
	cursor:pointer;
	font-family: 'Inter', sans-serif;
}
.text-forget a {
	font-size: 1.175rem;
	color: rgba(145, 80, 35,.5);
	padding-bottom: 20px;
	display: block;
}

.login__signup a, .login__signup{
	font-size: 1rem;
	color: rgba(145, 80, 35,.5);
	padding-bottom: 20px;
}
.login-box hr {
	color: #dbdbdb;
	box-shadow: initial;
	margin: 30px 0;
	border-color: #dbdbdb;
	border-width: 1px;
}
.login__submit:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -1.5rem;
  margin-top: -1.5rem;
  width: 3rem;
  height: 3rem;
  border: 2px dotted #915023;
  border-radius: 50%;
  border-left: none;
  border-bottom: none;
  -webkit-transition: opacity 0.1s 0.4s;
  transition: opacity 0.1s 0.4s;
  opacity: 0;
}
button {   
    outline: 0 none;
}
/*
.login__submit.processing {
  width: 0rem;
  font-size: 0;
}
*/
.login__submit.processing:after {
  opacity: 1;
  -webkit-animation: rotate 0.5s 0.4s infinite linear;
          animation: rotate 0.5s 0.4s infinite linear;
}
.login__submit.success {
  -webkit-transition: opacity 0.1s 0.3s, background-color 0.1s 0.3s, -webkit-transform 0.3s 0.1s ease-out;
  transition: opacity 0.1s 0.3s, background-color 0.1s 0.3s, -webkit-transform 0.3s 0.1s ease-out;
  transition: transform 0.3s 0.1s ease-out, opacity 0.1s 0.3s, background-color 0.1s 0.3s;
  transition: transform 0.3s 0.1s ease-out, opacity 0.1s 0.3s, background-color 0.1s 0.3s, -webkit-transform 0.3s 0.1s ease-out;
  -webkit-transform: scale(30);
          transform: scale(30);
  opacity: 0.9;
}
.login__submit.success:after {
  -webkit-transition: opacity 0.1s 0s;
  transition: opacity 0.1s 0s;
  opacity: 0;
  -webkit-animation: none;
          animation: none;
}
svg {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  overflow: visible;
}
label {
  position: relative;
}

label > .svg-icon {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  color: rgba(145, 80, 35,.5);
}

label > input {
  padding-left: calc(1em + 10px + 8px); /* icon width + icon padding-left + desired separation*/
  height: 2em;
}

.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
.se-pre-con {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: url('../img/newdashboard/Preloader_3.gif') center no-repeat #fff;
}
.form-control:focus, .single-line:focus {
    border-color: #915023 !important;
}
input:active, input:focus {
    -webkit-animation: fade 0.55s ease-in;
    -moz-animation: fade 0.55s ease-in;
    animation: fade 0.55s ease-in;
    border: 1px solid #915023 !important;
}
.form_error input,.form_error input:active,.form_error input:focus {
    -webkit-animation: fade 0.55s ease-in;
    -moz-animation: fade 0.55s ease-in;
    animation: fade 0.55s ease-in;
    border: 1px solid red !important;
}
.radio-btn {display: block;font-size:.875rem;position: relative;padding-left: 35px;line-height: 18px;margin-bottom: 12px;cursor: pointer;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;font-weight: 500}
.radio-btn input{position: absolute;opacity: 0;cursor: pointer;}
.radio-btn .checkmark {position: absolute;top: 0;left: 0;height: 18px;width: 18px;background-color: transparent;border: 1px solid rgba(145, 80, 35,.5);border-radius: 2px;}
.radio-btn .checkmark:after {top: 0px;left: 2px;content: "\f00c";position: absolute;display: none;font-family:"font awesome 5 pro"; color: #E8E3D8;}
.radio-btn:hover input ~ .checkmark {background-color: transparent;}
.radio-btn  input:checked ~ .checkmark {background-color: #213331;border: none;}
.radio-btn  input:checked ~ .checkmark:after {display: block;}
/*
  SVG SpriteSheet
*/

.spritesheet {
  display: none;
}

.svg-icon {
  cursor: pointer;
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 1;
  stroke: rgba(145, 80, 35,.5);
  fill: none;  
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: rgba(145, 80, 35,.5);
}
::-moz-placeholder { /* Firefox 19+ */
  color: rgba(145, 80, 35,.5);
}
:-ms-input-placeholder { /* IE 10+ */
  color: rgba(145, 80, 35,.5);
}
:-moz-placeholder { /* Firefox 18- */
  color: rgba(145, 80, 35,.5);
}
.ripple {
  position: absolute;
  width: 15rem;
  height: 15rem;
  margin-left: -7.5rem;
  margin-top: -7.5rem;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-animation: animRipple 0.4s;
          animation: animRipple 0.4s;
  border-radius: 50%;
}
@-webkit-keyframes animRipple {
  to {
    -webkit-transform: scale(3.5);
            transform: scale(3.5);
    opacity: 0;
  }
}
@-webkit-keyframes fade {
  0% {
    box-shadow: 0 0 0 0 transparent;
  }
  5% {
    box-shadow: 0 0 10px 10px rgba(145, 80, 35, 0.1), 0px 0px 10px 10px rgba(145, 80, 35, 0.1);
  }
  80% {
    box-shadow: 0 0 10px 10px  transparent, 0 0 10px 40px  transparent;
  }
}
@-moz-keyframes fade {
  0% {
    box-shadow: 0 0 0 0 transparent;
  }
  5% {
    box-shadow: 0 0 10px 10px rgba(145, 80, 35, 0.1), 0px 0px 10px 10px rgba(145, 80, 35, 0.1);
  }
  80% {
    box-shadow: 0 0 10px 10px  transparent, 0 0 10px 40px  transparent;
  }
}
@keyframes fade {
  0% {
    box-shadow: 0 0 0 0 transparent;
  }
  5% {
    box-shadow: 0 0 10px 10px rgba(145, 80, 35, 0.1), 0px 0px 10px 10px rgba(145, 80, 35, 0.1);
  }
  80% {
    box-shadow: 0 0 10px 10px  transparent, 0 0 10px 40px  transparent;
  }
}
@keyframes animRipple {
  to {
    -webkit-transform: scale(3.5);
            transform: scale(3.5);
    opacity: 0;
  }
}
@-webkit-keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.login__icon {
  margin-bottom: -0.4rem;
  margin-right: 0.5rem;
}
.login__icon.name {
  stroke-dasharray: 73.50196075439453;
  stroke-dashoffset: 73.50196075439453;
  -webkit-animation: animatePath 2s 0.5s forwards;
          animation: animatePath 2s 0.5s forwards;
}
.login__icon.pass {
  stroke-dasharray: 92.10662841796875;
  stroke-dashoffset: 92.10662841796875;
  -webkit-animation: animatePath 2s 0.5s forwards;
          animation: animatePath 2s 0.5s forwards;
}
@-webkit-keyframes animatePath {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes animatePath {
  to {
    stroke-dashoffset: 0;
  }
}
.preloader{background: rgba(221, 224, 224, .8); height: 100vh; position: fixed; width: 100%; z-index: 100000; margin-top: 0px;}
/*.preloader .content{margin: 21% auto; width: 200px; padding: 25px 10px; word-wrap: break-word; text-align: center; border: solid 2px #18A689; background: #fff; text-transform: uppercase; font-weight: 600; color: #18A689; border-radius: 10px; -moz-border-radius: 10px; -webkit-border-radius: 10px; -ms-border-radius: 10px;}*/
.preloader .content{margin: 21% auto;  padding: 25px 10px; text-align: center; text-transform: uppercase; font-weight: 800; -moz-border-radius: 10px; -webkit-border-radius: 10px; -ms-border-radius: 10px;}
/*.preloader .content #first_title{margin:  10px 0 0;border-bottom: 1px solid #18A689;}*/
.preloader .content #first_title{margin:  10px 0 0; color: #333838; font-size: 1.5rem;}
 .sk-spinner-wave.sk-spinner {
  margin: 0 auto;
  width: 50px;
  height: 45px;
  text-align: center;
  font-size: .625rem;
}
.sk-spinner-wave div {
  background-color: #915023;
  height: 100%;
  width: 14px;
  display: inline-block;
  -webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
  animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
}
.sk-spinner-wave .sk-rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.sk-spinner-wave .sk-rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.sk-spinner-wave .sk-rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.sk-spinner-wave .sk-rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
@-webkit-keyframes sk-waveStretchDelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
@keyframes sk-waveStretchDelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
  .hidden{display: none;}
  .abcRioButtonIcon{padding: 5px 13px !important;}
  .abcRioButtonIconImage {
        width: 30px !important;
  height: 33px !important;
  }
  .abcRioButton {width:100% !important;}
  .text-center{ text-align: center; }
@media only screen and (max-width:1440px){
.login-container {
    width: 400px;
 }   	
 .login-logo{padding-bottom: 15px;}
.login-box {padding: 30px;}
.text-hading{font-size: 1.5rem;padding-bottom: 15px;}
.login-box .form-control {width: 100%;height: 42px;font-size: 1rem;}
.login-box .login__row {padding-bottom: 15px;}
.text-forget a{font-size: 1rem;padding-bottom: 15px;}
.login-box .login__submit {width: 100%;min-height: 42px;font-size: 1.25rem;}
.radio-btn{margin-bottom: 0px;}
.login__signup a, .login__signup {
    font-size: .875rem;
    padding-bottom: 15px;
}
.login-box hr{margin: 15px 0;}
}
@media only screen and (max-width: 479px) {
.login-container {
	width: 100%;
}	
.login-box{padding: 20px;}
.login-logo img{max-width: 60px;}
.text-hading {
    font-size: 1.275rem;
}
.login-container::before{top:-20px;border-top: 40px solid #fff;}    
}	