



/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Raleway-Regular;
  src: url('../fonts/Raleway-Regular.ttf'); 
}

@font-face {
  font-family: Raleway-Medium;
  src: url('../fonts/Raleway-Medium.ttf'); 
}

@font-face {
  font-family: Raleway-SemiBold;
  src: url('../fonts/Raleway-SemiBold.ttf'); 
}

@font-face {
  font-family: Raleway-Bold;
  src: url('../fonts/Raleway-Bold.ttf'); 
}

/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}
@font-face {

  font-family: 'DINPro';
  src: url('/static/fonts/DINPro.woff2'); /* Replace with the correct URL for DINPro font from Google Fonts */

}

body, html {
	height: 100%;
  font-family: 'DINPro';
  color: #000000;
	/* font-family: Raleway-Regular, sans-serif; */
}

/*---------------------------------------------*/
a {
  color: #d60105;
	font-size: 16px;
	line-height: 1.7;
	/*color: #666666; */
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}
.checkbox-wraper {
  font-size: 35px;
  line-height: 42px;
}
.checkmark {
  width: 20px;
  height: 20px;
}
.input-box .checkmark {
  border-radius: 5px;
  width: 16px;
  height: 16px;
  top: 62%;
}
input:checked .checkmark {
  background: var(--red-bg);
  border: 1px solid #ccc;
}
a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
  color: #d60105;
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-family: Raleway-Regular;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
}

ul > li {
	margin: 0px;
	list-style-type: none;
}


/*---------------------------------------------*/
/* input {
	outline: none;
	border: none;
} */

textarea {
  outline: none;
  border: none;
}





label {
  display: block;
  margin: 0;
}

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}


/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
  font-family: Raleway-SemiBold;
  font-size: 13px;
  color: #555555;
  line-height: 1.4;
  text-transform: uppercase;
}

.txt2 {
  font-family: Raleway-Regular;
  font-size: 13px;
  color: #999999;
  line-height: 1.4;
}

.txt3 {
  font-family: Raleway-Regular;
  font-size: 13px;
  color: #555555;
  line-height: 1.4;
}


/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;
  /* height: 90vh; */ /* Set height to 85% of the viewport height */
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: right;
  align-items: center;
  padding: 5px; /* Adjust padding as needed */
  /* background-color: #000000ad; */
  /* overflow: hidden;  */
}
.wrap-login100 {
  width: 90%;
  padding: 5%;
  background: #fff;
  border-radius: 10px;
  position: relative;
}


/*==================================================================
[ Form ]*/

.login100-form {
  width: 100%;
}

.login100-form-title {
  font-family: Raleway-Medium;
  font-size: 30px;
  color: #555555;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  display: block;
}


.wrap-input-wrapper {
  padding: 0px 100px 100px;
}

.wrap-input100 {
  width: 100%;
  position: relative;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 35px;
}
.padding-t-b {
  padding: 50px 0;
}


/*---------------------------------------------*/
.input100 {
  font-size: 18px;
  display: block;
  width: 100%;
  background: transparent;
  height: 55px;
  padding: 0 25px 0 25px;
}
/*------------------------------------------------------------------
[ Focus Input ]*/


.input100:focus + .focus-input100 {
  visibility: visible;
  opacity: 1;

  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.eff-focus-selection {
  visibility: visible;
  opacity: 1;

  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/*---------------------------------------------*/
.btn-show-pass {
  font-size: 15px;
  color: #999999;
  position: absolute;
  height: 10%;
  cursor: pointer;
  /* margin: 3% -6%; */
  margin: 2% -3%;
}

.btn-show-pass:hover {
  color: #57b846;
}

.btn-show-pass.active {
  color: #57b846;
}

/*==================================================================
[ Restyle Checkbox ]*/

.input-checkbox100 {
  display: none;
}

.label-checkbox100 {
  font-family: Raleway-Regular;
  font-size: 13px;
  color: #999999;
  line-height: 1.4;

  display: block;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
}

.label-checkbox100::before {
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 13px;
  color: transparent;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  background: #fff;
  border: 1px solid #e6e6e6;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}



/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
input:focus {
  border: 1px solid #D60006;
  outline: none !important;
  border-color: #D60006;
}
.login100-form-btn {
  /* font-family: Raleway-Bold; */
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  min-width: 150px;
  height: 45px;
  width: 160px;
  background: #ed001b;
  border: 1px solid #ed001b;
  border-radius: 27px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

}

.login100-form-btn:hover {
  background-color: #d60105;
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate .btn-show-pass {
  visibility: hidden;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 3px;
  padding: 4px 25px 5px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 12px;
  pointer-events: none;

  font-family: Raleway-Medium;
  color: #c80000;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f12a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 18px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}
.header, header {
  height: 77px;
}
.header-login {
  height: 120px;
}
.homepage {
  background-image: url(/static/images/homepage.jpg); 
background-size: contain; 
height: 90vh; 
background-repeat: no-repeat;
background-position: center;
}
.homepage-div {
    position: absolute;
  padding-left: 25%;

  width: 100%;
  top: 55%;
}
.ar {
  font-weight: 700;padding: 16px 26px; margin-left: 2%; box-shadow: 2px 5px 5px 5px rgba(0, 0, 0, 0.22);
}
.login-box-wraper {
  display: inline-block;    
  padding: 10%;
  border-radius: 22px;
  border: 1px solid #ccc;
}
.login-ap {
  border: 1px solid var(--grey-color);
            background: var(--grey-color);
            color: var(--red-border);font-weight: 700;
            padding: 9px 44px; box-shadow: 2px 5px 5px 5px rgba(0, 0, 0, 0.22);
}
.login-ap:hover{
  border: 1px solid var(--grey-color);
            background: var(--grey-color);
            color: var(--red-border);font-weight: 700;
}
.homepage-min-div {
  display: none;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .homepage-div {
    padding-right: 2%;
    top: 70%;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1394px) {
  .homepage-div {
    padding-right: 9%;
    top: 75%;
  }
  .login-ap {
    padding: 5px 14px;
  }
  .login-ar {
    padding: 6px 16px;
  }
}
@media screen and (min-width: 1395px) and (max-width: 1722px) {
  .homepage-div {
    top: 55%;
    padding-left: 29%;
  }
}
@media screen and (max-width: 992px) {
  
}

@media screen and (max-width: 992px) {
  .homepage-min-div > .login100-form-btn {
    width: 45%;
    height: 60px;
    font-size: 20px;
    border-radius: 50px;
  }
  .login-box-wraper {
    padding: 2%;
  }
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
  .homepage {
    background-image: url(/static/images/homepage-mobile.jpg); 
    height: 72vh;
    justify-content: space-between;
    flex-direction: column;
    display: flex;
    background-size: 100% 100%;
  }
  

  .homepage-div > .ar{
    margin-left: 7%;
  }
  .wrap-input-wrapper{
    padding: 0px 0px;
  }
  .padding-t-b {
    padding: 25px 0;
  }
  .homepage-div {
    display: none; 
  }
  .homepage-min-div {
    text-align: center;
    padding-top: 2%;
    display: block;
    /* margin: 4%; */
  }
  .homepage-min-div > button {
    margin: 2%;
  }
}

@media screen and (max-width: 778px) {
  .homepage-div {
    display: none; 
  }
  .homepage-min-div {
    text-align: center;
    padding-top: 2%;
    display: block;
    /* margin: 4%; */
  }
  .homepage-min-div > button {
    margin: 2%;
  }
  .ar-btn {
    font-size: 16px;
    line-height: 20px;
    padding: 5px 10px;
  }
}
@media screen and (max-width: 620px) {
  .homepage-min-div > .login100-form-btn {
    font-size: 18px; 
    height: 70px;
  }
}
@media (max-width: 576px) {
  .wrap-login100 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .h1, h1{
    font-size: 20px;
  }
  .header-login {
    height: 140px;
  }
  
}



.error {
  color: red;
}
.success {
  color: green;
}

.center {
  text-align: center;
}
.loader-wrapper {
  left: 0;
  z-index: 9999;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: #e8e8e8;
  z-index: 6;
  opacity: 0.6;
  display: none;
}
.loader_img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 10%;
  margin-top: 20%;
}

.form-field {
  border-radius: 5px;
  height: 40px;
}

.field_required {
  font-size: 25px;
  top: -0.1em;
}

.div_scroll {
  overflow-y: scroll;
  text-align: center;
  height: 500px;
}
.verified {
  color: #57b846;
}
.unverified {
  color: red;
}
.small_card {
  border-radius: 8px;
  background-color: #ededed;
  padding: 15px;
  margin: 2%;
}
.btn-secondary {
	background-color: #adb5b9;
}


.ol_list {
  list-style-type: auto;
}
.copyright-v {
  font-size: 13px;
}



body, html {
  height: 100%;
  margin: 0;
  padding: 0;
}

.wrapper {
  display: flex;
  height: 100%;
  flex-direction: column;
  -ms-flex-direction: column;
}

/* header {
  height: 77px;
} */

main {
  flex: 1;
}

footer {
  height: 65px;
}

input[type="checkbox"] { 

  accent-color: #D60006; 

} 

:root {
  --whitebg: #fff; 
  --whitecolor: #fff;
  --whitebborder: #fff;
  
  --black-color:#000;
  --black-bg:#000;
  --black-border:#000;
  
  --red-bg:#D60006;
  --red-color:#D60006;
  --red-border:#D60006;

  --red-hover: #d60105;

  --grey-dark-bg:#434343;
  --grey-dark-color:#434343;
  --grey-dark-border:#434343;

  --grey-bg:#E2E2E2;
  --grey-border:#E2E2E2;
  --grey-color:#E2E2E2;

  --lightGreyBg:#F6F6F6;
  --greyColor2:#666666;
  --greyColor3:#888888;
  --common-font: helvetica;
  --blackColor2:#333333;
  
}


.ar-color{
  color: #D60006
}

/*font-family: DIN-Pro;
font-size: 16px;
    line-height: 20px;
    */

.section-title {
  font-size: 58px;
  line-height: 70px;
  margin-bottom: 30px;
  /* width: 45%; */
  font-weight: 310;
}
.title-with-icon {
  position: relative;
}
.no_data {
  padding-bottom: 40px;
}
.ar-select {
  border-radius: 30px;
  cursor: pointer;
  border: 1px solid var(--red-border);
}

.ar-btn {
  border-radius: 30px;
  cursor: pointer;
  border: 1px solid var(--red-border);
  color: var(--whitecolor);
  background: var(--red-bg);
  transition: all .4s;
  min-width: 170px;
  text-align: center;
  line-height: 26px;
  font-size: 21px;
  font-weight: 310;
  padding-left: 30px;
  padding-right: 30px;
}
.ar-btn:hover {
  color: var(--whitecolor);
  background: var(--red-hover);
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.14);
}
.ar-btn-cancel {
  border: 1px solid var(--whitebg);
  background: var(--whitebg);
  color: var(--red-border);
  border-radius: 30px;
}
.ar-btn-cancel:hover{
  border: 1px solid var(--whitebg);
  background: var(--whitebgg);
  color: var(--red-border);
  border-radius: 30px;
}
button.disabled:hover {
  cursor:not-allowed
}

.input-box {
  cursor: pointer;
  border: 1px solid #ccc;
  padding: 18px 30px;
  border-radius: 30px;
  font-size: 18px;
  width: 100%
}

.input-box:focus {
  border: 1px solid #D60006 !important;
}