/*
//  ===== IMPORT GOOGLE FONTS =====  //
*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@500;900&display=swap');

/*
//  ===== SCROLLBAR SETTINGS =====  //
*/
::-webkit-scrollbar {
    width: 6px;
    height: max-content;

}

::-webkit-scrollbar-thumb {
    background: orangered;
    border-radius: 16px;
    box-shadow: inset 2px 2px 2px hsla(0, 0%, 100%, .25), inset -2px -2px 2px rgba(0, 0, 0, .25);
}

::-webkit-scrollbar-track {
    background: linear-gradient(90deg, #434343, #434343 1px, #1E1E28 0, #1E1E28);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    cursor: pointer;
    background: orange;
}

/*
//  ===== BODY SETTINGS =====  //
*/
*,
*::before,
*::after,
html,
body {
    overflow-x: hidden;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.form_container{
  width: 100%;
  height: 100vh;
  border: 2px solid green;
  display: flex;
  align-items: start;
  justify-content: center;
}



/* ALERT CONTAINER */
.modal_message_alert_container {
  position: absolute;
  width: 100%;
  height: 100%;
    background-color: rgba(39, 39, 39, 0.514);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 600;
}
.modal_message_alert_window {
  width: 500px;
  height: 500px;
  border-radius: 20px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  font-family: 'Alexandria', sans-serif;
  font-size: 15px;
  text-align: center;
  color: black;
  padding: 30px;
}

.ok_btn {
  width: 50%;
  height: 50px;
  background-color: orangered;
  border-radius: 5px;
  font-family: 'Alexandria', sans-serif;
  color: white;
  border: none;
}

.ok_btn:hover {
  cursor: pointer;
  background-color: orange;
}
.modal_icon_success{
  color: yellowgreen;
  font-size: 100px;
}
.modal_icon_error{
  color: rgb(216, 84, 84);
  font-size: 100px;
}
/* LOADIN SCREEN */
.loader_container {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1500;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.loader_content {
  width: 300px;
  height: 300px;
  border-radius: 20px;
  background-color: #3a3a46;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  font-family: 'Alexandria', sans-serif;
  font-size: 20px;
}

@keyframes arrow-spin {
  100% {
      transform: rotate(179deg);
  }
}

@-webkit-keyframes arrow-spin {
  100% {
      -webkit-transform: rotate(179deg);
  }
}

.psoload,
.psoload *,
.psoload *:before,
.psoload *:after {
  box-sizing: border-box;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.psoload {
  position: relative;
  margin: 30px auto;
  height: 150px;
  width: 150px;
}

.psoload .straight,
.psoload .curve {
  position: absolute;
  top: 17.5%;
  left: 17.5%;
  width: 65%;
  height: 65%;
  border-radius: 100%;
  animation: arrow-spin 0.85s cubic-bezier(0.2, 0.8, 0.9, 0.1) infinite;
  -webkit-animation: arrow-spin 0.85s cubic-bezier(0.2, 0.8, 0.9, 0.1) infinite;
}

.psoload .straight:before,
.psoload .straight:after {
  content: '';
  position: absolute;
  width: 15%;
  border-bottom: 10px solid orange;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.psoload .straight:before {
  top: 5px;
  left: 5px;
}

.psoload .straight:after {
  bottom: 5px;
  right: 5px;
}

.psoload .curve:before,
.psoload .curve:after {
  content: '';
  position: absolute;
  width: 45px;
  height: 10px;
  border: solid 3px transparent;
  border-top-color: orangered;
  border-radius: 50%/10px 10px 0 0;
  z-index: 90001;
}

.psoload .curve:before {
  transform: rotate(-63deg) translateX(-27px) translateY(-4px);
  -webkit-transform: rotate(-63deg) translateX(-27px) translateY(-4px);
}

.psoload .curve:after {
  bottom: 5px;
  right: 5px;
  transform: rotate(115deg) translateX(-26px) translateY(-12px);
  -webkit-transform: rotate(115deg) translateX(-26px) translateY(-12px);
}

.psoload .center {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 60%;
  border-radius: 100%;
  border: 3px solid orangered;
}

.psoload .inner {
  position: absolute;
  top: 25%;
  left: 25%;
  width: 50%;
  height: 50%;
  border-radius: 100%;
  animation: arrow-spin 0.85s cubic-bezier(0.2, 0.8, 0.9, 0.1) infinite reverse;
  -webkit-animation: arrow-spin 0.85s cubic-bezier(0.2, 0.8, 0.9, 0.1) infinite reverse;
}

.psoload .inner:before,
.psoload .inner:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-bottom-width: 11px;
  border-bottom-color: rgb(240, 73, 6);
}

.psoload .inner:before {
  top: 12px;
  left: 12px;
  transform: rotate(128deg);
  -webkit-transform: rotate(128deg);
}

.psoload .inner:after {
  bottom: 12px;
  right: 12px;
  transform: rotate(-48deg);
  -webkit-transform: rotate(-48deg);
}

/* FINISH */



.form_content{
  width: 1100px;
  height: 2000px;
  background-color: rgb(245, 245, 245);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  scale: 0.95;
}

.top_header{
  position: relative;
  width: 100%;
  height: 60px;
  min-height: 60px;
  background: linear-gradient(
    115deg,
    rgba(240, 116, 39, 0.8),
    rgba(29, 87, 112, 0.8),
    rgba(240, 116, 39, 0.5),
    rgba(29, 87, 112, 1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: 700;
}

.link_to_login{
  background-color: orange;
  color: black;
  font-size: 15px;
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 10px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 8px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.link_to_login:hover{
  cursor: pointer;
  background-color: orangered;
  color: white;
}

.reg_form{
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  gap: 10px;
}

.section_header{
  width: 100%;
  height: 100px;
  min-height: 100px;
  max-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 10px;
}

.radio_wrapper{
  width: 100%;
  height: 100px;
  min-height: 100px;
  max-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #4e4e4e34;
  border-radius: 10px;
}

.border_liner{
  width: 100%;
  height: 60px;
  min-height: 60px;
  max-height: 60px;
  background-color: #43434357;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.roller{
  width: 100%;
  height: 50px;
  min-height: 50px;
  max-height: 50px;
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 10px;
}

hr{
  width: 100%;
  border: 2px solid black;
}

.form_trigger{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
}




.block_wrapper{
  width: 100%;
  height: 130px;
  min-height: 130px;
  max-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 20px;
  overflow: hidden;
}


.field_wrapper_section{
  width: 100%;
  height: 130px;
  min-height: 130px;
  overflow: hidden;
}
.field_wrapper_section_select{
  width: 100%;
  height: 150px;
  min-height: 150px;
}
.dropdown-trigger{
  overflow: visible;
}
.input-field{
  overflow:visible;
  height: 60px !important;
  z-index: 100;
}
.select-wrapper{
  overflow:unset;
  z-index: 100;
}
ul{
  overflow: scroll !important;
  height: 130px !important;
  min-height: 130px !important;
}
.field_wrapper_section_username{
  width: 100%;
  height: 130px;
  min-height: 130px;
}
#id_company{
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

#id_company ~ label{
  position: absolute;
  left: 5px !important;
  top: 12px !important;
}

#id_head_of_company{
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

#id_head_of_company ~ label{
  position: absolute;
  left: 5px !important;
  top: 12px !important;
}
#id_businessman{
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

#id_businessman ~ label{
  position: absolute;
  left: 5px !important;
  top: 12px !important;
}
#id_country{
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

#id_country ~ label{
  position: absolute;
  left: 5px !important;
  top: 12px !important;
}
#id_town_city{
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

#id_town_city ~ label{
  position: absolute;
  left: 5px !important;
  top: 12px !important;
}
#id_street_1{
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

#id_street_1 ~ label{
  position: absolute;
  left: 5px !important;
  top: 12px !important;
}
#id_street_2{
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

#id_street_2 ~ label{
  position: absolute;
  left: 5px !important;
  top: 12px !important;
}
#id_postal_index{
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

#id_postal_index ~ label{
  position: absolute;
  left: 5px !important;
  top: 12px !important;
}
#id_business_phone{
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

#id_business_phone ~ label{
  position: absolute;
  left: 5px !important;
  top: 12px !important;
}
#id_fax{
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

#id_fax ~ label{
  position: absolute;
  left: 5px !important;
  top: 12px !important;
}
#id_mobile_phone{
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

#id_mobile_phone ~ label{
  position: absolute;
  left: 5px !important;
  top: 12px !important;
}
#id_email{
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

#id_email ~ label{
  position: absolute;
  left: 5px !important;
  top: 12px !important;
}
#id_name_of_bank{
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

#id_name_of_bank ~ label{
  position: absolute;
  left: 5px !important;
  top: 12px !important;
}
#id_bank_address{
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

#id_bank_address ~ label{
  position: absolute;
  left: 5px !important;
  top: 12px !important;
}
#id_username{
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

#id_username ~ label{
  position: absolute;
  left: 5px !important;
  top: 12px !important;
}
#id_first_name{
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

#id_first_name ~ label{
  position: absolute;
  left: 5px !important;
  top: 12px !important;
}
#id_last_name{
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

#id_last_name ~ label{
  position: absolute;
  left: 5px !important;
  top: 12px !important;
}
#id_password{
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

#id_password ~ label{
  position: absolute;
  left: 5px !important;
  top: 12px !important;
}
#id_password2{
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

#id_password2 ~ label{
  position: absolute;
  left: 5px !important;
  top: 12px !important;
}


.btn{
  background-color: orange;
  color: black;
}
.btn:hover{
  cursor: pointer;
  background-color: orangered;
  color: white;
}
#id_egrpo_file{
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;background-color: antiquewhite;
  padding: 10px;
}

.submit_btn{
  width: 200px;
  height: 50px;
  min-height: 50px;
  max-height: 50px;
  border-radius: 8px;
  background-color: orange;
  border: none;
  color: black;
  font-weight: 700;
}
.submit_btn:hover{
  cursor: pointer;
  background-color: orangered;
  color: white;
}

.help-block{
  color: red !important;
}